-- MariaDB dump 10.19  Distrib 10.4.22-MariaDB, for Linux (x86_64)
--
-- Host: 10.73.1.190    Database: pantheon
-- ------------------------------------------------------
-- Server version	10.0.23-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 `_pantheon_heartbeat`
--

DROP TABLE IF EXISTS `_pantheon_heartbeat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `_pantheon_heartbeat` (
  `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `actor` varchar(64) NOT NULL,
  PRIMARY KEY (`actor`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_pantheon_heartbeat`
--

LOCK TABLES `_pantheon_heartbeat` WRITE;
/*!40000 ALTER TABLE `_pantheon_heartbeat` DISABLE KEYS */;
INSERT INTO `_pantheon_heartbeat` VALUES ('2022-02-16 21:43:37','resurrection');
/*!40000 ALTER TABLE `_pantheon_heartbeat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

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

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8_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 utf8_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8_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=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

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

--
-- Table structure for table `wp_gf_draft_submissions`
--

DROP TABLE IF EXISTS `wp_gf_draft_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_draft_submissions` (
  `uuid` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_id` mediumint(10) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source_url` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `submission` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`uuid`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_draft_submissions`
--

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

--
-- Table structure for table `wp_gf_entry`
--

DROP TABLE IF EXISTS `wp_gf_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_entry` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL,
  `post_id` bigint(10) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_starred` tinyint(10) NOT NULL DEFAULT '0',
  `is_read` tinyint(10) NOT NULL DEFAULT '0',
  `ip` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_agent` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `currency` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_date` datetime DEFAULT NULL,
  `payment_amount` decimal(19,2) DEFAULT NULL,
  `payment_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `transaction_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_fulfilled` tinyint(10) DEFAULT NULL,
  `created_by` bigint(10) unsigned DEFAULT NULL,
  `transaction_type` tinyint(10) DEFAULT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `form_id_status` (`form_id`,`status`)
) ENGINE=InnoDB AUTO_INCREMENT=1414 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_entry`
--

LOCK TABLES `wp_gf_entry` WRITE;
/*!40000 ALTER TABLE `wp_gf_entry` DISABLE KEYS */;
INSERT INTO `wp_gf_entry` VALUES (4,1,NULL,'2018-03-02 22:31:11',NULL,0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(5,1,NULL,'2018-03-02 22:41:24',NULL,0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/services/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(6,1,NULL,'2018-03-02 22:45:04',NULL,0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/services/commercial-construction/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(7,1,NULL,'2018-03-02 22:51:54',NULL,0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/services/residential-construction/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(8,1,NULL,'2018-03-05 14:47:54',NULL,0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/our-work/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(9,1,NULL,'2018-03-05 14:55:08',NULL,0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/testimonials/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(10,1,NULL,'2018-03-05 14:58:31',NULL,0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/about/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(11,1,NULL,'2018-03-05 18:20:35',NULL,0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(12,1,NULL,'2018-03-05 18:24:33',NULL,0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/appointments/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(13,1,NULL,'2019-12-26 20:16:15','2019-12-26 20:16:15',0,0,'159.54.13.15','https://dev-mann-plumbing-heating-llc.pantheonsite.io/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(14,1,NULL,'2020-03-10 16:51:41','2020-03-10 16:51:41',0,0,'159.54.12.15','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(15,1,NULL,'2020-03-11 01:22:54','2020-03-11 01:22:54',0,0,'107.175.141.206','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(16,1,NULL,'2020-03-11 12:22:54','2020-03-11 12:22:54',0,0,'66.150.153.10','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(17,1,NULL,'2020-03-11 12:34:16','2020-03-11 12:34:16',0,0,'181.64.237.229','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(18,1,NULL,'2020-03-11 18:23:15','2020-03-11 18:23:15',0,0,'107.170.248.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(19,1,NULL,'2020-03-12 18:12:28','2020-03-12 18:12:28',0,0,'162.243.127.7','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(20,1,NULL,'2020-03-12 19:12:06','2020-03-12 19:12:06',0,0,'198.16.74.44','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(21,1,NULL,'2020-03-12 23:29:03','2020-03-12 23:29:03',0,0,'212.92.105.227','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(22,1,NULL,'2020-03-13 07:50:36','2020-03-13 07:50:36',0,0,'91.79.6.222','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(23,1,NULL,'2020-03-15 12:16:10','2020-03-15 12:16:10',0,0,'109.201.152.19','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(24,1,NULL,'2020-03-16 12:44:07','2020-03-16 12:44:07',0,0,'62.128.217.111','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(25,1,NULL,'2020-03-16 22:12:21','2020-03-16 22:12:21',0,0,'2601:980:c100:45:1c51:56b5:8358:6f7b','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36 Edg/80.0.361.66','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(26,1,NULL,'2020-03-17 18:42:06','2020-03-17 18:42:06',0,0,'109.201.152.19','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(27,1,NULL,'2020-03-18 12:54:29','2020-03-18 12:54:29',0,0,'14.192.54.148','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(28,1,NULL,'2020-03-18 14:47:50','2020-03-18 14:47:50',0,0,'2601:980:c001:2fd0:b558:854b:5ce4:d7cf','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(29,1,NULL,'2020-03-18 15:18:03','2020-03-18 15:18:03',0,0,'89.187.167.195','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(30,1,NULL,'2020-03-18 18:33:39','2020-03-18 18:33:39',0,0,'104.245.145.121','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(31,1,NULL,'2020-03-19 14:49:50','2020-03-19 14:49:50',0,0,'107.174.143.203','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(32,1,NULL,'2020-03-20 04:03:09','2020-03-20 04:03:09',0,0,'2601:980:c101:ecf0:61b2:c258:11e1:d767','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(33,1,NULL,'2020-03-20 05:06:44','2020-03-20 05:06:44',0,0,'107.174.143.237','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(34,1,NULL,'2020-03-21 16:07:38','2020-03-21 16:07:38',0,0,'212.92.106.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(35,1,NULL,'2020-03-22 23:36:20','2020-03-22 23:36:20',0,0,'212.92.106.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(36,1,NULL,'2020-03-23 15:06:51','2020-03-23 15:06:51',0,0,'212.92.106.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(37,1,NULL,'2020-03-26 03:09:52','2020-03-26 03:09:52',0,0,'142.112.146.190','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(38,1,NULL,'2020-03-26 19:52:21','2020-03-26 19:52:21',0,0,'2601:980:c380:10c0:41aa:4dd1:e50d:ef4f','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(39,1,NULL,'2020-03-27 13:25:32','2020-03-27 13:25:32',0,0,'84.17.51.84','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(40,1,NULL,'2020-03-27 20:31:00','2020-03-27 20:31:00',0,0,'185.166.87.45','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(41,1,NULL,'2020-03-29 23:04:58','2020-03-29 23:04:58',0,0,'185.216.34.227','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(42,1,NULL,'2020-03-30 17:46:47','2020-03-30 17:46:47',0,0,'109.169.34.54','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(43,1,NULL,'2020-03-30 22:58:07','2020-03-30 22:58:07',0,0,'185.216.34.227','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(44,1,NULL,'2020-03-31 02:05:26','2020-03-31 02:05:26',0,0,'84.17.47.38','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(45,1,NULL,'2020-03-31 12:07:46','2020-03-31 12:07:46',0,0,'160.134.172.10','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(46,1,NULL,'2020-04-02 19:52:56','2020-04-02 19:52:56',0,0,'84.17.48.140','https://www.mannplumbingandheating.com/contact-us/','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.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(47,1,NULL,'2020-04-03 00:37:22','2020-04-03 00:37:22',0,0,'176.36.88.53','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(48,1,NULL,'2020-04-03 07:08:55','2020-04-03 07:08:55',0,0,'151.106.10.133','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(49,1,NULL,'2020-04-04 08:08:52','2020-04-04 08:08:52',0,0,'212.92.116.6','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 Kinza/4.9.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(50,1,NULL,'2020-04-06 06:02:32','2020-04-06 06:02:32',0,0,'212.92.116.6','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(51,1,NULL,'2020-04-06 23:55:46','2020-04-06 23:55:46',0,0,'2601:980:c002:d1b0:8c06:ed69:7b6e:1547','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(52,1,NULL,'2020-04-07 09:14:35','2020-04-07 09:14:35',0,0,'84.17.51.114','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(53,1,NULL,'2020-04-08 16:17:34','2020-04-08 16:17:34',0,0,'71.58.138.209','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(54,1,NULL,'2020-04-08 18:22:51','2020-04-08 18:22:51',0,0,'173.44.164.125','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(55,1,NULL,'2020-04-08 19:30:21','2020-04-08 19:30:21',0,0,'196.52.84.20','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(56,1,NULL,'2020-04-08 22:12:05','2020-04-08 22:12:05',0,0,'212.92.105.107','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(57,1,NULL,'2020-04-10 16:13:54','2020-04-10 16:13:54',0,0,'185.104.187.85','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(58,1,NULL,'2020-04-13 08:06:12','2020-04-13 08:06:12',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','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.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(59,1,NULL,'2020-04-13 13:33:19','2020-04-13 13:33:19',0,0,'178.162.209.85','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(60,1,NULL,'2020-04-14 03:33:29','2020-04-14 03:33:29',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(61,1,NULL,'2020-04-14 22:37:13','2020-04-14 22:37:13',0,0,'174.55.123.233','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(62,1,NULL,'2020-04-15 10:11:05','2020-04-15 10:11:05',0,0,'2601:980:c100:3470:f9a4:501b:f9c1:525e','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 8.0.0; XT1710-02) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.96 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(63,1,NULL,'2020-04-15 23:21:05','2020-04-15 23:21:05',0,0,'212.92.122.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(64,1,NULL,'2020-04-16 03:17:05','2020-04-16 03:17:05',0,0,'73.130.124.202','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(65,1,NULL,'2020-04-16 08:16:13','2020-04-16 08:16:13',0,0,'206.41.187.62','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(66,1,NULL,'2020-04-17 13:22:10','2020-04-17 13:22:10',0,0,'174.55.115.200','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(67,1,NULL,'2020-04-17 13:34:16','2020-04-17 13:34:16',0,0,'107.173.248.41','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(68,1,NULL,'2020-04-17 21:52:03','2020-04-17 21:52:03',0,0,'94.242.54.22','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(69,1,NULL,'2020-04-17 22:55:55','2020-04-17 22:55:55',0,0,'83.237.20.78','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(70,1,NULL,'2020-04-18 04:03:37','2020-04-18 04:03:37',0,0,'206.123.139.214','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(71,1,NULL,'2020-04-18 04:39:41','2020-04-18 04:39:41',0,0,'212.92.122.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(72,1,NULL,'2020-04-19 05:33:13','2020-04-19 05:33:13',0,0,'206.41.187.62','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(73,1,NULL,'2020-04-20 19:42:20','2020-04-20 19:42:20',0,0,'196.196.50.84','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(74,1,NULL,'2020-04-20 21:12:57','2020-04-20 21:12:57',0,0,'84.17.48.194','https://www.mannplumbingandheating.com/contact-us/','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','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(75,1,NULL,'2020-04-21 01:55:51','2020-04-21 01:55:51',0,0,'185.132.177.235','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(76,1,NULL,'2020-04-21 05:47:31','2020-04-21 05:47:31',0,0,'74.65.64.120','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(77,1,NULL,'2020-04-22 06:52:12','2020-04-22 06:52:12',0,0,'84.17.51.67','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(78,1,NULL,'2020-04-22 09:18:36','2020-04-22 09:18:36',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(79,1,NULL,'2020-04-22 14:13:08','2020-04-22 14:13:08',0,0,'2601:980:c001:3fe0:ad7f:cfd5:9563:3f8c','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/101.0.303750571 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(80,1,NULL,'2020-04-23 01:59:19','2020-04-23 01:59:19',0,0,'84.17.51.11','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(81,1,NULL,'2020-04-24 19:23:58','2020-04-24 19:23:58',0,0,'84.17.49.220','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(82,1,NULL,'2020-04-24 21:21:15','2020-04-24 21:21:15',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(83,1,NULL,'2020-04-25 10:32:47','2020-04-25 10:32:47',0,0,'185.246.208.94','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(84,1,NULL,'2020-04-25 12:01:16','2020-04-25 12:01:16',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(85,1,NULL,'2020-04-26 05:33:42','2020-04-26 05:33:42',0,0,'95.165.132.108','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(86,1,NULL,'2020-04-27 10:49:40','2020-04-27 10:49:40',0,0,'91.79.42.151','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(87,1,NULL,'2020-04-27 15:03:52','2020-04-27 15:03:52',0,0,'212.92.122.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(88,1,NULL,'2020-04-29 19:38:10','2020-04-29 19:38:10',0,0,'84.17.51.105','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(89,1,NULL,'2020-04-30 04:52:35','2020-04-30 04:52:35',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(90,1,NULL,'2020-04-30 15:55:38','2020-04-30 15:55:38',0,0,'73.79.235.117','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G930VL) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/11.1 Chrome/75.0.3770.143 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(91,1,NULL,'2020-04-30 18:28:35','2020-04-30 18:28:35',0,0,'97.127.148.126','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18363','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(92,1,NULL,'2020-04-30 22:20:40','2020-04-30 22:20:40',0,0,'184.75.223.27','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(93,1,NULL,'2020-05-04 07:51:52','2020-05-04 07:51:52',0,0,'45.153.158.24','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(94,1,NULL,'2020-05-04 20:38:17','2020-05-04 20:38:17',0,0,'103.217.177.244','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(95,1,NULL,'2020-05-05 04:39:51','2020-05-05 04:39:51',0,0,'84.17.49.126','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(96,1,NULL,'2020-05-05 17:21:42','2020-05-05 17:21:42',0,0,'84.247.48.7','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(97,1,NULL,'2020-05-05 19:46:31','2020-05-05 19:46:31',0,0,'2601:980:c102:5630:250e:c8aa:ec7e:48a5','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPad; CPU OS 13_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/105.0.307913796 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(98,1,NULL,'2020-05-05 22:00:54','2020-05-05 22:00:54',0,0,'109.201.138.249','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(99,1,NULL,'2020-05-06 09:10:07','2020-05-06 09:10:07',0,0,'37.120.156.142','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(100,1,NULL,'2020-05-08 01:15:34','2020-05-08 01:15:34',0,0,'37.120.217.44','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(101,1,NULL,'2020-05-08 17:59:09','2020-05-08 17:59:09',0,0,'212.92.122.196','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(102,1,NULL,'2020-05-09 13:16:03','2020-05-09 13:16:03',0,0,'162.251.236.11','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(103,1,NULL,'2020-05-10 12:27:40','2020-05-10 12:27:40',0,0,'217.138.194.121','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(104,1,NULL,'2020-05-11 00:55:19','2020-05-11 00:55:19',0,0,'76.5.122.134','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; SAMSUNG SM-G970U) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/11.2 Chrome/75.0.3770.143 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(105,1,NULL,'2020-05-12 14:35:51','2020-05-12 14:35:51',0,0,'192.252.220.16','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(106,1,NULL,'2020-05-13 13:20:13','2020-05-13 13:20:13',0,0,'27.135.210.77','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(107,1,NULL,'2020-05-14 04:52:53','2020-05-14 04:52:53',0,0,'212.92.106.96','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(108,1,NULL,'2020-05-14 13:00:34','2020-05-14 13:00:34',0,0,'82.211.57.241','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(109,1,NULL,'2020-05-15 12:37:05','2020-05-15 12:37:05',0,0,'174.60.127.174','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(110,1,NULL,'2020-05-15 16:39:03','2020-05-15 16:39:03',0,0,'23.108.44.3','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(111,1,NULL,'2020-05-17 10:02:57','2020-05-17 10:02:57',0,0,'84.17.49.45','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(112,1,NULL,'2020-05-17 16:09:44','2020-05-17 16:09:44',0,0,'212.92.121.187','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(113,1,NULL,'2020-05-17 17:24:29','2020-05-17 17:24:29',0,0,'2601:980:c180:4070:6138:262e:5abf:a6ff','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 8.0.0; LG-H990) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(114,1,NULL,'2020-05-17 18:51:14','2020-05-17 18:51:14',0,0,'195.181.168.183','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(115,1,NULL,'2020-05-18 14:09:52','2020-05-18 14:09:52',0,0,'206.251.28.59','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(116,1,NULL,'2020-05-18 15:17:40','2020-05-18 15:17:40',0,0,'84.17.48.39','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(117,1,NULL,'2020-05-18 16:06:33','2020-05-18 16:06:33',0,0,'23.254.130.249','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(118,1,NULL,'2020-05-18 16:18:45','2020-05-18 16:18:45',0,0,'174.49.138.229','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(119,1,NULL,'2020-05-18 16:20:43','2020-05-18 16:20:43',0,0,'206.251.28.59','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(120,1,NULL,'2020-05-21 17:45:31','2020-05-21 17:45:31',0,0,'2601:980:c100:e530:d8cb:b9f6:fe11:cc53','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(121,1,NULL,'2020-05-21 20:37:40','2020-05-21 20:37:40',0,0,'84.17.51.45','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(122,1,NULL,'2020-05-24 01:35:30','2020-05-24 01:35:30',0,0,'185.216.34.229','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(123,1,NULL,'2020-05-24 16:23:48','2020-05-24 16:23:48',0,0,'67.81.4.230','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(124,1,NULL,'2020-05-26 19:51:09','2020-05-26 19:51:09',0,0,'5.164.197.215','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(125,1,NULL,'2020-05-28 01:22:15','2020-05-28 01:22:15',0,0,'185.216.34.229','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(126,1,NULL,'2020-05-28 15:37:10','2020-05-28 15:37:10',0,0,'94.242.54.22','https://www.mannplumbingandheating.com/contact-us/','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','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(127,1,NULL,'2020-05-29 11:19:29','2020-05-29 11:19:29',0,0,'178.162.208.249','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(128,1,NULL,'2020-05-31 19:28:13','2020-05-31 19:28:13',0,0,'185.210.219.155','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(129,1,NULL,'2020-06-01 15:17:11','2020-06-01 15:17:11',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(130,1,NULL,'2020-06-03 06:04:10','2020-06-03 06:04:10',0,0,'45.41.134.111','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(131,1,NULL,'2020-06-03 14:08:56','2020-06-03 14:08:56',0,0,'181.214.107.57','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(132,1,NULL,'2020-06-03 15:31:52','2020-06-03 15:31:52',0,0,'193.148.19.44','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(133,1,NULL,'2020-06-04 09:49:54','2020-06-04 09:49:54',0,0,'206.251.28.62','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36 OPR/68.0.3618.125','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(134,1,NULL,'2020-06-05 00:11:04','2020-06-05 00:11:04',0,0,'173.213.85.124','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(135,1,NULL,'2020-06-05 09:12:53','2020-06-05 09:12:53',0,0,'85.203.44.232','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(136,1,NULL,'2020-06-05 11:21:35','2020-06-05 11:21:35',0,0,'2600:387:3:805::c5','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(137,1,NULL,'2020-06-06 02:15:49','2020-06-06 02:15:49',0,0,'2601:980:c100:2bf0:20f1:46d1:da04:3d01','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 9; SM-G950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.96 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(138,1,NULL,'2020-06-06 17:26:47','2020-06-06 17:26:47',0,0,'37.120.135.168','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(139,1,NULL,'2020-06-06 18:16:01','2020-06-06 18:16:01',0,0,'190.2.149.28','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(140,1,NULL,'2020-06-06 19:15:00','2020-06-06 19:15:00',0,0,'185.216.34.227','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(141,1,NULL,'2020-06-08 21:33:07','2020-06-08 21:33:07',0,0,'75.165.71.132','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(142,1,NULL,'2020-06-10 14:17:53','2020-06-10 14:17:53',0,0,'199.114.218.117','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(143,1,NULL,'2020-06-10 17:59:56','2020-06-10 17:59:56',0,0,'2603:3007:25c:8000:906e:c75e:9135:b17c','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:77.0) Gecko/20100101 Firefox/77.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(144,1,NULL,'2020-06-10 23:54:52','2020-06-10 23:54:52',0,0,'206.251.28.243','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36 OPR/68.0.3618.125','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(145,1,NULL,'2020-06-11 02:48:34','2020-06-11 02:48:34',0,0,'23.108.24.189','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(146,1,NULL,'2020-06-14 04:48:15','2020-06-14 04:48:15',0,0,'104.227.97.122','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(147,1,NULL,'2020-06-15 05:40:01','2020-06-15 05:40:01',0,0,'185.216.34.233','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(148,1,NULL,'2020-06-15 17:19:47','2020-06-15 17:19:47',0,0,'144.217.174.171','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(149,1,NULL,'2020-06-16 07:30:31','2020-06-16 07:30:31',0,0,'185.216.34.233','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(150,1,NULL,'2020-06-16 14:00:03','2020-06-16 14:00:03',0,0,'208.17.195.11','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(151,1,NULL,'2020-06-16 19:06:57','2020-06-16 19:06:57',0,0,'84.17.48.230','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(152,1,NULL,'2020-06-16 20:27:27','2020-06-16 20:27:27',0,0,'2601:980:c100:67d0:40ed:f64d:7c19:d8b0','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 9; SM-T380) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.101 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(153,1,NULL,'2020-06-17 10:43:20','2020-06-17 10:43:20',0,0,'185.216.34.233','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(154,1,NULL,'2020-06-17 12:43:36','2020-06-17 12:43:36',0,0,'173.44.230.20','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(155,1,NULL,'2020-06-17 15:15:00','2020-06-17 15:15:00',0,0,'23.108.18.10','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(156,1,NULL,'2020-06-18 11:04:35','2020-06-18 11:04:35',0,0,'95.142.127.18','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(157,1,NULL,'2020-06-19 03:52:34','2020-06-19 03:52:34',0,0,'45.134.20.37','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(158,1,NULL,'2020-06-20 17:13:03','2020-06-20 17:13:03',0,0,'84.17.49.183','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(159,1,NULL,'2020-06-21 16:44:16','2020-06-21 16:44:16',0,0,'185.216.34.232','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(160,1,NULL,'2020-06-22 03:55:21','2020-06-22 03:55:21',0,0,'45.41.181.88','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36 OPR/68.0.3618.165','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(161,1,NULL,'2020-06-22 10:42:40','2020-06-22 10:42:40',0,0,'84.17.49.16','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(162,1,NULL,'2020-06-23 06:21:59','2020-06-23 06:21:59',0,0,'196.245.184.244','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(163,1,NULL,'2020-06-25 03:55:37','2020-06-25 03:55:37',0,0,'185.216.34.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(164,1,NULL,'2020-06-25 17:07:41','2020-06-25 17:07:41',0,0,'181.214.107.42','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(165,1,NULL,'2020-06-26 11:15:50','2020-06-26 11:15:50',0,0,'84.17.51.108','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(166,1,NULL,'2020-06-27 07:11:45','2020-06-27 07:11:45',0,0,'144.168.213.205','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(167,1,NULL,'2020-06-27 09:59:05','2020-06-27 09:59:05',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(168,1,NULL,'2020-06-28 06:27:34','2020-06-28 06:27:34',0,0,'212.92.114.38','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(169,1,NULL,'2020-06-30 00:43:30','2020-06-30 00:43:30',0,0,'107.182.234.92','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(170,1,NULL,'2020-06-30 14:23:33','2020-06-30 14:23:33',0,0,'198.12.123.156','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(171,1,NULL,'2020-07-01 23:01:54','2020-07-01 23:01:54',0,0,'50.7.93.29','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(172,1,NULL,'2020-07-02 09:07:33','2020-07-02 09:07:33',0,0,'107.174.245.230','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(173,1,NULL,'2020-07-03 14:04:18','2020-07-03 14:04:18',0,0,'196.52.84.28','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(174,1,NULL,'2020-07-03 16:16:32','2020-07-03 16:16:32',0,0,'23.250.1.148','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(175,1,NULL,'2020-07-04 10:05:00','2020-07-04 10:05:00',0,0,'23.108.86.156','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(176,1,NULL,'2020-07-05 00:08:38','2020-07-05 00:08:38',0,0,'196.52.84.28','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(177,1,NULL,'2020-07-06 00:59:38','2020-07-06 00:59:38',0,0,'89.187.168.177','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(178,1,NULL,'2020-07-06 03:23:16','2020-07-06 03:23:16',0,0,'84.17.51.124','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(179,1,NULL,'2020-07-06 13:03:11','2020-07-06 13:03:11',0,0,'50.73.25.213','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(180,1,NULL,'2020-07-06 16:40:57','2020-07-06 16:40:57',0,0,'196.52.84.27','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(181,1,NULL,'2020-07-06 21:33:33','2020-07-06 21:33:33',0,0,'172.245.181.219','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(182,1,NULL,'2020-07-06 22:42:34','2020-07-06 22:42:34',0,0,'2601:980:c102:5630:d9a9:bd3e:ff43:3378','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 9; SM-T380) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(183,1,NULL,'2020-07-07 00:43:29','2020-07-07 00:43:29',0,0,'45.128.133.234','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(184,1,NULL,'2020-07-07 12:40:19','2020-07-07 12:40:19',0,0,'2601:980:c100:59:75db:de11:7c87:4a02','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36 Edg/83.0.478.58','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(185,1,NULL,'2020-07-07 19:54:30','2020-07-07 19:54:30',0,0,'212.102.33.204','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(186,1,NULL,'2020-07-10 19:20:49','2020-07-10 19:20:49',0,0,'181.215.127.253','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(187,1,NULL,'2020-07-11 13:15:03','2020-07-11 13:15:03',0,0,'2601:980:c102:7d90:4456:e20a:1546:3f87','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(188,1,NULL,'2020-07-11 20:49:09','2020-07-11 20:49:09',0,0,'23.250.26.118','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(189,1,NULL,'2020-07-12 16:12:26','2020-07-12 16:12:26',0,0,'2601:980:c100:47d0:51fe:6976:2d9a:155e','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(190,1,NULL,'2020-07-13 16:47:18','2020-07-13 16:47:18',0,0,'2601:980:c102:dfd0:9c2a:71f8:1083:f5b9','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:78.0) Gecko/20100101 Firefox/78.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(191,1,NULL,'2020-07-13 17:18:44','2020-07-13 17:18:44',0,0,'2601:980:c003:8870:e853:e357:2127:b018','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(192,1,NULL,'2020-07-13 17:27:07','2020-07-13 17:27:07',0,0,'23.108.86.135','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(193,1,NULL,'2020-07-14 08:50:12','2020-07-14 08:50:12',0,0,'31.132.211.144','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(194,1,NULL,'2020-07-14 15:26:49','2020-07-14 15:26:49',0,0,'84.17.63.56','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(195,1,NULL,'2020-07-17 03:08:18','2020-07-17 03:08:18',0,0,'188.122.82.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(196,1,NULL,'2020-07-19 02:34:46','2020-07-19 02:34:46',0,0,'196.52.84.47','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(197,1,NULL,'2020-07-19 13:42:27','2020-07-19 13:42:27',0,0,'158.222.6.81','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(198,1,NULL,'2020-07-19 14:00:58','2020-07-19 14:00:58',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(199,1,NULL,'2020-07-20 13:12:15','2020-07-20 13:12:15',0,0,'176.59.1.13','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(200,1,NULL,'2020-07-21 07:17:28','2020-07-21 07:17:28',0,0,'195.140.212.184','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(201,1,NULL,'2020-07-22 01:18:20','2020-07-22 01:18:20',0,0,'2601:980:c001:5ef0:bd1e:22af:8151:bee5','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/84.0.4147.71 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(202,1,NULL,'2020-07-22 03:58:51','2020-07-22 03:58:51',0,0,'198.12.123.156','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(203,1,NULL,'2020-07-22 19:56:23','2020-07-22 19:56:23',0,0,'82.102.16.197','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(204,1,NULL,'2020-07-23 12:39:01','2020-07-23 12:39:01',0,0,'178.71.10.87','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(205,1,NULL,'2020-07-23 23:08:18','2020-07-23 23:08:18',0,0,'185.244.212.61','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(206,1,NULL,'2020-07-24 10:57:46','2020-07-24 10:57:46',0,0,'23.250.1.148','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(207,1,NULL,'2020-07-24 17:22:25','2020-07-24 17:22:25',0,0,'23.94.150.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(208,1,NULL,'2020-07-25 13:44:37','2020-07-25 13:44:37',0,0,'78.159.113.193','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(209,1,NULL,'2020-07-26 12:04:43','2020-07-26 12:04:43',0,0,'23.250.26.118','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(210,1,NULL,'2020-07-26 20:44:45','2020-07-26 20:44:45',0,0,'2601:98b:c300:eda0:add6:489f:f98a:9617','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (X11; CrOS x86_64 13020.87.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.119 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(211,1,NULL,'2020-07-26 21:59:56','2020-07-26 21:59:56',0,0,'23.245.154.82','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(212,1,NULL,'2020-07-28 10:27:34','2020-07-28 10:27:34',0,0,'209.99.129.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(213,1,NULL,'2020-07-28 10:58:37','2020-07-28 10:58:37',0,0,'181.214.98.25','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(214,1,NULL,'2020-07-28 15:06:04','2020-07-28 15:06:04',0,0,'181.214.61.58','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(215,1,NULL,'2020-07-28 16:58:42','2020-07-28 16:58:42',0,0,'23.250.1.148','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(216,1,NULL,'2020-07-28 16:59:48','2020-07-28 16:59:48',0,0,'23.250.1.148','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(217,1,NULL,'2020-07-30 02:12:22','2020-07-30 02:12:22',0,0,'84.17.48.21','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(218,1,NULL,'2020-07-31 00:58:10','2020-07-31 00:58:10',0,0,'172.245.181.219','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(219,1,NULL,'2020-07-31 00:58:15','2020-07-31 00:58:15',0,0,'172.245.181.219','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(220,1,NULL,'2020-08-01 08:29:50','2020-08-01 08:29:50',0,0,'45.72.61.35','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(221,1,NULL,'2020-08-01 17:49:48','2020-08-01 17:49:48',0,0,'2600:387:3:803::87','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(222,1,NULL,'2020-08-02 15:36:21','2020-08-02 15:36:21',0,0,'174.55.123.233','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 Edg/84.0.522.52','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(223,1,NULL,'2020-08-02 21:59:11','2020-08-02 21:59:11',0,0,'91.79.57.24','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(224,1,NULL,'2020-08-04 03:58:34','2020-08-04 03:58:34',0,0,'185.232.21.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(225,1,NULL,'2020-08-04 11:27:07','2020-08-04 11:27:07',0,0,'196.247.31.212','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(226,1,NULL,'2020-08-05 01:21:29','2020-08-05 01:21:29',0,0,'199.187.211.101','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(227,1,NULL,'2020-08-05 01:38:38','2020-08-05 01:38:38',0,0,'89.187.168.130','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(228,1,NULL,'2020-08-07 16:55:55','2020-08-07 16:55:55',0,0,'91.79.52.19','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(229,1,NULL,'2020-08-07 20:52:12','2020-08-07 20:52:12',0,0,'152.208.24.130','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(230,1,NULL,'2020-08-08 15:29:55','2020-08-08 15:29:55',0,0,'178.71.10.87','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(231,1,NULL,'2020-08-09 03:10:14','2020-08-09 03:10:14',0,0,'217.171.147.164','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(232,1,NULL,'2020-08-10 02:38:03','2020-08-10 02:38:03',0,0,'2601:982:8202:b050:39ba:4e87:aea3:7936','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 12_4_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(233,1,NULL,'2020-08-10 17:02:08','2020-08-10 17:02:08',0,0,'50.200.236.218','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(234,1,NULL,'2020-08-10 20:11:53','2020-08-10 20:11:53',0,0,'198.23.145.206','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(235,1,NULL,'2020-08-10 22:45:19','2020-08-10 22:45:19',0,0,'24.170.228.64','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(236,1,NULL,'2020-08-11 16:04:45','2020-08-11 16:04:45',0,0,'84.17.48.11','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(237,1,NULL,'2020-08-11 16:44:53','2020-08-11 16:44:53',0,0,'2601:980:c080:c370:45b:1aee:d64f:ad91','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/84.0.4147.71 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(238,1,NULL,'2020-08-12 00:07:07','2020-08-12 00:07:07',0,0,'217.171.147.164','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(239,1,NULL,'2020-08-12 00:34:15','2020-08-12 00:34:15',0,0,'84.17.51.98','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(240,1,NULL,'2020-08-12 04:08:31','2020-08-12 04:08:31',0,0,'45.118.157.180','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(241,1,NULL,'2020-08-12 13:34:01','2020-08-12 13:34:01',0,0,'84.17.49.104','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(242,1,NULL,'2020-08-12 16:04:24','2020-08-12 16:04:24',0,0,'172.241.142.217','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(243,1,NULL,'2020-08-13 02:31:19','2020-08-13 02:31:19',0,0,'75.165.40.96','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 8.0.0; XT1635-01) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(244,1,NULL,'2020-08-13 20:31:03','2020-08-13 20:31:03',0,0,'85.206.162.213','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(245,1,NULL,'2020-08-14 08:27:32','2020-08-14 08:27:32',0,0,'2601:980:c000:6160:6d09:a43:dafc:9989','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; SM-A205U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(246,1,NULL,'2020-08-15 13:12:55','2020-08-15 13:12:55',0,0,'107.174.226.201','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(247,1,NULL,'2020-08-16 06:17:00','2020-08-16 06:17:00',0,0,'178.71.10.87','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(248,1,NULL,'2020-08-17 15:25:13','2020-08-17 15:25:13',0,0,'188.122.82.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(249,1,NULL,'2020-08-17 18:01:10','2020-08-17 18:01:10',0,0,'162.253.129.43','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(250,1,NULL,'2020-08-18 20:30:20','2020-08-18 20:30:20',0,0,'74.95.186.194','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko/20100101 Firefox/79.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(251,1,NULL,'2020-08-19 08:38:06','2020-08-19 08:38:06',0,0,'202.94.175.5','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(252,1,NULL,'2020-08-19 15:05:23','2020-08-19 15:05:23',0,0,'198.23.145.206','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(253,1,NULL,'2020-08-19 16:51:52','2020-08-19 16:51:52',0,0,'178.71.10.87','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(254,1,NULL,'2020-08-20 03:52:56','2020-08-20 03:52:56',0,0,'138.122.192.110','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(255,1,NULL,'2020-08-20 16:02:05','2020-08-20 16:02:05',0,0,'73.230.253.185','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko/20100101 Firefox/79.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(256,1,NULL,'2020-08-21 12:26:57','2020-08-21 12:26:57',0,0,'142.11.196.90','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(257,1,NULL,'2020-08-22 06:33:13','2020-08-22 06:33:13',0,0,'184.75.211.134','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(258,1,NULL,'2020-08-22 15:14:21','2020-08-22 15:14:21',0,0,'67.20.45.254','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 8.1.0; LM-X410PM) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(259,1,NULL,'2020-08-23 09:04:55','2020-08-23 09:04:55',0,0,'84.17.51.67','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(260,1,NULL,'2020-08-23 09:18:35','2020-08-23 09:18:35',0,0,'178.71.10.87','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(261,1,NULL,'2020-08-24 22:27:17','2020-08-24 22:27:17',0,0,'84.17.51.142','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(262,1,NULL,'2020-08-25 09:51:27','2020-08-25 09:51:27',0,0,'103.46.203.12','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(263,1,NULL,'2020-08-25 19:20:50','2020-08-25 19:20:50',0,0,'2601:980:c100:e520:4466:178e:6ebf:3f13','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(264,1,NULL,'2020-08-27 13:28:58','2020-08-27 13:28:58',0,0,'152.32.105.106','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(265,1,NULL,'2020-08-27 13:29:50','2020-08-27 13:29:50',0,0,'89.187.168.132','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(266,1,NULL,'2020-08-27 19:21:21','2020-08-27 19:21:21',0,0,'185.225.136.8','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(267,1,NULL,'2020-08-28 20:18:13','2020-08-28 20:18:13',0,0,'2601:980:c004:6a40:9556:e3cc:e221:d91','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(268,1,NULL,'2020-08-29 03:13:36','2020-08-29 03:13:36',0,0,'191.102.167.100','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(269,1,NULL,'2020-08-31 11:18:35','2020-08-31 11:18:35',0,0,'199.187.211.107','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(270,1,NULL,'2020-08-31 15:43:09','2020-08-31 15:43:09',0,0,'103.255.5.107','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(271,1,NULL,'2020-09-01 13:27:12','2020-09-01 13:27:12',0,0,'109.252.138.201','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(272,1,NULL,'2020-09-01 15:54:40','2020-09-01 15:54:40',0,0,'2601:980:c100:175:c5e4:2b06:6759:b1a9','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; moto g(7) power Build/QPO30.85-18; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/80.0.3987.149 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/285.0.0.43.120;]','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(273,1,NULL,'2020-09-02 10:06:45','2020-09-02 10:06:45',0,0,'196.52.84.11','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(274,1,NULL,'2020-09-04 01:17:48','2020-09-04 01:17:48',0,0,'172.94.23.28','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(275,1,NULL,'2020-09-04 21:56:02','2020-09-04 21:56:02',0,0,'206.41.174.164','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(276,1,NULL,'2020-09-05 05:40:53','2020-09-05 05:40:53',0,0,'185.210.217.251','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(277,1,NULL,'2020-09-05 08:43:18','2020-09-05 08:43:18',0,0,'196.240.104.172','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(278,1,NULL,'2020-09-06 09:30:02','2020-09-06 09:30:02',0,0,'192.210.186.104','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(279,1,NULL,'2020-09-06 11:41:14','2020-09-06 11:41:14',0,0,'207.244.118.18','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(280,1,NULL,'2020-09-08 03:35:56','2020-09-08 03:35:56',0,0,'185.232.21.120','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(281,1,NULL,'2020-09-08 15:40:10','2020-09-08 15:40:10',0,0,'192.216.120.25','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(282,1,NULL,'2020-09-09 01:00:49','2020-09-09 01:00:49',0,0,'2601:980:c003:b0f0:51f3:9cf9:5afa:e18f','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(283,1,NULL,'2020-09-10 16:41:16','2020-09-10 16:41:16',0,0,'84.17.51.50','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(284,1,NULL,'2020-09-10 21:09:10','2020-09-10 21:09:10',0,0,'73.187.20.244','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36 Edg/85.0.564.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(285,1,NULL,'2020-09-10 21:34:07','2020-09-10 21:34:07',0,0,'75.165.111.16','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(286,1,NULL,'2020-09-14 07:47:42','2020-09-14 07:47:42',0,0,'196.196.31.175','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(287,1,NULL,'2020-09-15 14:07:05','2020-09-15 14:07:05',0,0,'84.17.60.210','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(288,1,NULL,'2020-09-15 14:39:01','2020-09-15 14:39:01',0,0,'5.62.49.32','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(289,1,NULL,'2020-09-15 18:35:07','2020-09-15 18:35:07',0,0,'181.214.54.66','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(290,1,NULL,'2020-09-16 19:00:43','2020-09-16 19:00:43',0,0,'115.186.191.63','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(291,1,NULL,'2020-09-17 01:37:23','2020-09-17 01:37:23',0,0,'84.17.48.2','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(292,1,NULL,'2020-09-17 06:35:44','2020-09-17 06:35:44',0,0,'84.17.60.210','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(293,1,NULL,'2020-09-17 17:31:02','2020-09-17 17:31:02',0,0,'181.214.107.29','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(294,1,NULL,'2020-09-19 05:08:41','2020-09-19 05:08:41',0,0,'212.102.57.123','https://www.mannplumbingandheating.com/contact-us/','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.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(295,1,NULL,'2020-09-20 04:46:12','2020-09-20 04:46:12',0,0,'5.253.205.24','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(296,1,NULL,'2020-09-22 07:43:58','2020-09-22 07:43:58',0,0,'207.244.252.113','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(297,1,NULL,'2020-09-22 07:43:59','2020-09-22 07:43:59',0,0,'207.244.252.113','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(298,1,NULL,'2020-09-22 13:02:00','2020-09-22 13:02:00',0,0,'45.120.49.43','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(299,1,NULL,'2020-09-22 22:37:43','2020-09-22 22:37:43',0,0,'89.187.168.141','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(300,1,NULL,'2020-09-23 00:02:52','2020-09-23 00:02:52',0,0,'5.62.60.54','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(301,1,NULL,'2020-09-23 13:29:02','2020-09-23 13:29:02',0,0,'161.97.117.103','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(302,1,NULL,'2020-09-23 14:27:28','2020-09-23 14:27:28',0,0,'173.212.194.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(303,1,NULL,'2020-09-23 19:44:37','2020-09-23 19:44:37',0,0,'50.209.199.214','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(304,1,NULL,'2020-09-25 10:15:39','2020-09-25 10:15:39',0,0,'223.235.147.242','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(305,1,NULL,'2020-09-26 05:17:50','2020-09-26 05:17:50',0,0,'103.102.116.229','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(306,1,NULL,'2020-09-27 12:22:03','2020-09-27 12:22:03',0,0,'66.70.235.27','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(307,1,NULL,'2020-09-28 17:45:27','2020-09-28 17:45:27',0,0,'85.105.201.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(308,1,NULL,'2020-09-29 19:51:16','2020-09-29 19:51:16',0,0,'2601:982:4200:23b9:64e2:578f:f01f:b6cc','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(309,1,NULL,'2020-09-30 16:46:44','2020-09-30 16:46:44',0,0,'107.175.94.144','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(310,1,NULL,'2020-10-01 06:49:27','2020-10-01 06:49:27',0,0,'31.130.89.94','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(311,1,NULL,'2020-10-02 04:45:04','2020-10-02 04:45:04',0,0,'5.62.60.54','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(312,1,NULL,'2020-10-03 01:18:38','2020-10-03 01:18:38',0,0,'131.161.68.45','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(313,1,NULL,'2020-10-05 13:24:12','2020-10-05 13:24:12',0,0,'196.245.254.238','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(314,1,NULL,'2020-10-05 16:10:30','2020-10-05 16:10:30',0,0,'84.17.47.18','https://www.mannplumbingandheating.com/contact-us/','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','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(315,1,NULL,'2020-10-05 17:17:53','2020-10-05 17:17:53',0,0,'84.247.48.60','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(316,1,NULL,'2020-10-06 16:52:10','2020-10-06 16:52:10',0,0,'2600:1:f1ec:dc85:14a5:f502:7435:6d35','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(317,1,NULL,'2020-10-08 00:06:56','2020-10-08 00:06:56',0,0,'5.62.20.46','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(318,1,NULL,'2020-10-08 04:28:19','2020-10-08 04:28:19',0,0,'84.17.47.102','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(319,1,NULL,'2020-10-08 12:58:47','2020-10-08 12:58:47',0,0,'23.105.157.51','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(320,1,NULL,'2020-10-09 14:48:49','2020-10-09 14:48:49',0,0,'71.58.194.32','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 12_4_8 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(321,1,NULL,'2020-10-12 10:21:26','2020-10-12 10:21:26',0,0,'89.187.168.167','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(322,1,NULL,'2020-10-12 11:30:07','2020-10-12 11:30:07',0,0,'122.177.159.209','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(323,1,NULL,'2020-10-12 11:56:18','2020-10-12 11:56:18',0,0,'212.102.57.2','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(324,1,NULL,'2020-10-12 12:36:30','2020-10-12 12:36:30',0,0,'23.83.87.99','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(325,1,NULL,'2020-10-12 13:42:18','2020-10-12 13:42:18',0,0,'84.17.51.55','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(326,1,NULL,'2020-10-14 06:13:32','2020-10-14 06:13:32',0,0,'212.102.57.234','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(327,1,NULL,'2020-10-15 19:59:05','2020-10-15 19:59:05',0,0,'77.79.131.219','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(328,1,NULL,'2020-10-16 10:45:26','2020-10-16 10:45:26',0,0,'185.210.217.51','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(329,1,NULL,'2020-10-16 14:18:48','2020-10-16 14:18:48',0,0,'2601:980:c001:3fe0:3813:101f:8566:41c1','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/128.0.335051718 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(330,1,NULL,'2020-10-18 18:31:02','2020-10-18 18:31:02',0,0,'109.184.239.84','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(331,1,NULL,'2020-10-18 21:42:33','2020-10-18 21:42:33',0,0,'37.120.143.60','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(332,1,NULL,'2020-10-19 00:12:49','2020-10-19 00:12:49',0,0,'149.202.89.125','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(333,1,NULL,'2020-10-19 21:31:48','2020-10-19 21:31:48',0,0,'149.202.89.125','https://www.mannplumbingandheating.com/contact-us/','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.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(334,1,NULL,'2020-10-19 23:42:59','2020-10-19 23:42:59',0,0,'149.202.89.125','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(335,1,NULL,'2020-10-20 07:49:08','2020-10-20 07:49:08',0,0,'196.245.254.193','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(336,1,NULL,'2020-10-21 10:09:52','2020-10-21 10:09:52',0,0,'2601:980:c103:4b30:b5a2:a154:90a0:cfdb','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(337,1,NULL,'2020-10-21 12:15:06','2020-10-21 12:15:06',0,0,'172.111.157.175','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(338,1,NULL,'2020-10-21 17:22:19','2020-10-21 17:22:19',0,0,'149.202.89.125','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 Kinza/4.9.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(339,1,NULL,'2020-10-21 21:35:35','2020-10-21 21:35:35',0,0,'149.202.89.125','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(340,1,NULL,'2020-10-22 11:21:12','2020-10-22 11:21:12',0,0,'107.172.66.135','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(341,1,NULL,'2020-10-22 13:43:24','2020-10-22 13:43:24',0,0,'45.66.10.41','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(342,1,NULL,'2020-10-22 16:02:13','2020-10-22 16:02:13',0,0,'212.129.6.86','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(343,1,NULL,'2020-10-23 04:30:29','2020-10-23 04:30:29',0,0,'185.242.217.171','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(344,1,NULL,'2020-10-23 20:16:29','2020-10-23 20:16:29',0,0,'149.202.89.125','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(345,1,NULL,'2020-10-24 01:01:40','2020-10-24 01:01:40',0,0,'149.202.89.125','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(346,1,NULL,'2020-10-24 10:06:57','2020-10-24 10:06:57',0,0,'5.62.60.55','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(347,1,NULL,'2020-10-24 15:49:12','2020-10-24 15:49:12',0,0,'84.17.60.214','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(348,1,NULL,'2020-10-24 17:30:31','2020-10-24 17:30:31',0,0,'46.173.6.87','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(349,1,NULL,'2020-10-25 05:18:10','2020-10-25 05:18:10',0,0,'84.17.60.214','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(350,1,NULL,'2020-10-25 13:12:45','2020-10-25 13:12:45',0,0,'172.98.82.164','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(351,1,NULL,'2020-10-25 22:26:32','2020-10-25 22:26:32',0,0,'2601:980:c103:99f0:e11c:df50:b1fe:80b2','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 9; LM-X420) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.99 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(352,1,NULL,'2020-10-27 10:14:05','2020-10-27 10:14:05',0,0,'84.17.60.214','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(353,1,NULL,'2020-10-27 16:45:10','2020-10-27 16:45:10',0,0,'2601:980:c200:1790:ddd2:2f3c:d51c:3ce9','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(354,1,NULL,'2020-10-27 19:28:47','2020-10-27 19:28:47',0,0,'69.171.209.98','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(355,1,NULL,'2020-10-29 07:29:38','2020-10-29 07:29:38',0,0,'45.66.10.41','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(356,1,NULL,'2020-10-30 03:44:44','2020-10-30 03:44:44',0,0,'84.17.58.8','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(357,1,NULL,'2020-10-30 17:17:01','2020-10-30 17:17:01',0,0,'84.17.60.214','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 Kinza/4.9.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(358,1,NULL,'2020-11-02 18:29:08','2020-11-02 18:29:08',0,0,'168.235.102.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(359,1,NULL,'2020-11-03 02:14:27','2020-11-03 02:14:27',0,0,'217.171.147.164','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(360,1,NULL,'2020-11-03 04:33:22','2020-11-03 04:33:22',0,0,'156.146.60.103','https://www.mannplumbingandheating.com/contact-us/','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.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(361,1,NULL,'2020-11-03 10:03:32','2020-11-03 10:03:32',0,0,'103.98.157.250','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(362,1,NULL,'2020-11-03 12:50:17','2020-11-03 12:50:17',0,0,'193.9.114.232','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(363,1,NULL,'2020-11-05 06:11:41','2020-11-05 06:11:41',0,0,'91.132.136.198','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 Kinza/4.9.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(364,1,NULL,'2020-11-05 07:08:12','2020-11-05 07:08:12',0,0,'5.157.21.203','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(365,1,NULL,'2020-11-05 20:55:39','2020-11-05 20:55:39',0,0,'196.247.229.172','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(366,1,NULL,'2020-11-06 08:03:32','2020-11-06 08:03:32',0,0,'188.122.82.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(367,1,NULL,'2020-11-06 20:46:02','2020-11-06 20:46:02',0,0,'45.89.241.21','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(368,1,NULL,'2020-11-07 02:26:41','2020-11-07 02:26:41',0,0,'74.5.135.44','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPad; CPU OS 14_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/125.2.332137730 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(369,1,NULL,'2020-11-07 14:34:37','2020-11-07 14:34:37',0,0,'156.146.60.103','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(370,1,NULL,'2020-11-08 07:24:08','2020-11-08 07:24:08',0,0,'70.44.223.62','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(371,1,NULL,'2020-11-09 13:05:24','2020-11-09 13:05:24',0,0,'178.214.245.131','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(372,1,NULL,'2020-11-09 17:36:43','2020-11-09 17:36:43',0,0,'217.171.147.164','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(373,1,NULL,'2020-11-10 03:55:30','2020-11-10 03:55:30',0,0,'2601:980:c004:4fa0:b09d:826b:f204:4baa','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 8.0.0; SM-G892A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.185 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(374,1,NULL,'2020-11-10 10:11:18','2020-11-10 10:11:18',0,0,'45.152.198.17','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(375,1,NULL,'2020-11-10 12:41:54','2020-11-10 12:41:54',0,0,'84.247.48.3','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(376,1,NULL,'2020-11-10 23:28:11','2020-11-10 23:28:11',0,0,'3.137.155.170','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(377,1,NULL,'2020-11-11 06:34:43','2020-11-11 06:34:43',0,0,'195.225.118.60','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(378,1,NULL,'2020-11-12 02:42:11','2020-11-12 02:42:11',0,0,'192.161.190.122','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(379,1,NULL,'2020-11-12 16:56:20','2020-11-12 16:56:20',0,0,'23.95.128.6','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(380,1,NULL,'2020-11-13 00:57:28','2020-11-13 00:57:28',0,0,'217.171.147.164','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(381,1,NULL,'2020-11-14 00:59:59','2020-11-14 00:59:59',0,0,'5.180.220.220','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(382,1,NULL,'2020-11-14 11:38:16','2020-11-14 11:38:16',0,0,'103.10.171.132','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(383,1,NULL,'2020-11-14 11:38:17','2020-11-14 11:38:17',0,0,'103.10.171.132','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(384,1,NULL,'2020-11-15 09:58:07','2020-11-15 09:58:07',0,0,'107.181.180.173','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(385,1,NULL,'2020-11-16 04:30:38','2020-11-16 04:30:38',0,0,'212.102.36.203','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(386,1,NULL,'2020-11-16 10:35:56','2020-11-16 10:35:56',0,0,'165.231.92.235','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(387,1,NULL,'2020-11-17 08:26:09','2020-11-17 08:26:09',0,0,'103.99.197.26','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(388,1,NULL,'2020-11-17 18:07:57','2020-11-17 18:07:57',0,0,'217.171.147.164','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(389,1,NULL,'2020-11-18 17:39:36','2020-11-18 17:39:36',0,0,'2601:982:8200:2fe0:886:41bf:192e:bd5','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36 Edg/86.0.622.69','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(390,1,NULL,'2020-11-18 20:23:27','2020-11-18 20:23:27',0,0,'168.169.96.2','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(391,1,NULL,'2020-11-18 20:23:27','2020-11-18 20:23:27',0,0,'168.169.96.2','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(392,1,NULL,'2020-11-20 07:00:56','2020-11-20 07:00:56',0,0,'165.231.54.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(393,1,NULL,'2020-11-20 20:20:28','2020-11-20 20:20:28',0,0,'199.16.243.38','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(394,1,NULL,'2020-11-21 00:10:09','2020-11-21 00:10:09',0,0,'46.243.221.5','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(395,1,NULL,'2020-11-22 22:52:51','2020-11-22 22:52:51',0,0,'2601:980:c004:4410:7405:6b37:8000:4f5c','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; LM-Q730) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(396,1,NULL,'2020-11-23 07:29:14','2020-11-23 07:29:14',0,0,'5.62.62.53','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(397,1,NULL,'2020-11-23 10:25:51','2020-11-23 10:25:51',0,0,'185.104.217.201','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(398,1,NULL,'2020-11-24 02:01:36','2020-11-24 02:01:36',0,0,'2402:3a80:1af0:553b:3464:39ca:339d:f5ed','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(399,1,NULL,'2020-11-24 03:50:32','2020-11-24 03:50:32',0,0,'212.102.37.238','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36/iYA9HebN-7','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(400,1,NULL,'2020-11-24 20:44:24','2020-11-24 20:44:24',0,0,'76.100.26.83','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(401,1,NULL,'2020-11-25 05:22:36','2020-11-25 05:22:36',0,0,'31.171.152.109','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(402,1,NULL,'2020-11-25 09:34:19','2020-11-25 09:34:19',0,0,'188.241.178.25','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(403,1,NULL,'2020-11-25 19:44:50','2020-11-25 19:44:50',0,0,'120.29.113.130','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(404,1,NULL,'2020-11-25 21:06:25','2020-11-25 21:06:25',0,0,'176.226.184.88','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(405,1,NULL,'2020-11-26 16:05:29','2020-11-26 16:05:29',0,0,'193.176.84.204','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(406,1,NULL,'2020-11-28 12:33:53','2020-11-28 12:33:53',0,0,'84.247.48.22','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(407,1,NULL,'2020-11-30 13:50:23','2020-11-30 13:50:23',0,0,'46.191.170.136','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(408,1,NULL,'2020-12-01 17:47:18','2020-12-01 17:47:18',0,0,'2601:980:c380:10c0:fcbd:2104:4010:3b07','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(409,1,NULL,'2020-12-01 18:23:16','2020-12-01 18:23:16',0,0,'89.187.168.161','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(410,1,NULL,'2020-12-03 17:25:49','2020-12-03 17:25:49',0,0,'111.119.187.53','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(411,1,NULL,'2020-12-04 00:40:52','2020-12-04 00:40:52',0,0,'212.102.36.202','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(412,1,NULL,'2020-12-04 16:06:22','2020-12-04 16:06:22',0,0,'107.175.94.144','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(413,1,NULL,'2020-12-04 18:13:30','2020-12-04 18:13:30',0,0,'207.244.89.166','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(414,1,NULL,'2020-12-06 05:57:55','2020-12-06 05:57:55',0,0,'45.125.245.75','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(415,1,NULL,'2020-12-06 12:11:29','2020-12-06 12:11:29',0,0,'78.188.4.124','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(416,1,NULL,'2020-12-08 05:16:57','2020-12-08 05:16:57',0,0,'37.120.217.23','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(417,1,NULL,'2020-12-08 13:49:02','2020-12-08 13:49:02',0,0,'160.134.13.190','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(418,1,NULL,'2020-12-09 03:57:40','2020-12-09 03:57:40',0,0,'45.125.245.75','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(419,1,NULL,'2020-12-12 17:28:14','2020-12-12 17:28:14',0,0,'128.199.99.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(420,1,NULL,'2020-12-14 20:19:28','2020-12-14 20:19:28',0,0,'117.69.230.211','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(421,1,NULL,'2020-12-15 05:23:17','2020-12-15 05:23:17',0,0,'208.113.153.236','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(422,1,NULL,'2020-12-15 14:18:44','2020-12-15 14:18:44',0,0,'58.82.143.114','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(423,1,NULL,'2020-12-16 04:02:09','2020-12-16 04:02:09',0,0,'217.171.147.164','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(424,1,NULL,'2020-12-16 23:44:49','2020-12-16 23:44:49',0,0,'85.203.45.185','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(425,1,NULL,'2020-12-17 12:45:57','2020-12-17 12:45:57',0,0,'109.169.14.112','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(426,1,NULL,'2020-12-19 09:42:34','2020-12-19 09:42:34',0,0,'185.253.99.198','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(427,1,NULL,'2020-12-19 15:29:58','2020-12-19 15:29:58',0,0,'2601:980:c080:3ac0:9c84:747a:40bf:79d5','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(428,1,NULL,'2020-12-19 18:02:26','2020-12-19 18:02:26',0,0,'5.188.84.95','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(429,1,NULL,'2020-12-19 19:51:47','2020-12-19 19:51:47',0,0,'107.175.58.199','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(430,1,NULL,'2020-12-20 20:26:03','2020-12-20 20:26:03',0,0,'174.60.125.107','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(431,1,NULL,'2020-12-21 00:09:47','2020-12-21 00:09:47',0,0,'37.120.156.35','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(432,1,NULL,'2020-12-21 09:53:52','2020-12-21 09:53:52',0,0,'198.105.117.175','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(433,1,NULL,'2020-12-21 15:56:55','2020-12-21 15:56:55',0,0,'196.242.200.125','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(434,1,NULL,'2020-12-21 22:14:59','2020-12-21 22:14:59',0,0,'138.199.18.86','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(435,1,NULL,'2020-12-22 06:59:58','2020-12-22 06:59:58',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36 OPR/69.0.3686.7 (Edition beta)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(436,1,NULL,'2020-12-22 10:14:11','2020-12-22 10:14:11',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(437,1,NULL,'2020-12-22 13:23:24','2020-12-22 13:23:24',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(438,1,NULL,'2020-12-22 19:43:58','2020-12-22 19:43:58',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(439,1,NULL,'2020-12-23 00:05:37','2020-12-23 00:05:37',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(440,1,NULL,'2020-12-23 01:15:32','2020-12-23 01:15:32',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(441,1,NULL,'2020-12-23 03:20:29','2020-12-23 03:20:29',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.14 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(442,1,NULL,'2020-12-23 06:27:11','2020-12-23 06:27:11',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(443,1,NULL,'2020-12-23 16:17:03','2020-12-23 16:17:03',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(444,1,NULL,'2020-12-23 17:48:06','2020-12-23 17:48:06',0,0,'138.199.18.86','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(445,1,NULL,'2020-12-23 22:23:09','2020-12-23 22:23:09',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(446,1,NULL,'2020-12-24 05:47:55','2020-12-24 05:47:55',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(447,1,NULL,'2020-12-24 07:30:22','2020-12-24 07:30:22',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(448,1,NULL,'2020-12-24 07:30:22','2020-12-24 07:30:22',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36 OPR/69.0.3686.7 (Edition beta)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(449,1,NULL,'2020-12-24 08:52:27','2020-12-24 08:52:27',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4096.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(450,1,NULL,'2020-12-24 14:12:48','2020-12-24 14:12:48',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(451,1,NULL,'2020-12-24 18:16:35','2020-12-24 18:16:35',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(452,1,NULL,'2020-12-24 20:22:35','2020-12-24 20:22:35',0,0,'2601:980:c102:d970:34b3:f028:e522:57e3','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(453,1,NULL,'2020-12-25 12:36:54','2020-12-25 12:36:54',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(454,1,NULL,'2020-12-25 14:09:15','2020-12-25 14:09:15',0,0,'37.120.217.4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(455,1,NULL,'2020-12-25 16:11:48','2020-12-25 16:11:48',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(456,1,NULL,'2020-12-26 09:51:01','2020-12-26 09:51:01',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(457,1,NULL,'2020-12-26 09:51:01','2020-12-26 09:51:01',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(458,1,NULL,'2020-12-26 13:39:07','2020-12-26 13:39:07',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(459,1,NULL,'2020-12-26 15:10:13','2020-12-26 15:10:13',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(460,1,NULL,'2020-12-26 15:33:10','2020-12-26 15:33:10',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(461,1,NULL,'2020-12-26 18:06:29','2020-12-26 18:06:29',0,0,'95.165.0.78','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(462,1,NULL,'2020-12-26 22:48:26','2020-12-26 22:48:26',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(463,1,NULL,'2020-12-26 22:48:43','2020-12-26 22:48:43',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(464,1,NULL,'2020-12-27 00:49:27','2020-12-27 00:49:27',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36 Edg/83.0.478.18','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(465,1,NULL,'2020-12-27 01:13:00','2020-12-27 01:13:00',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(466,1,NULL,'2020-12-27 04:48:44','2020-12-27 04:48:44',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(467,1,NULL,'2020-12-27 04:48:44','2020-12-27 04:48:44',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(468,1,NULL,'2020-12-27 06:09:59','2020-12-27 06:09:59',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(469,1,NULL,'2020-12-27 08:24:49','2020-12-27 08:24:49',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(470,1,NULL,'2020-12-27 09:59:15','2020-12-27 09:59:15',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(471,1,NULL,'2020-12-27 12:07:10','2020-12-27 12:07:10',0,0,'45.132.226.150','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(472,1,NULL,'2020-12-27 14:53:52','2020-12-27 14:53:52',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4099.2 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(473,1,NULL,'2020-12-27 14:53:52','2020-12-27 14:53:52',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(474,1,NULL,'2020-12-27 14:53:52','2020-12-27 14:53:52',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(475,1,NULL,'2020-12-27 14:55:03','2020-12-27 14:55:03',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(476,1,NULL,'2020-12-27 15:00:36','2020-12-27 15:00:36',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(477,1,NULL,'2020-12-27 20:15:11','2020-12-27 20:15:11',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(478,1,NULL,'2020-12-28 00:33:00','2020-12-28 00:33:00',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(479,1,NULL,'2020-12-28 01:09:14','2020-12-28 01:09:14',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(480,1,NULL,'2020-12-28 02:31:48','2020-12-28 02:31:48',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(481,1,NULL,'2020-12-28 05:32:48','2020-12-28 05:32:48',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(482,1,NULL,'2020-12-28 07:36:43','2020-12-28 07:36:43',0,0,'49.149.68.36','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(483,1,NULL,'2020-12-28 08:09:09','2020-12-28 08:09:09',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(484,1,NULL,'2020-12-28 21:38:42','2020-12-28 21:38:42',0,0,'2600:387:3:803::c0','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(485,1,NULL,'2020-12-29 01:13:46','2020-12-29 01:13:46',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(486,1,NULL,'2020-12-29 07:59:59','2020-12-29 07:59:59',0,0,'2601:982:8200:13c0:f814:9fde:981d:ee1b','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 11; SM-G988U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(487,1,NULL,'2020-12-29 13:56:56','2020-12-29 13:56:56',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(488,1,NULL,'2020-12-29 13:56:58','2020-12-29 13:56:58',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(489,1,NULL,'2020-12-29 19:44:48','2020-12-29 19:44:48',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(490,1,NULL,'2020-12-29 19:44:48','2020-12-29 19:44:48',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(491,1,NULL,'2020-12-30 03:38:21','2020-12-30 03:38:21',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(492,1,NULL,'2020-12-30 07:17:12','2020-12-30 07:17:12',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36 OPR/69.0.3686.7 (Edition beta)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(493,1,NULL,'2020-12-30 07:44:45','2020-12-30 07:44:45',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(494,1,NULL,'2020-12-30 08:28:40','2020-12-30 08:28:40',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(495,1,NULL,'2020-12-30 08:28:44','2020-12-30 08:28:44',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(496,1,NULL,'2020-12-30 08:31:30','2020-12-30 08:31:30',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(497,1,NULL,'2020-12-30 09:01:13','2020-12-30 09:01:13',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(498,1,NULL,'2020-12-30 15:00:14','2020-12-30 15:00:14',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(499,1,NULL,'2020-12-30 15:57:07','2020-12-30 15:57:07',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(500,1,NULL,'2020-12-30 18:07:38','2020-12-30 18:07:38',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(501,1,NULL,'2020-12-30 18:07:54','2020-12-30 18:07:54',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(502,1,NULL,'2020-12-31 01:05:29','2020-12-31 01:05:29',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(503,1,NULL,'2020-12-31 01:10:58','2020-12-31 01:10:58',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(504,1,NULL,'2020-12-31 05:22:38','2020-12-31 05:22:38',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(505,1,NULL,'2020-12-31 20:14:17','2020-12-31 20:14:17',0,0,'138.199.26.192','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(506,1,NULL,'2021-01-01 00:41:23','2021-01-01 00:41:23',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(507,1,NULL,'2021-01-01 09:45:25','2021-01-01 09:45:25',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(508,1,NULL,'2021-01-01 11:32:10','2021-01-01 11:32:10',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(509,1,NULL,'2021-01-01 14:35:25','2021-01-01 14:35:25',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(510,1,NULL,'2021-01-02 00:20:23','2021-01-02 00:20:23',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(511,1,NULL,'2021-01-02 07:33:40','2021-01-02 07:33:40',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36/iYA9HebN-7','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(512,1,NULL,'2021-01-02 07:33:41','2021-01-02 07:33:41',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(513,1,NULL,'2021-01-02 13:47:26','2021-01-02 13:47:26',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(514,1,NULL,'2021-01-02 13:47:29','2021-01-02 13:47:29',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(515,1,NULL,'2021-01-02 15:45:33','2021-01-02 15:45:33',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4100.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(516,1,NULL,'2021-01-02 22:08:58','2021-01-02 22:08:58',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(517,1,NULL,'2021-01-03 00:17:39','2021-01-03 00:17:39',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(518,1,NULL,'2021-01-03 00:17:41','2021-01-03 00:17:41',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4102.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(519,1,NULL,'2021-01-03 15:18:40','2021-01-03 15:18:40',0,0,'27.147.190.133','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(520,1,NULL,'2021-01-03 18:16:22','2021-01-03 18:16:22',0,0,'138.199.18.187','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(521,1,NULL,'2021-01-03 18:16:22','2021-01-03 18:16:22',0,0,'138.199.18.187','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.14 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(522,1,NULL,'2021-01-03 18:16:22','2021-01-03 18:16:22',0,0,'138.199.18.187','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(523,1,NULL,'2021-01-03 18:16:22','2021-01-03 18:16:22',0,0,'138.199.18.187','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(524,1,NULL,'2021-01-03 18:16:23','2021-01-03 18:16:23',0,0,'138.199.18.187','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(525,1,NULL,'2021-01-03 18:16:23','2021-01-03 18:16:23',0,0,'138.199.18.187','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(526,1,NULL,'2021-01-03 18:16:23','2021-01-03 18:16:23',0,0,'138.199.18.187','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36/iYA9HebN-7','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(527,1,NULL,'2021-01-03 19:51:32','2021-01-03 19:51:32',0,0,'2601:980:c000:2e90:4d3c:259c:a5ca:f2c4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(528,1,NULL,'2021-01-04 00:16:45','2021-01-04 00:16:45',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4089.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(529,1,NULL,'2021-01-04 01:11:41','2021-01-04 01:11:41',0,0,'178.159.37.125','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.0; rv:30.0) Gecko/20100101 Firefox/30.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(530,1,NULL,'2021-01-04 09:37:58','2021-01-04 09:37:58',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(531,1,NULL,'2021-01-04 16:57:13','2021-01-04 16:57:13',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(532,1,NULL,'2021-01-04 18:25:04','2021-01-04 18:25:04',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(533,1,NULL,'2021-01-04 21:53:26','2021-01-04 21:53:26',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(534,1,NULL,'2021-01-05 00:47:11','2021-01-05 00:47:11',0,0,'2601:980:c102:18b0:b825:763a:54f3:20fb','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(535,1,NULL,'2021-01-05 06:45:42','2021-01-05 06:45:42',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(536,1,NULL,'2021-01-05 06:45:42','2021-01-05 06:45:42',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(537,1,NULL,'2021-01-05 12:10:53','2021-01-05 12:10:53',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4099.2 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(538,1,NULL,'2021-01-05 12:16:32','2021-01-05 12:16:32',0,0,'31.171.152.101','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(539,1,NULL,'2021-01-05 13:16:16','2021-01-05 13:16:16',0,0,'191.101.170.77','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(540,1,NULL,'2021-01-05 13:45:46','2021-01-05 13:45:46',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4089.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(541,1,NULL,'2021-01-05 15:39:51','2021-01-05 15:39:51',0,0,'185.102.139.43','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(542,1,NULL,'2021-01-05 21:24:49','2021-01-05 21:24:49',0,0,'198.46.214.30','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(543,1,NULL,'2021-01-05 22:06:33','2021-01-05 22:06:33',0,0,'107.175.94.4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(544,1,NULL,'2021-01-05 22:34:19','2021-01-05 22:34:19',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36/iYA9HebN-7','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(545,1,NULL,'2021-01-06 03:50:21','2021-01-06 03:50:21',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36 OPR/69.0.3686.7 (Edition beta)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(546,1,NULL,'2021-01-06 04:13:20','2021-01-06 04:13:20',0,0,'27.147.190.133','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(547,1,NULL,'2021-01-06 05:02:32','2021-01-06 05:02:32',0,0,'162.219.178.59','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(548,1,NULL,'2021-01-06 19:06:41','2021-01-06 19:06:41',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(549,1,NULL,'2021-01-07 00:07:35','2021-01-07 00:07:35',0,0,'45.237.168.114','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(550,1,NULL,'2021-01-07 10:30:54','2021-01-07 10:30:54',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(551,1,NULL,'2021-01-07 11:21:07','2021-01-07 11:21:07',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(552,1,NULL,'2021-01-07 18:36:29','2021-01-07 18:36:29',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(553,1,NULL,'2021-01-07 19:52:12','2021-01-07 19:52:12',0,0,'207.244.71.79','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(554,1,NULL,'2021-01-07 23:48:20','2021-01-07 23:48:20',0,0,'2601:980:c001:3490:cd8f:de39:5857:f5c4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; LM-G900) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(555,1,NULL,'2021-01-08 11:02:22','2021-01-08 11:02:22',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4089.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(556,1,NULL,'2021-01-08 12:51:14','2021-01-08 12:51:14',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(557,1,NULL,'2021-01-08 19:04:01','2021-01-08 19:04:01',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4096.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(558,1,NULL,'2021-01-08 19:11:41','2021-01-08 19:11:41',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(559,1,NULL,'2021-01-08 20:27:20','2021-01-08 20:27:20',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(560,1,NULL,'2021-01-08 21:42:55','2021-01-08 21:42:55',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(561,1,NULL,'2021-01-08 21:46:27','2021-01-08 21:46:27',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(562,1,NULL,'2021-01-08 21:56:08','2021-01-08 21:56:08',0,0,'5.188.48.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(563,1,NULL,'2021-01-09 00:27:24','2021-01-09 00:27:24',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4100.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(564,1,NULL,'2021-01-09 00:27:32','2021-01-09 00:27:32',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4102.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(565,1,NULL,'2021-01-09 05:09:13','2021-01-09 05:09:13',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(566,1,NULL,'2021-01-09 06:41:36','2021-01-09 06:41:36',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(567,1,NULL,'2021-01-09 10:11:17','2021-01-09 10:11:17',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4096.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(568,1,NULL,'2021-01-09 10:47:22','2021-01-09 10:47:22',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(569,1,NULL,'2021-01-09 14:49:52','2021-01-09 14:49:52',0,0,'5.188.84.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4089.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(570,1,NULL,'2021-01-09 19:33:53','2021-01-09 19:33:53',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(571,1,NULL,'2021-01-09 20:16:50','2021-01-09 20:16:50',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4099.2 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(572,1,NULL,'2021-01-09 21:14:17','2021-01-09 21:14:17',0,0,'5.188.84.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36/iYA9HebN-7','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(573,1,NULL,'2021-01-10 00:43:20','2021-01-10 00:43:20',0,0,'5.188.84.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(574,1,NULL,'2021-01-10 00:43:21','2021-01-10 00:43:21',0,0,'5.188.48.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4100.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(575,1,NULL,'2021-01-10 09:10:16','2021-01-10 09:10:16',0,0,'77.51.128.127','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(576,1,NULL,'2021-01-11 16:11:56','2021-01-11 16:11:56',0,0,'2601:982:8200:2fe0:6936:3ef3:b100:a2b2','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(577,1,NULL,'2021-01-11 19:14:10','2021-01-11 19:14:10',0,0,'107.175.94.4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(578,1,NULL,'2021-01-12 00:24:04','2021-01-12 00:24:04',0,0,'2601:980:c201:2c30:6443:96a7:b76a:e6e2','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(579,1,NULL,'2021-01-12 11:44:17','2021-01-12 11:44:17',0,0,'45.132.226.181','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(580,1,NULL,'2021-01-13 04:45:36','2021-01-13 04:45:36',0,0,'194.110.115.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(581,1,NULL,'2021-01-13 15:33:08','2021-01-13 15:33:08',0,0,'2607:fb90:333:e35b:b0cf:c7f7:e13a:1ff1','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(582,1,NULL,'2021-01-13 15:48:59','2021-01-13 15:48:59',0,0,'181.214.61.51','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(583,1,NULL,'2021-01-14 03:48:18','2021-01-14 03:48:18',0,0,'107.175.58.200','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(584,1,NULL,'2021-01-14 14:07:00','2021-01-14 14:07:00',0,0,'37.120.133.134','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(585,1,NULL,'2021-01-14 16:15:47','2021-01-14 16:15:47',0,0,'181.214.61.51','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(586,1,NULL,'2021-01-17 04:17:54','2021-01-17 04:17:54',0,0,'73.64.106.25','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPad; CPU OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(587,1,NULL,'2021-01-17 14:35:42','2021-01-17 14:35:42',0,0,'124.107.37.254','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(588,1,NULL,'2021-01-18 08:07:26','2021-01-18 08:07:26',0,0,'196.196.254.124','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(589,1,NULL,'2021-01-18 23:41:47','2021-01-18 23:41:47',0,0,'102.140.136.159','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(590,1,NULL,'2021-01-19 00:15:29','2021-01-19 00:15:29',0,0,'31.131.69.14','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(591,1,NULL,'2021-01-19 21:46:36','2021-01-19 21:46:36',0,0,'173.163.130.141','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/137.2.345735309 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(592,1,NULL,'2021-01-21 04:57:24','2021-01-21 04:57:24',0,0,'86.123.245.200','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(593,1,NULL,'2021-01-21 23:01:49','2021-01-21 23:01:49',0,0,'174.247.64.253','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; SM-G960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(594,1,NULL,'2021-01-23 05:48:11','2021-01-23 05:48:11',0,0,'198.46.214.151','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(595,1,NULL,'2021-01-24 09:48:05','2021-01-24 09:48:05',0,0,'84.17.52.63','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(596,1,NULL,'2021-01-25 21:02:00','2021-01-25 21:02:00',0,0,'64.9.62.190','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(597,1,NULL,'2021-01-26 20:27:01','2021-01-26 20:27:01',0,0,'77.222.115.46','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(598,1,NULL,'2021-01-28 03:23:59','2021-01-28 03:23:59',0,0,'136.169.194.113','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(599,1,NULL,'2021-01-29 17:05:57','2021-01-29 17:05:57',0,0,'84.247.48.12','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(600,1,NULL,'2021-01-29 20:44:08','2021-01-29 20:44:08',0,0,'107.175.32.89','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(601,1,NULL,'2021-01-30 09:14:39','2021-01-30 09:14:39',0,0,'95.165.132.48','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(602,1,NULL,'2021-01-31 16:40:11','2021-01-31 16:40:11',0,0,'143.244.46.111','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(603,1,NULL,'2021-02-01 07:11:48','2021-02-01 07:11:48',0,0,'206.41.168.200','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(604,1,NULL,'2021-02-01 07:26:08','2021-02-01 07:26:08',0,0,'107.175.94.4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(605,1,NULL,'2021-02-01 07:44:05','2021-02-01 07:44:05',0,0,'45.132.226.138','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(606,1,NULL,'2021-02-02 16:13:57','2021-02-02 16:13:57',0,0,'196.53.0.121','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(607,1,NULL,'2021-02-02 20:24:19','2021-02-02 20:24:19',0,0,'107.172.139.236','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(608,1,NULL,'2021-02-03 09:47:51','2021-02-03 09:47:51',0,0,'104.160.17.217','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(609,1,NULL,'2021-02-03 22:30:26','2021-02-03 22:30:26',0,0,'192.40.57.240','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(610,1,NULL,'2021-02-04 02:29:18','2021-02-04 02:29:18',0,0,'107.175.224.133','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(611,1,NULL,'2021-02-04 16:38:12','2021-02-04 16:38:12',0,0,'207.244.89.161','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(612,1,NULL,'2021-02-05 02:16:15','2021-02-05 02:16:15',0,0,'2601:980:c002:9f00:909:eb10:f322:fc5d','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(613,1,NULL,'2021-02-05 14:44:27','2021-02-05 14:44:27',0,0,'45.132.226.164','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(614,1,NULL,'2021-02-06 00:45:34','2021-02-06 00:45:34',0,0,'185.210.217.244','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(615,1,NULL,'2021-02-07 16:03:43','2021-02-07 16:03:43',0,0,'46.191.168.224','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(616,1,NULL,'2021-02-07 19:25:50','2021-02-07 19:25:50',0,0,'107.172.66.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:51.0) Gecko/20100101 Firefox/51.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(617,1,NULL,'2021-02-07 19:49:10','2021-02-07 19:49:10',0,0,'192.210.174.46','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(618,1,NULL,'2021-02-07 23:07:01','2021-02-07 23:07:01',0,0,'2601:980:c002:9f00:1c5b:8bd9:30a1:a851','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(619,1,NULL,'2021-02-08 11:46:44','2021-02-08 11:46:44',0,0,'46.243.220.102','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4099.2 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(620,1,NULL,'2021-02-08 11:58:43','2021-02-08 11:58:43',0,0,'185.189.114.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(621,1,NULL,'2021-02-09 16:16:11','2021-02-09 16:16:11',0,0,'101.50.109.42','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(622,1,NULL,'2021-02-10 03:55:05','2021-02-10 03:55:05',0,0,'23.94.32.243','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(623,1,NULL,'2021-02-10 18:27:53','2021-02-10 18:27:53',0,0,'173.163.187.65','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(624,1,NULL,'2021-02-10 20:45:12','2021-02-10 20:45:12',0,0,'212.102.57.176','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(625,1,NULL,'2021-02-10 21:34:48','2021-02-10 21:34:48',0,0,'77.79.128.194','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(626,1,NULL,'2021-02-11 04:28:46','2021-02-11 04:28:46',0,0,'95.154.200.187','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(627,1,NULL,'2021-02-11 07:23:51','2021-02-11 07:23:51',0,0,'188.243.124.19','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(628,1,NULL,'2021-02-13 21:04:17','2021-02-13 21:04:17',0,0,'31.171.152.108','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(629,1,NULL,'2021-02-13 23:53:40','2021-02-13 23:53:40',0,0,'213.226.80.70','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(630,1,NULL,'2021-02-14 00:09:45','2021-02-14 00:09:45',0,0,'198.46.134.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(631,1,NULL,'2021-02-14 10:33:17','2021-02-14 10:33:17',0,0,'185.159.158.50','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36 OPR/69.0.3686.7 (Edition beta)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(632,1,NULL,'2021-02-14 14:33:07','2021-02-14 14:33:07',0,0,'37.120.155.99','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(633,1,NULL,'2021-02-15 08:09:52','2021-02-15 08:09:52',0,0,'170.244.94.164','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(634,1,NULL,'2021-02-15 23:47:31','2021-02-15 23:47:31',0,0,'37.120.235.150','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(635,1,NULL,'2021-02-16 01:48:13','2021-02-16 01:48:13',0,0,'198.46.134.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(636,1,NULL,'2021-02-16 03:14:54','2021-02-16 03:14:54',0,0,'64.145.65.222','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(637,1,NULL,'2021-02-16 06:25:42','2021-02-16 06:25:42',0,0,'171.50.151.190','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(638,1,NULL,'2021-02-17 02:26:20','2021-02-17 02:26:20',0,0,'85.159.237.75','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(639,1,NULL,'2021-02-17 06:27:35','2021-02-17 06:27:35',0,0,'23.94.148.141','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(640,1,NULL,'2021-02-17 22:02:06','2021-02-17 22:02:06',0,0,'85.159.237.75','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(641,1,NULL,'2021-02-17 22:59:22','2021-02-17 22:59:22',0,0,'198.46.134.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(642,1,NULL,'2021-02-18 18:54:16','2021-02-18 18:54:16',0,0,'31.171.155.6','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(643,1,NULL,'2021-02-19 10:58:13','2021-02-19 10:58:13',0,0,'192.145.39.15','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(644,1,NULL,'2021-02-19 14:43:21','2021-02-19 14:43:21',0,0,'151.80.47.156','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(645,1,NULL,'2021-02-20 00:17:58','2021-02-20 00:17:58',0,0,'2601:980:c300:1d90:685f:5206:f3bc:59fe','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(646,1,NULL,'2021-02-20 09:33:04','2021-02-20 09:33:04',0,0,'185.163.110.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(647,1,NULL,'2021-02-20 11:19:47','2021-02-20 11:19:47',0,0,'212.102.57.176','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4089.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(648,1,NULL,'2021-02-21 12:52:15','2021-02-21 12:52:15',0,0,'193.9.115.121','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(649,1,NULL,'2021-02-23 02:41:15','2021-02-23 02:41:15',0,0,'198.46.134.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(650,1,NULL,'2021-02-24 10:28:36','2021-02-24 10:28:36',0,0,'103.46.203.230','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(651,1,NULL,'2021-02-24 16:08:01','2021-02-24 16:08:01',0,0,'198.46.134.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(652,1,NULL,'2021-02-24 19:17:11','2021-02-24 19:17:11',0,0,'74.94.5.21','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(653,1,NULL,'2021-02-25 17:15:06','2021-02-25 17:15:06',0,0,'2601:98a:c100:793:44de:24f8:f4d1:b63e','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 11; SM-G970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.181 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(654,1,NULL,'2021-02-25 22:43:12','2021-02-25 22:43:12',0,0,'172.245.103.141','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(655,1,NULL,'2021-02-26 06:20:26','2021-02-26 06:20:26',0,0,'223.29.253.176','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(656,1,NULL,'2021-02-26 20:59:26','2021-02-26 20:59:26',0,0,'151.106.8.102','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(657,1,NULL,'2021-02-27 13:27:40','2021-02-27 13:27:40',0,0,'5.135.180.110','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(658,1,NULL,'2021-02-28 15:00:53','2021-02-28 15:00:53',0,0,'85.159.237.75','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(659,1,NULL,'2021-02-28 16:19:16','2021-02-28 16:19:16',0,0,'209.127.39.220','https://www.mannplumbingandheating.com/CONTACT-US/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(660,1,NULL,'2021-02-28 23:31:58','2021-02-28 23:31:58',0,0,'185.251.1.6','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(661,1,NULL,'2021-02-28 23:46:25','2021-02-28 23:46:25',0,0,'67.227.105.184','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.190 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(662,1,NULL,'2021-03-01 15:49:21','2021-03-01 15:49:21',0,0,'67.227.105.184','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.190 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(663,1,NULL,'2021-03-01 22:14:50','2021-03-01 22:14:50',0,0,'2601:982:8200:2fe0:1184:1665:46bd:37a7','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 Edg/88.0.705.81','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(664,1,NULL,'2021-03-02 11:46:36','2021-03-02 11:46:36',0,0,'37.120.194.39','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(665,1,NULL,'2021-03-03 22:01:53','2021-03-03 22:01:53',0,0,'125.58.101.129','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(666,1,NULL,'2021-03-03 23:21:40','2021-03-03 23:21:40',0,0,'89.187.168.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(667,1,NULL,'2021-03-04 04:01:57','2021-03-04 04:01:57',0,0,'144.168.138.57','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(668,1,NULL,'2021-03-04 10:32:22','2021-03-04 10:32:22',0,0,'71.58.185.217','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/86.0.4240.93 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(669,1,NULL,'2021-03-04 15:27:04','2021-03-04 15:27:04',0,0,'196.247.163.165','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(670,1,NULL,'2021-03-04 16:21:45','2021-03-04 16:21:45',0,0,'23.81.228.116','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(671,1,NULL,'2021-03-05 01:35:33','2021-03-05 01:35:33',0,0,'89.187.164.250','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(672,1,NULL,'2021-03-05 14:59:09','2021-03-05 14:59:09',0,0,'198.46.134.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(673,1,NULL,'2021-03-05 20:36:40','2021-03-05 20:36:40',0,0,'84.17.47.22','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(674,1,NULL,'2021-03-06 01:04:02','2021-03-06 01:04:02',0,0,'168.91.45.221','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(675,1,NULL,'2021-03-06 03:44:41','2021-03-06 03:44:41',0,0,'212.102.33.79','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(676,1,NULL,'2021-03-06 17:22:21','2021-03-06 17:22:21',0,0,'5.157.8.157','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(677,1,NULL,'2021-03-08 20:45:21','2021-03-08 20:45:21',0,0,'31.204.128.47','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(678,1,NULL,'2021-03-08 23:45:33','2021-03-08 23:45:33',0,0,'209.127.40.136','https://www.mannplumbingandheating.com/CONTACT-US/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(679,1,NULL,'2021-03-09 06:51:55','2021-03-09 06:51:55',0,0,'103.221.232.202','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(680,1,NULL,'2021-03-09 11:57:35','2021-03-09 11:57:35',0,0,'198.46.134.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(681,1,NULL,'2021-03-09 14:44:37','2021-03-09 14:44:37',0,0,'50.73.25.213','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(682,1,NULL,'2021-03-10 05:48:01','2021-03-10 05:48:01',0,0,'171.78.254.107','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(683,1,NULL,'2021-03-10 05:48:10','2021-03-10 05:48:10',0,0,'171.78.254.107','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(684,1,NULL,'2021-03-10 12:42:16','2021-03-10 12:42:16',0,0,'2601:982:8200:2fe0:5d44:1574:8bfa:16d1','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36 Edg/89.0.774.45','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(685,1,NULL,'2021-03-10 15:58:03','2021-03-10 15:58:03',0,0,'76.5.127.236','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(686,1,NULL,'2021-03-10 17:37:44','2021-03-10 17:37:44',0,0,'84.17.51.66','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(687,1,NULL,'2021-03-10 21:40:57','2021-03-10 21:40:57',0,0,'2600:1002:b110:d7f0:0:35:6506:2e01','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; SM-A102U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.181 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(688,1,NULL,'2021-03-11 13:09:43','2021-03-11 13:09:43',0,0,'107.181.180.174','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(689,1,NULL,'2021-03-11 21:17:49','2021-03-11 21:17:49',0,0,'181.215.127.241','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(690,1,NULL,'2021-03-12 03:20:12','2021-03-12 03:20:12',0,0,'5.181.41.211','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(691,1,NULL,'2021-03-13 04:09:03','2021-03-13 04:09:03',0,0,'185.232.21.126','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(692,1,NULL,'2021-03-13 08:54:05','2021-03-13 08:54:05',0,0,'107.181.180.174','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(693,1,NULL,'2021-03-13 16:17:57','2021-03-13 16:17:57',0,0,'185.253.99.55','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(694,1,NULL,'2021-03-13 16:35:50','2021-03-13 16:35:50',0,0,'45.152.198.46','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(695,1,NULL,'2021-03-16 09:44:43','2021-03-16 09:44:43',0,0,'165.231.84.30','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(696,1,NULL,'2021-03-16 16:06:09','2021-03-16 16:06:09',0,0,'185.253.99.58','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(697,1,NULL,'2021-03-16 18:37:33','2021-03-16 18:37:33',0,0,'45.82.196.117','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(698,1,NULL,'2021-03-16 19:07:38','2021-03-16 19:07:38',0,0,'45.132.226.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(699,1,NULL,'2021-03-17 05:57:55','2021-03-17 05:57:55',0,0,'117.239.107.51','https://www.mannplumbingandheating.com/CONTACT-US/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(700,1,NULL,'2021-03-19 16:11:45','2021-03-19 16:11:45',0,0,'98.235.132.235','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(701,1,NULL,'2021-03-19 17:08:27','2021-03-19 17:08:27',0,0,'209.58.130.41','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(702,1,NULL,'2021-03-19 20:02:54','2021-03-19 20:02:54',0,0,'73.230.253.129','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(703,1,NULL,'2021-03-19 20:21:46','2021-03-19 20:21:46',0,0,'2607:fb90:62d3:8967:0:1c:f77b:1901','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; LM-Q730) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(704,1,NULL,'2021-03-20 07:58:26','2021-03-20 07:58:26',0,0,'45.133.193.10','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(705,1,NULL,'2021-03-20 21:56:00','2021-03-20 21:56:00',0,0,'23.95.110.201','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(706,1,NULL,'2021-03-21 01:16:05','2021-03-21 01:16:05',0,0,'91.219.212.206','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(707,1,NULL,'2021-03-21 18:05:47','2021-03-21 18:05:47',0,0,'2601:980:c004:5c80:24fa:227d:3a64:36c3','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(708,1,NULL,'2021-03-22 21:57:31','2021-03-22 21:57:31',0,0,'107.181.180.174','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(709,1,NULL,'2021-03-24 02:39:04','2021-03-24 02:39:04',0,0,'185.210.217.14','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(710,1,NULL,'2021-03-25 08:45:37','2021-03-25 08:45:37',0,0,'107.181.180.174','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4100.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(711,1,NULL,'2021-03-26 04:14:23','2021-03-26 04:14:23',0,0,'196.196.47.8','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(712,1,NULL,'2021-03-27 13:32:14','2021-03-27 13:32:14',0,0,'73.175.226.147','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(713,1,NULL,'2021-03-27 18:26:29','2021-03-27 18:26:29',0,0,'193.9.114.212','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(714,1,NULL,'2021-03-28 02:25:26','2021-03-28 02:25:26',0,0,'198.46.134.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(715,1,NULL,'2021-03-28 23:06:18','2021-03-28 23:06:18',0,0,'174.247.64.172','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; SAMSUNG SM-S111DL) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/11.0 Chrome/75.0.3770.143 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(716,1,NULL,'2021-03-29 05:13:59','2021-03-29 05:13:59',0,0,'45.10.237.41','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(717,1,NULL,'2021-03-29 16:32:43','2021-03-29 16:32:43',0,0,'212.102.40.143','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(718,1,NULL,'2021-03-30 08:01:26','2021-03-30 08:01:26',0,0,'190.2.131.175','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(719,1,NULL,'2021-03-31 09:04:14','2021-03-31 09:04:14',0,0,'196.196.160.29','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(720,1,NULL,'2021-04-01 10:14:23','2021-04-01 10:14:23',0,0,'196.242.10.82','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(721,1,NULL,'2021-04-01 21:37:11','2021-04-01 21:37:11',0,0,'144.91.99.47','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(722,1,NULL,'2021-04-01 21:37:13','2021-04-01 21:37:13',0,0,'144.91.99.47','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(723,1,NULL,'2021-04-01 21:37:13','2021-04-01 21:37:13',0,0,'144.91.99.47','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(724,1,NULL,'2021-04-01 22:50:24','2021-04-01 22:50:24',0,0,'84.17.51.55','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(725,1,NULL,'2021-04-02 11:10:13','2021-04-02 11:10:13',0,0,'159.242.227.96','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(726,1,NULL,'2021-04-03 23:25:50','2021-04-03 23:25:50',0,0,'23.95.224.215','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(727,1,NULL,'2021-04-04 00:51:55','2021-04-04 00:51:55',0,0,'89.187.168.180','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(728,1,NULL,'2021-04-06 01:19:04','2021-04-06 01:19:04',0,0,'65.126.17.138','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(729,1,NULL,'2021-04-06 17:24:00','2021-04-06 17:24:00',0,0,'198.46.134.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(730,1,NULL,'2021-04-06 23:10:30','2021-04-06 23:10:30',0,0,'193.9.114.243','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(731,1,NULL,'2021-04-07 05:45:52','2021-04-07 05:45:52',0,0,'107.150.70.118','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(732,1,NULL,'2021-04-08 01:51:45','2021-04-08 01:51:45',0,0,'5.62.49.19','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(733,1,NULL,'2021-04-10 20:40:27','2021-04-10 20:40:27',0,0,'198.46.134.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(734,1,NULL,'2021-04-11 13:39:26','2021-04-11 13:39:26',0,0,'185.189.13.221','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(735,1,NULL,'2021-04-11 19:22:06','2021-04-11 19:22:06',0,0,'104.129.9.36','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(736,1,NULL,'2021-04-11 21:42:01','2021-04-11 21:42:01',0,0,'84.17.48.97','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(737,1,NULL,'2021-04-12 06:54:06','2021-04-12 06:54:06',0,0,'165.231.225.101','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(738,1,NULL,'2021-04-12 14:26:58','2021-04-12 14:26:58',0,0,'165.231.227.206','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(739,1,NULL,'2021-04-13 02:52:07','2021-04-13 02:52:07',0,0,'192.40.57.57','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(740,1,NULL,'2021-04-13 12:16:59','2021-04-13 12:16:59',0,0,'191.101.209.109','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(741,1,NULL,'2021-04-14 17:16:11','2021-04-14 17:16:11',0,0,'77.222.109.213','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(742,1,NULL,'2021-04-16 16:32:09','2021-04-16 16:32:09',0,0,'176.125.229.138','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(743,1,NULL,'2021-04-16 18:31:39','2021-04-16 18:31:39',0,0,'95.153.31.94','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36 Edg/83.0.478.18','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(744,1,NULL,'2021-04-17 03:03:20','2021-04-17 03:03:20',0,0,'77.222.109.213','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(745,1,NULL,'2021-04-17 09:22:18','2021-04-17 09:22:18',0,0,'62.109.13.37','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36 Edg/83.0.478.18','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(746,1,NULL,'2021-04-17 11:28:25','2021-04-17 11:28:25',0,0,'196.19.240.121','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(747,1,NULL,'2021-04-17 13:32:43','2021-04-17 13:32:43',0,0,'2601:980:c102:7db0:d050:5c66:164:2e00','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 9; LM-X420) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.66 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(748,1,NULL,'2021-04-18 08:35:07','2021-04-18 08:35:07',0,0,'84.17.60.218','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4089.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(749,1,NULL,'2021-04-19 05:57:39','2021-04-19 05:57:39',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(750,1,NULL,'2021-04-19 19:53:04','2021-04-19 19:53:04',0,0,'196.245.187.232','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(751,1,NULL,'2021-04-19 22:15:24','2021-04-19 22:15:24',0,0,'165.231.227.156','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(752,1,NULL,'2021-04-20 09:07:26','2021-04-20 09:07:26',0,0,'103.206.251.80','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(753,1,NULL,'2021-04-20 09:21:40','2021-04-20 09:21:40',0,0,'109.248.149.23','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(754,1,NULL,'2021-04-21 04:08:51','2021-04-21 04:08:51',0,0,'107.173.248.66','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(755,1,NULL,'2021-04-21 08:30:26','2021-04-21 08:30:26',0,0,'154.224.104.30','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(756,1,NULL,'2021-04-21 21:02:36','2021-04-21 21:02:36',0,0,'5.149.253.57','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(757,1,NULL,'2021-04-22 03:49:37','2021-04-22 03:49:37',0,0,'37.120.235.148','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(758,1,NULL,'2021-04-22 16:30:11','2021-04-22 16:30:11',0,0,'198.46.134.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(759,1,NULL,'2021-04-22 22:50:28','2021-04-22 22:50:28',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(760,1,NULL,'2021-04-23 22:33:21','2021-04-23 22:33:21',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4102.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(761,1,NULL,'2021-04-24 19:01:12','2021-04-24 19:01:12',0,0,'64.67.130.244','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(762,1,NULL,'2021-04-25 06:12:02','2021-04-25 06:12:02',0,0,'190.2.132.136','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4102.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(763,1,NULL,'2021-04-26 05:32:44','2021-04-26 05:32:44',0,0,'173.255.191.9','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(764,1,NULL,'2021-04-26 09:51:42','2021-04-26 09:51:42',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(765,1,NULL,'2021-04-26 17:46:18','2021-04-26 17:46:18',0,0,'37.120.143.172','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(766,1,NULL,'2021-04-27 02:02:34','2021-04-27 02:02:34',0,0,'154.231.94.221','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(767,1,NULL,'2021-04-27 23:31:56','2021-04-27 23:31:56',0,0,'84.17.60.218','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(768,1,NULL,'2021-04-28 02:25:35','2021-04-28 02:25:35',0,0,'37.120.235.150','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(769,1,NULL,'2021-04-28 18:27:19','2021-04-28 18:27:19',0,0,'13.65.195.0','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(770,1,NULL,'2021-04-28 19:45:53','2021-04-28 19:45:53',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(771,1,NULL,'2021-04-28 21:11:06','2021-04-28 21:11:06',0,0,'104.207.207.135','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(772,1,NULL,'2021-04-28 21:32:28','2021-04-28 21:32:28',0,0,'23.254.131.33','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(773,1,NULL,'2021-04-29 01:42:34','2021-04-29 01:42:34',0,0,'191.101.217.24','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(774,1,NULL,'2021-04-29 12:57:43','2021-04-29 12:57:43',0,0,'73.168.86.112','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:51.0) Gecko/20100101 Firefox/51.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(775,1,NULL,'2021-04-29 18:08:20','2021-04-29 18:08:20',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(776,1,NULL,'2021-04-29 18:21:53','2021-04-29 18:21:53',0,0,'2607:fb90:a82b:3e48:971e:7c34:362a:f0db','https://www.mannplumbingandheating.com/contact-us/?gclid=Cj0KCQjwsqmEBhDiARIsANV8H3Z8H4Zr_sFNhTHSrUfK9YqO1ti75TpyN7gh6Jk_lV26WuIn8so2vFMaAkHmEALw_wcB','Mozilla/5.0 (Linux; Android 9; LM-X420) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.82 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(777,1,NULL,'2021-04-30 00:50:27','2021-04-30 00:50:27',0,0,'194.110.13.151','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(778,1,NULL,'2021-04-30 03:41:15','2021-04-30 03:41:15',0,0,'191.101.217.24','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(779,1,NULL,'2021-04-30 13:52:24','2021-04-30 13:52:24',0,0,'173.213.86.145','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(780,1,NULL,'2021-04-30 20:27:45','2021-04-30 20:27:45',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(781,1,NULL,'2021-05-01 07:51:56','2021-05-01 07:51:56',0,0,'191.101.217.24','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.14 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(782,1,NULL,'2021-05-02 04:33:22','2021-05-02 04:33:22',0,0,'196.242.10.86','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(783,1,NULL,'2021-05-02 13:19:20','2021-05-02 13:19:20',0,0,'2601:980:c003:7bf0:2445:cf70:7936:ea65','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(784,1,NULL,'2021-05-02 23:10:31','2021-05-02 23:10:31',0,0,'191.101.31.36','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(785,1,NULL,'2021-05-03 19:52:13','2021-05-03 19:52:13',0,0,'2001:4453:2e2:f900:c5b:f3a4:b442:8c25','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(786,1,NULL,'2021-05-04 05:36:03','2021-05-04 05:36:03',0,0,'5.157.5.148','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(787,1,NULL,'2021-05-04 07:39:48','2021-05-04 07:39:48',0,0,'112.201.205.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36 OPR/75.0.3969.243','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(788,1,NULL,'2021-05-04 18:00:49','2021-05-04 18:00:49',0,0,'212.102.57.134','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(789,1,NULL,'2021-05-04 18:43:43','2021-05-04 18:43:43',0,0,'190.2.132.136','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(790,1,NULL,'2021-05-04 22:56:04','2021-05-04 22:56:04',0,0,'185.206.224.236','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(791,1,NULL,'2021-05-05 16:01:03','2021-05-05 16:01:03',0,0,'190.2.132.136','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(792,1,NULL,'2021-05-05 18:37:46','2021-05-05 18:37:46',0,0,'91.79.19.172','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(793,1,NULL,'2021-05-05 21:42:34','2021-05-05 21:42:34',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(794,1,NULL,'2021-05-05 22:15:32','2021-05-05 22:15:32',0,0,'212.102.57.134','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(795,1,NULL,'2021-05-06 05:22:01','2021-05-06 05:22:01',0,0,'172.245.113.223','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(796,1,NULL,'2021-05-06 16:39:44','2021-05-06 16:39:44',0,0,'160.134.12.16','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(797,1,NULL,'2021-05-06 23:27:08','2021-05-06 23:27:08',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(798,1,NULL,'2021-05-07 01:01:15','2021-05-07 01:01:15',0,0,'138.199.18.138','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.14 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(799,1,NULL,'2021-05-07 12:50:16','2021-05-07 12:50:16',0,0,'31.131.69.14','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(800,1,NULL,'2021-05-07 14:03:39','2021-05-07 14:03:39',0,0,'190.2.132.136','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(801,1,NULL,'2021-05-07 22:25:51','2021-05-07 22:25:51',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(802,1,NULL,'2021-05-08 04:39:12','2021-05-08 04:39:12',0,0,'138.199.18.138','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(803,1,NULL,'2021-05-09 03:03:50','2021-05-09 03:03:50',0,0,'138.199.18.138','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(804,1,NULL,'2021-05-09 15:22:05','2021-05-09 15:22:05',0,0,'45.132.226.166','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(805,1,NULL,'2021-05-09 21:02:20','2021-05-09 21:02:20',0,0,'138.199.18.138','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(806,1,NULL,'2021-05-10 00:21:33','2021-05-10 00:21:33',0,0,'77.222.115.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4099.2 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(807,1,NULL,'2021-05-10 05:09:05','2021-05-10 05:09:05',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(808,1,NULL,'2021-05-10 21:33:22','2021-05-10 21:33:22',0,0,'212.102.57.205','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(809,1,NULL,'2021-05-11 03:24:53','2021-05-11 03:24:53',0,0,'190.2.131.201','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36/iYA9HebN-7','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(810,1,NULL,'2021-05-11 20:58:54','2021-05-11 20:58:54',0,0,'212.102.57.205','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(811,1,NULL,'2021-05-12 17:26:40','2021-05-12 17:26:40',0,0,'23.105.159.180','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(812,1,NULL,'2021-05-12 19:41:29','2021-05-12 19:41:29',0,0,'2601:980:c102:b720:1100:25cf:ddf3:8be0','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(813,1,NULL,'2021-05-13 03:48:12','2021-05-13 03:48:12',0,0,'212.102.57.205','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(814,1,NULL,'2021-05-13 15:48:11','2021-05-13 15:48:11',0,0,'173.163.187.65','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(815,1,NULL,'2021-05-13 20:06:41','2021-05-13 20:06:41',0,0,'196.196.148.220','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(816,1,NULL,'2021-05-13 22:18:55','2021-05-13 22:18:55',0,0,'173.44.165.86','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(817,1,NULL,'2021-05-14 04:18:20','2021-05-14 04:18:20',0,0,'138.199.18.78','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(818,1,NULL,'2021-05-14 13:21:23','2021-05-14 13:21:23',0,0,'188.122.82.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(819,1,NULL,'2021-05-15 00:30:07','2021-05-15 00:30:07',0,0,'138.199.18.78','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(820,1,NULL,'2021-05-16 02:43:15','2021-05-16 02:43:15',0,0,'138.199.18.78','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(821,1,NULL,'2021-05-16 21:49:14','2021-05-16 21:49:14',0,0,'2601:980:c100:7630:2832:9a57:1e84:dd26','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 11; SM-G998U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.210 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(822,1,NULL,'2021-05-17 00:29:20','2021-05-17 00:29:20',0,0,'138.199.18.78','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(823,1,NULL,'2021-05-17 22:29:27','2021-05-17 22:29:27',0,0,'212.102.57.164','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(824,1,NULL,'2021-05-18 10:41:59','2021-05-18 10:41:59',0,0,'176.125.230.132','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(825,1,NULL,'2021-05-18 12:34:42','2021-05-18 12:34:42',0,0,'46.243.220.103','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(826,1,NULL,'2021-05-18 18:08:56','2021-05-18 18:08:56',0,0,'23.105.159.116','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(827,1,NULL,'2021-05-19 05:06:07','2021-05-19 05:06:07',0,0,'191.101.31.29','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4089.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(828,1,NULL,'2021-05-19 21:11:08','2021-05-19 21:11:08',0,0,'31.171.152.138','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(829,1,NULL,'2021-05-20 00:13:47','2021-05-20 00:13:47',0,0,'191.101.31.29','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(830,1,NULL,'2021-05-20 06:41:20','2021-05-20 06:41:20',0,0,'191.101.217.236','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(831,1,NULL,'2021-05-20 07:34:29','2021-05-20 07:34:29',0,0,'108.51.126.20','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(832,1,NULL,'2021-05-21 06:17:57','2021-05-21 06:17:57',0,0,'212.102.57.166','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(833,1,NULL,'2021-05-21 12:00:38','2021-05-21 12:00:38',0,0,'196.242.178.74','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(834,1,NULL,'2021-05-21 16:59:49','2021-05-21 16:59:49',0,0,'68.7.209.162','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(835,1,NULL,'2021-05-21 23:37:55','2021-05-21 23:37:55',0,0,'74.5.150.197','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/159.1.372414826 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(836,1,NULL,'2021-05-22 01:36:23','2021-05-22 01:36:23',0,0,'176.116.230.133','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 Kinza/4.9.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(837,1,NULL,'2021-05-22 09:38:17','2021-05-22 09:38:17',0,0,'212.102.57.166','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(838,1,NULL,'2021-05-23 04:08:24','2021-05-23 04:08:24',0,0,'212.102.57.166','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(839,1,NULL,'2021-05-23 21:43:40','2021-05-23 21:43:40',0,0,'212.102.57.166','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(840,1,NULL,'2021-05-24 13:03:24','2021-05-24 13:03:24',0,0,'95.181.233.11','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(841,1,NULL,'2021-05-24 13:40:28','2021-05-24 13:40:28',0,0,'138.199.36.133','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(842,1,NULL,'2021-05-24 14:02:22','2021-05-24 14:02:22',0,0,'69.75.133.122','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:49.0) Gecko/20100101 Firefox/49.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(843,1,NULL,'2021-05-24 21:23:15','2021-05-24 21:23:15',0,0,'212.102.57.3','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4102.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(844,1,NULL,'2021-05-25 12:10:57','2021-05-25 12:10:57',0,0,'185.189.114.123','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(845,1,NULL,'2021-05-26 07:33:54','2021-05-26 07:33:54',0,0,'212.102.57.3','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(846,1,NULL,'2021-05-26 09:57:46','2021-05-26 09:57:46',0,0,'5.253.204.35','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(847,1,NULL,'2021-05-27 07:35:31','2021-05-27 07:35:31',0,0,'212.102.57.3','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(848,1,NULL,'2021-05-28 06:52:19','2021-05-28 06:52:19',0,0,'190.2.131.175','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36/iYA9HebN-7','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(849,1,NULL,'2021-05-28 09:51:11','2021-05-28 09:51:11',0,0,'138.199.18.88','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4096.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(850,1,NULL,'2021-05-28 11:07:55','2021-05-28 11:07:55',0,0,'77.247.178.186','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36/iYA9HebN-7','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(851,1,NULL,'2021-05-28 17:43:21','2021-05-28 17:43:21',0,0,'186.179.18.2','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(852,1,NULL,'2021-05-29 00:20:23','2021-05-29 00:20:23',0,0,'92.255.198.132','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(853,1,NULL,'2021-05-29 11:51:28','2021-05-29 11:51:28',0,0,'138.199.18.88','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(854,1,NULL,'2021-05-30 18:59:23','2021-05-30 18:59:23',0,0,'138.199.18.88','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(855,1,NULL,'2021-05-31 07:40:05','2021-05-31 07:40:05',0,0,'103.95.120.59','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(856,1,NULL,'2021-06-01 00:51:12','2021-06-01 00:51:12',0,0,'212.102.57.18','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(857,1,NULL,'2021-06-01 07:34:24','2021-06-01 07:34:24',0,0,'84.247.48.54','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(858,1,NULL,'2021-06-01 08:12:42','2021-06-01 08:12:42',0,0,'151.237.177.60','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(859,1,NULL,'2021-06-01 15:32:33','2021-06-01 15:32:33',0,0,'2603:6011:4747:1a00:a91f:f82d:8426:ff7d','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(860,1,NULL,'2021-06-01 20:31:36','2021-06-01 20:31:36',0,0,'212.102.57.18','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(861,1,NULL,'2021-06-02 04:14:41','2021-06-02 04:14:41',0,0,'138.94.218.186','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(862,1,NULL,'2021-06-02 12:44:39','2021-06-02 12:44:39',0,0,'5.79.219.166','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(863,1,NULL,'2021-06-02 18:15:54','2021-06-02 18:15:54',0,0,'89.39.107.209','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(864,1,NULL,'2021-06-03 03:10:41','2021-06-03 03:10:41',0,0,'212.102.57.18','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4102.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(865,1,NULL,'2021-06-03 20:58:34','2021-06-03 20:58:34',0,0,'212.102.57.18','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(866,1,NULL,'2021-06-05 01:25:55','2021-06-05 01:25:55',0,0,'138.199.18.135','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4089.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(867,1,NULL,'2021-06-05 02:09:20','2021-06-05 02:09:20',0,0,'51.254.144.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(868,1,NULL,'2021-06-05 05:33:52','2021-06-05 05:33:52',0,0,'144.168.134.177','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(869,1,NULL,'2021-06-05 18:54:35','2021-06-05 18:54:35',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36/iYA9HebN-7','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(870,1,NULL,'2021-06-06 02:35:47','2021-06-06 02:35:47',0,0,'46.150.247.130','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(871,1,NULL,'2021-06-07 04:00:39','2021-06-07 04:00:39',0,0,'138.199.18.135','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(872,1,NULL,'2021-06-07 06:28:11','2021-06-07 06:28:11',0,0,'151.237.179.229','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(873,1,NULL,'2021-06-08 01:34:31','2021-06-08 01:34:31',0,0,'2601:980:c001:5200:21b1:fe14:770b:5a16','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(874,1,NULL,'2021-06-08 11:03:22','2021-06-08 11:03:22',0,0,'93.190.111.173','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(875,1,NULL,'2021-06-08 14:00:23','2021-06-08 14:00:23',0,0,'51.254.144.40','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(876,1,NULL,'2021-06-08 14:20:44','2021-06-08 14:20:44',0,0,'52.36.7.194','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; rv:49.0) Gecko/20100101 Firefox/49.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(877,1,NULL,'2021-06-08 18:44:27','2021-06-08 18:44:27',0,0,'138.199.18.135','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(878,1,NULL,'2021-06-08 18:44:28','2021-06-08 18:44:28',0,0,'2607:fb90:a826:2dd8:3206:b2e7:30fd:b6f5','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; moto g fast) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.88 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(879,1,NULL,'2021-06-09 13:50:09','2021-06-09 13:50:09',0,0,'2601:980:c002:c3c0:d5bd:298f:1d33:7ae6','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 Edg/91.0.864.41','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(880,1,NULL,'2021-06-09 21:42:19','2021-06-09 21:42:19',0,0,'138.199.18.135','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(881,1,NULL,'2021-06-09 22:56:21','2021-06-09 22:56:21',0,0,'2601:980:c002:c3c0:d5bd:298f:1d33:7ae6','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 Edg/91.0.864.41','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(882,1,NULL,'2021-06-09 23:52:40','2021-06-09 23:52:40',0,0,'37.120.194.46','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(883,1,NULL,'2021-06-10 11:41:22','2021-06-10 11:41:22',0,0,'77.247.178.185','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36 Edg/83.0.478.18','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(884,1,NULL,'2021-06-11 06:00:57','2021-06-11 06:00:57',0,0,'212.102.57.85','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(885,1,NULL,'2021-06-12 02:11:30','2021-06-12 02:11:30',0,0,'190.2.133.230','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(886,1,NULL,'2021-06-12 09:58:26','2021-06-12 09:58:26',0,0,'45.252.189.194','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(887,1,NULL,'2021-06-12 20:39:38','2021-06-12 20:39:38',0,0,'212.102.57.85','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(888,1,NULL,'2021-06-14 00:04:34','2021-06-14 00:04:34',0,0,'212.102.57.85','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.14 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(889,1,NULL,'2021-06-14 21:05:44','2021-06-14 21:05:44',0,0,'2601:980:c002:c3c0:4d51:347c:519b:8c39','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 Edg/91.0.864.48','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(890,1,NULL,'2021-06-14 21:53:21','2021-06-14 21:53:21',0,0,'86.106.74.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(891,1,NULL,'2021-06-15 00:06:56','2021-06-15 00:06:56',0,0,'2400:adc5:136:e800:3857:188a:619f:5b8f','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(892,1,NULL,'2021-06-15 02:05:30','2021-06-15 02:05:30',0,0,'212.102.57.4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4096.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(893,1,NULL,'2021-06-15 19:20:51','2021-06-15 19:20:51',0,0,'2601:980:c001:eb60:8957:209b:5bb6:5228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(894,1,NULL,'2021-06-16 01:36:12','2021-06-16 01:36:12',0,0,'212.102.57.4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(895,1,NULL,'2021-06-16 19:43:23','2021-06-16 19:43:23',0,0,'212.102.57.4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(896,1,NULL,'2021-06-17 21:39:09','2021-06-17 21:39:09',0,0,'185.107.80.192','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4099.2 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(897,1,NULL,'2021-06-17 22:44:31','2021-06-17 22:44:31',0,0,'168.151.228.89','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(898,1,NULL,'2021-06-17 23:02:37','2021-06-17 23:02:37',0,0,'212.102.57.4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(899,1,NULL,'2021-06-18 10:29:19','2021-06-18 10:29:19',0,0,'103.206.250.102','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(900,1,NULL,'2021-06-18 23:56:58','2021-06-18 23:56:58',0,0,'212.102.57.216','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(901,1,NULL,'2021-06-19 09:20:03','2021-06-19 09:20:03',0,0,'37.120.145.93','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(902,1,NULL,'2021-06-20 02:05:25','2021-06-20 02:05:25',0,0,'89.249.73.212','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(903,1,NULL,'2021-06-20 15:07:05','2021-06-20 15:07:05',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36 OPR/69.0.3686.7 (Edition beta)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(904,1,NULL,'2021-06-21 00:06:31','2021-06-21 00:06:31',0,0,'89.249.73.212','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(905,1,NULL,'2021-06-21 17:33:21','2021-06-21 17:33:21',0,0,'89.249.73.212','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(906,1,NULL,'2021-06-21 21:10:22','2021-06-21 21:10:22',0,0,'46.166.182.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(907,1,NULL,'2021-06-21 23:49:26','2021-06-21 23:49:26',0,0,'89.38.97.116','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(908,1,NULL,'2021-06-22 02:14:05','2021-06-22 02:14:05',0,0,'185.159.158.51','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(909,1,NULL,'2021-06-22 05:56:56','2021-06-22 05:56:56',0,0,'37.120.152.106','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(910,1,NULL,'2021-06-22 13:34:46','2021-06-22 13:34:46',0,0,'185.159.158.51','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(911,1,NULL,'2021-06-22 15:57:12','2021-06-22 15:57:12',0,0,'172.223.27.48','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:56.0) Gecko/20100101 Firefox/56.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(912,1,NULL,'2021-06-22 18:23:51','2021-06-22 18:23:51',0,0,'185.159.158.51','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.14 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(913,1,NULL,'2021-06-22 20:45:02','2021-06-22 20:45:02',0,0,'173.15.142.49','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(914,1,NULL,'2021-06-23 05:52:58','2021-06-23 05:52:58',0,0,'182.64.210.222','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(915,1,NULL,'2021-06-23 10:38:03','2021-06-23 10:38:03',0,0,'191.101.217.150','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(916,1,NULL,'2021-06-23 12:14:13','2021-06-23 12:14:13',0,0,'47.188.91.82','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:52.9) Gecko/20100101 Goanna/4.1 Firefox/52.9 PaleMoon/28.0.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(917,1,NULL,'2021-06-23 20:04:01','2021-06-23 20:04:01',0,0,'46.29.255.110','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(918,1,NULL,'2021-06-24 14:12:24','2021-06-24 14:12:24',0,0,'2601:980:c001:6d40:3c93:6f5f:6b81:f31c','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(919,1,NULL,'2021-06-24 18:57:00','2021-06-24 18:57:00',0,0,'89.249.73.212','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(920,1,NULL,'2021-06-24 23:08:28','2021-06-24 23:08:28',0,0,'2601:980:c100:abe0:5063:f431:28e0:6f6d','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(921,1,NULL,'2021-06-26 01:30:20','2021-06-26 01:30:20',0,0,'89.249.73.212','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(922,1,NULL,'2021-06-26 23:08:45','2021-06-26 23:08:45',0,0,'89.249.73.212','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(923,1,NULL,'2021-06-27 10:55:00','2021-06-27 10:55:00',0,0,'2600:1003:b008:1652:68f6:9302:9745:769b','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 10; SM-G960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.181 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(924,1,NULL,'2021-06-27 11:13:03','2021-06-27 11:13:03',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.14 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(925,1,NULL,'2021-06-27 13:22:51','2021-06-27 13:22:51',0,0,'191.101.217.218','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(926,1,NULL,'2021-06-28 07:06:47','2021-06-28 07:06:47',0,0,'182.68.112.109','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(927,1,NULL,'2021-06-28 09:03:30','2021-06-28 09:03:30',0,0,'91.79.61.16','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36 Edg/83.0.478.18','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(928,1,NULL,'2021-06-28 18:09:03','2021-06-28 18:09:03',0,0,'173.163.168.89','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(929,1,NULL,'2021-06-29 09:18:02','2021-06-29 09:18:02',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(930,1,NULL,'2021-06-29 17:08:34','2021-06-29 17:08:34',0,0,'185.3.134.58','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(931,1,NULL,'2021-06-30 00:06:54','2021-06-30 00:06:54',0,0,'209.205.217.123','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(932,1,NULL,'2021-06-30 03:57:57','2021-06-30 03:57:57',0,0,'185.253.162.132','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(933,1,NULL,'2021-06-30 19:28:29','2021-06-30 19:28:29',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36 Edg/83.0.478.18','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(934,1,NULL,'2021-06-30 22:40:19','2021-06-30 22:40:19',0,0,'92.100.151.212','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(935,1,NULL,'2021-07-01 11:43:55','2021-07-01 11:43:55',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(936,1,NULL,'2021-07-01 11:47:11','2021-07-01 11:47:11',0,0,'190.2.130.177','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(937,1,NULL,'2021-07-01 14:30:42','2021-07-01 14:30:42',0,0,'156.146.63.149','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(938,1,NULL,'2021-07-02 09:56:53','2021-07-02 09:56:53',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(939,1,NULL,'2021-07-02 13:35:54','2021-07-02 13:35:54',0,0,'196.18.225.177','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(940,1,NULL,'2021-07-02 19:28:44','2021-07-02 19:28:44',0,0,'195.181.161.18','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(941,1,NULL,'2021-07-03 11:44:44','2021-07-03 11:44:44',0,0,'130.185.157.13','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(942,1,NULL,'2021-07-04 10:53:55','2021-07-04 10:53:55',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(943,1,NULL,'2021-07-04 12:09:07','2021-07-04 12:09:07',0,0,'75.136.252.55','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(944,1,NULL,'2021-07-04 19:35:34','2021-07-04 19:35:34',0,0,'212.102.57.215','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(945,1,NULL,'2021-07-04 20:44:40','2021-07-04 20:44:40',0,0,'147.78.141.190','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(946,1,NULL,'2021-07-05 07:15:36','2021-07-05 07:15:36',0,0,'185.107.242.199','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(947,1,NULL,'2021-07-05 13:46:11','2021-07-05 13:46:11',0,0,'2601:980:c101:f9f0:f188:f32e:4a7f:6d92','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(948,1,NULL,'2021-07-06 14:16:22','2021-07-06 14:16:22',0,0,'173.163.168.89','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(949,1,NULL,'2021-07-06 15:17:00','2021-07-06 15:17:00',0,0,'185.107.242.199','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(950,1,NULL,'2021-07-07 10:03:27','2021-07-07 10:03:27',0,0,'2400:adcc:136:8f00:c832:364c:5f66:5e15','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(951,1,NULL,'2021-07-08 00:17:02','2021-07-08 00:17:02',0,0,'173.244.209.91','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(952,1,NULL,'2021-07-09 12:48:59','2021-07-09 12:48:59',0,0,'184.75.211.150','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(953,1,NULL,'2021-07-12 00:54:06','2021-07-12 00:54:06',0,0,'154.227.198.113','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(954,1,NULL,'2021-07-12 09:08:50','2021-07-12 09:08:50',0,0,'154.21.208.22','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(955,1,NULL,'2021-07-12 09:42:00','2021-07-12 09:42:00',0,0,'185.189.114.117','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(956,1,NULL,'2021-07-12 11:52:56','2021-07-12 11:52:56',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(957,1,NULL,'2021-07-12 18:35:45','2021-07-12 18:35:45',0,0,'104.223.57.215','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(958,1,NULL,'2021-07-12 18:48:56','2021-07-12 18:48:56',0,0,'174.252.158.58','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(959,1,NULL,'2021-07-13 14:12:34','2021-07-13 14:12:34',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(960,1,NULL,'2021-07-13 16:55:50','2021-07-13 16:55:50',0,0,'174.59.127.181','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(961,1,NULL,'2021-07-14 15:33:39','2021-07-14 15:33:39',0,0,'84.17.48.221','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(962,1,NULL,'2021-07-16 11:10:12','2021-07-16 11:10:12',0,0,'94.46.220.108','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(963,1,NULL,'2021-07-17 10:05:02','2021-07-17 10:05:02',0,0,'185.189.114.123','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(964,1,NULL,'2021-07-21 13:51:22','2021-07-21 13:51:22',0,0,'72.255.57.30','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(965,1,NULL,'2021-07-22 09:32:03','2021-07-22 09:32:03',0,0,'37.19.223.98','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(966,1,NULL,'2021-07-22 15:54:36','2021-07-22 15:54:36',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.42','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(967,1,NULL,'2021-07-23 02:07:26','2021-07-23 02:07:26',0,0,'191.101.217.25','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(968,1,NULL,'2021-07-23 16:32:48','2021-07-23 16:32:48',0,0,'200.10.41.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(969,1,NULL,'2021-07-23 19:22:33','2021-07-23 19:22:33',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(970,1,NULL,'2021-07-24 03:01:55','2021-07-24 03:01:55',0,0,'84.17.49.38','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(971,1,NULL,'2021-07-24 04:54:09','2021-07-24 04:54:09',0,0,'185.154.155.228','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(972,1,NULL,'2021-07-25 00:01:59','2021-07-25 00:01:59',0,0,'191.101.217.25','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.42','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(973,1,NULL,'2021-07-25 00:30:02','2021-07-25 00:30:02',0,0,'45.10.140.187','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(974,1,NULL,'2021-07-25 23:24:47','2021-07-25 23:24:47',0,0,'45.133.172.46','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(975,1,NULL,'2021-07-26 10:02:27','2021-07-26 10:02:27',0,0,'65.21.137.110','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(976,1,NULL,'2021-07-26 12:51:37','2021-07-26 12:51:37',0,0,'192.3.139.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(977,1,NULL,'2021-07-26 18:40:03','2021-07-26 18:40:03',0,0,'109.238.208.138','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(978,1,NULL,'2021-07-26 22:20:38','2021-07-26 22:20:38',0,0,'161.0.9.5','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(979,1,NULL,'2021-07-27 15:16:59','2021-07-27 15:16:59',0,0,'46.166.182.66','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.42','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(980,1,NULL,'2021-07-27 15:34:19','2021-07-27 15:34:19',0,0,'45.4.173.211','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(981,1,NULL,'2021-07-27 17:08:27','2021-07-27 17:08:27',0,0,'46.166.182.66','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(982,1,NULL,'2021-07-28 14:46:19','2021-07-28 14:46:19',0,0,'173.163.168.89','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(983,1,NULL,'2021-07-29 07:06:36','2021-07-29 07:06:36',0,0,'69.10.63.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(984,1,NULL,'2021-07-30 20:39:19','2021-07-30 20:39:19',0,0,'2601:982:8203:2ef0:29c2:bb7c:2a00:7981','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(985,1,NULL,'2021-07-31 04:19:19','2021-07-31 04:19:19',0,0,'84.247.48.53','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(986,1,NULL,'2021-07-31 20:18:52','2021-07-31 20:18:52',0,0,'91.79.23.117','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4096.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(987,1,NULL,'2021-08-01 12:43:37','2021-08-01 12:43:37',0,0,'64.145.93.201','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(988,1,NULL,'2021-08-02 17:41:21','2021-08-02 17:41:21',0,0,'157.160.193.17','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(989,1,NULL,'2021-08-03 23:04:44','2021-08-03 23:04:44',0,0,'45.133.172.23','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4427.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(990,1,NULL,'2021-08-04 01:58:53','2021-08-04 01:58:53',0,0,'197.239.4.55','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(991,1,NULL,'2021-08-06 00:44:10','2021-08-06 00:44:10',0,0,'194.36.97.10','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(992,1,NULL,'2021-08-06 02:27:33','2021-08-06 02:27:33',0,0,'45.120.50.245','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(993,1,NULL,'2021-08-06 03:59:54','2021-08-06 03:59:54',0,0,'212.86.102.106','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(994,1,NULL,'2021-08-06 22:09:16','2021-08-06 22:09:16',0,0,'134.202.250.206','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(995,1,NULL,'2021-08-07 13:25:19','2021-08-07 13:25:19',0,0,'93.190.111.173','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(996,1,NULL,'2021-08-08 05:42:02','2021-08-08 05:42:02',0,0,'103.221.234.212','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(997,1,NULL,'2021-08-09 01:07:15','2021-08-09 01:07:15',0,0,'46.148.206.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(998,1,NULL,'2021-08-09 01:11:22','2021-08-09 01:11:22',0,0,'2601:980:c102:33a0:49ff:8f79:4cd7:f2f0','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 11; SM-G977U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(999,1,NULL,'2021-08-09 21:40:40','2021-08-09 21:40:40',0,0,'202.166.175.210','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1000,1,NULL,'2021-08-10 05:06:49','2021-08-10 05:06:49',0,0,'109.248.148.244','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1001,1,NULL,'2021-08-10 13:24:53','2021-08-10 13:24:53',0,0,'2601:980:c003:1060:44c9:177e:2b42:ddb2','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1002,1,NULL,'2021-08-10 19:35:53','2021-08-10 19:35:53',0,0,'2400:adc5:14e:1600:d0ac:dc1f:2b66:aab8','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1003,1,NULL,'2021-08-10 20:44:53','2021-08-10 20:44:53',0,0,'104.140.20.132','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1004,1,NULL,'2021-08-10 21:51:32','2021-08-10 21:51:32',0,0,'174.55.108.223','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/92.0.4515.90 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1005,1,NULL,'2021-08-11 08:12:26','2021-08-11 08:12:26',0,0,'170.55.43.130','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1006,1,NULL,'2021-08-12 08:02:25','2021-08-12 08:02:25',0,0,'175.176.46.144','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1007,1,NULL,'2021-08-12 22:01:54','2021-08-12 22:01:54',0,0,'27.255.29.182','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1008,1,NULL,'2021-08-13 22:11:22','2021-08-13 22:11:22',0,0,'84.17.49.7','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1009,1,NULL,'2021-08-15 19:46:01','2021-08-15 19:46:01',0,0,'194.34.133.92','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1010,1,NULL,'2021-08-16 16:06:34','2021-08-16 16:06:34',0,0,'73.230.31.158','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 Edg/92.0.902.73','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1011,1,NULL,'2021-08-16 23:36:55','2021-08-16 23:36:55',0,0,'71.50.49.125','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1012,1,NULL,'2021-08-17 10:31:40','2021-08-17 10:31:40',0,0,'31.207.0.182','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1013,1,NULL,'2021-08-17 17:08:08','2021-08-17 17:08:08',0,0,'102.46.238.254','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1014,1,NULL,'2021-08-18 01:59:56','2021-08-18 01:59:56',0,0,'173.244.209.91','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1015,1,NULL,'2021-08-18 02:23:11','2021-08-18 02:23:11',0,0,'103.138.73.162','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; rv:50.0) Gecko/20100101 Firefox/50.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1016,1,NULL,'2021-08-18 09:01:36','2021-08-18 09:01:36',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4400.8 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1017,1,NULL,'2021-08-18 09:01:39','2021-08-18 09:01:39',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4427.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1018,1,NULL,'2021-08-18 19:50:43','2021-08-18 19:50:43',0,0,'37.120.143.62','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1019,1,NULL,'2021-08-21 01:29:21','2021-08-21 01:29:21',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1020,1,NULL,'2021-08-21 03:49:44','2021-08-21 03:49:44',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1021,1,NULL,'2021-08-21 09:27:06','2021-08-21 09:27:06',0,0,'5.181.233.154','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1022,1,NULL,'2021-08-21 12:21:23','2021-08-21 12:21:23',0,0,'46.148.206.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1023,1,NULL,'2021-08-21 23:32:52','2021-08-21 23:32:52',0,0,'46.148.206.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.42','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1024,1,NULL,'2021-08-22 21:27:41','2021-08-22 21:27:41',0,0,'5.188.48.217','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1025,1,NULL,'2021-08-22 21:40:05','2021-08-22 21:40:05',0,0,'192.40.57.56','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1026,1,NULL,'2021-08-23 00:30:24','2021-08-23 00:30:24',0,0,'156.146.63.160','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1027,1,NULL,'2021-08-23 14:40:23','2021-08-23 14:40:23',0,0,'76.5.123.78','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1028,1,NULL,'2021-08-24 01:23:53','2021-08-24 01:23:53',0,0,'45.133.172.229','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1029,1,NULL,'2021-08-24 01:47:19','2021-08-24 01:47:19',0,0,'175.158.101.224','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1030,1,NULL,'2021-08-24 19:00:49','2021-08-24 19:00:49',0,0,'89.46.114.35','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1031,1,NULL,'2021-08-24 23:21:08','2021-08-24 23:21:08',0,0,'92.100.150.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1032,1,NULL,'2021-08-25 17:49:50','2021-08-25 17:49:50',0,0,'191.102.152.39','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1033,1,NULL,'2021-08-25 17:50:56','2021-08-25 17:50:56',0,0,'191.101.31.21','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1034,1,NULL,'2021-08-26 07:03:20','2021-08-26 07:03:20',0,0,'107.175.35.163','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1035,1,NULL,'2021-08-26 13:30:25','2021-08-26 13:30:25',0,0,'2601:980:c380:3aa0:3c7c:be0a:2181:30a5','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1036,1,NULL,'2021-08-26 15:26:33','2021-08-26 15:26:33',0,0,'5.227.5.221','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1037,1,NULL,'2021-08-27 04:46:51','2021-08-27 04:46:51',0,0,'84.247.48.8','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1038,1,NULL,'2021-08-28 18:31:43','2021-08-28 18:31:43',0,0,'107.174.148.68','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1039,1,NULL,'2021-08-29 05:25:11','2021-08-29 05:25:11',0,0,'205.185.209.130','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1040,1,NULL,'2021-08-29 06:33:45','2021-08-29 06:33:45',0,0,'185.230.124.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1041,1,NULL,'2021-08-30 01:53:50','2021-08-30 01:53:50',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1042,1,NULL,'2021-08-30 03:57:37','2021-08-30 03:57:37',0,0,'37.120.143.149','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.42','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1043,1,NULL,'2021-08-30 09:20:01','2021-08-30 09:20:01',0,0,'190.2.131.167','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1044,1,NULL,'2021-08-30 20:08:22','2021-08-30 20:08:22',0,0,'191.101.31.199','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1045,1,NULL,'2021-08-31 02:09:36','2021-08-31 02:09:36',0,0,'37.120.143.149','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1046,1,NULL,'2021-09-01 09:21:04','2021-09-01 09:21:04',0,0,'188.122.82.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1047,1,NULL,'2021-09-01 13:22:02','2021-09-01 13:22:02',0,0,'23.95.219.93','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1048,1,NULL,'2021-09-01 20:12:57','2021-09-01 20:12:57',0,0,'8.20.65.4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36 Edg/92.0.902.84','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1049,1,NULL,'2021-09-01 20:22:27','2021-09-01 20:22:27',0,0,'107.175.36.100','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1050,1,NULL,'2021-09-02 10:25:20','2021-09-02 10:25:20',0,0,'172.245.252.199','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1051,1,NULL,'2021-09-03 08:50:53','2021-09-03 08:50:53',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1052,1,NULL,'2021-09-03 09:13:47','2021-09-03 09:13:47',0,0,'92.100.150.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1053,1,NULL,'2021-09-07 17:30:15','2021-09-07 17:30:15',0,0,'46.148.206.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1054,1,NULL,'2021-09-07 17:57:21','2021-09-07 17:57:21',0,0,'2601:980:c380:3aa0:a917:c1ae:a4fd:d25e','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1055,1,NULL,'2021-09-08 12:15:18','2021-09-08 12:15:18',0,0,'191.101.31.25','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1056,1,NULL,'2021-09-08 16:13:24','2021-09-08 16:13:24',0,0,'195.181.161.17','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1057,1,NULL,'2021-09-08 23:12:22','2021-09-08 23:12:22',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1058,1,NULL,'2021-09-09 13:54:07','2021-09-09 13:54:07',0,0,'86.106.74.249','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1059,1,NULL,'2021-09-10 18:12:05','2021-09-10 18:12:05',0,0,'138.128.77.108','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1060,1,NULL,'2021-09-11 06:20:12','2021-09-11 06:20:12',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1061,1,NULL,'2021-09-11 12:39:58','2021-09-11 12:39:58',0,0,'79.173.90.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1062,1,NULL,'2021-09-12 00:08:41','2021-09-12 00:08:41',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1063,1,NULL,'2021-09-14 19:15:45','2021-09-14 19:15:45',0,0,'64.250.229.2','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1064,1,NULL,'2021-09-16 01:55:40','2021-09-16 01:55:40',0,0,'74.5.152.124','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 Edg/93.0.961.47','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1065,1,NULL,'2021-09-16 02:17:31','2021-09-16 02:17:31',0,0,'185.210.217.253','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1066,1,NULL,'2021-09-16 10:09:15','2021-09-16 10:09:15',0,0,'94.198.42.86','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1067,1,NULL,'2021-09-16 10:45:46','2021-09-16 10:45:46',0,0,'191.101.31.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1068,1,NULL,'2021-09-16 13:45:28','2021-09-16 13:45:28',0,0,'181.215.176.127','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1069,1,NULL,'2021-09-16 21:07:59','2021-09-16 21:07:59',0,0,'58.65.176.201','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1070,1,NULL,'2021-09-18 08:34:51','2021-09-18 08:34:51',0,0,'192.40.57.59','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1071,1,NULL,'2021-09-18 15:19:07','2021-09-18 15:19:07',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1072,1,NULL,'2021-09-18 16:43:28','2021-09-18 16:43:28',0,0,'101.50.109.3','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1073,1,NULL,'2021-09-19 22:26:02','2021-09-19 22:26:02',0,0,'46.148.206.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.39','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1074,1,NULL,'2021-09-20 18:46:19','2021-09-20 18:46:19',0,0,'2600:387:c:5112::128','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1075,1,NULL,'2021-09-21 00:01:18','2021-09-21 00:01:18',0,0,'24.119.0.189','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1076,1,NULL,'2021-09-21 20:37:21','2021-09-21 20:37:21',0,0,'212.102.57.205','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1077,1,NULL,'2021-09-21 21:19:18','2021-09-21 21:19:18',0,0,'138.199.59.138','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1078,1,NULL,'2021-09-22 13:35:44','2021-09-22 13:35:44',0,0,'84.247.48.10','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1079,1,NULL,'2021-09-22 21:02:09','2021-09-22 21:02:09',0,0,'212.102.57.205','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1080,1,NULL,'2021-09-23 17:36:23','2021-09-23 17:36:23',0,0,'168.151.228.83','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1081,1,NULL,'2021-09-24 07:02:26','2021-09-24 07:02:26',0,0,'212.102.57.205','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1082,1,NULL,'2021-09-24 11:10:42','2021-09-24 11:10:42',0,0,'95.55.39.41','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1083,1,NULL,'2021-09-24 14:56:00','2021-09-24 14:56:00',0,0,'5.227.5.175','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1084,1,NULL,'2021-09-25 18:12:27','2021-09-25 18:12:27',0,0,'173.244.209.91','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1085,1,NULL,'2021-09-25 22:56:38','2021-09-25 22:56:38',0,0,'212.102.57.15','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4400.8 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1086,1,NULL,'2021-09-26 00:52:29','2021-09-26 00:52:29',0,0,'49.149.76.189','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1087,1,NULL,'2021-09-26 15:21:48','2021-09-26 15:21:48',0,0,'77.222.117.245','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.86 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1088,1,NULL,'2021-09-26 19:58:29','2021-09-26 19:58:29',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1089,1,NULL,'2021-09-27 20:11:33','2021-09-27 20:11:33',0,0,'182.187.48.20','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1090,1,NULL,'2021-09-28 06:43:36','2021-09-28 06:43:36',0,0,'195.181.161.6','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1091,1,NULL,'2021-09-28 15:50:53','2021-09-28 15:50:53',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1092,1,NULL,'2021-09-30 16:01:39','2021-09-30 16:01:39',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1093,1,NULL,'2021-09-30 21:02:17','2021-09-30 21:02:17',0,0,'46.148.206.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1094,1,NULL,'2021-10-01 18:37:19','2021-10-01 18:37:19',0,0,'2.56.101.35','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1095,1,NULL,'2021-10-01 18:52:37','2021-10-01 18:52:37',0,0,'174.55.103.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1096,1,NULL,'2021-10-01 20:29:05','2021-10-01 20:29:05',0,0,'138.199.18.137','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1097,1,NULL,'2021-10-01 21:47:57','2021-10-01 21:47:57',0,0,'95.55.39.41','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1098,1,NULL,'2021-10-03 20:58:55','2021-10-03 20:58:55',0,0,'212.102.57.207','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1099,1,NULL,'2021-10-04 11:14:38','2021-10-04 11:14:38',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1100,1,NULL,'2021-10-05 00:03:15','2021-10-05 00:03:15',0,0,'91.219.212.206','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1101,1,NULL,'2021-10-05 15:52:42','2021-10-05 15:52:42',0,0,'191.96.5.180','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1102,1,NULL,'2021-10-05 16:03:00','2021-10-05 16:03:00',0,0,'73.230.87.150','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_8 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/94.0.4606.52 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1103,1,NULL,'2021-10-05 20:26:14','2021-10-05 20:26:14',0,0,'212.102.57.207','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1104,1,NULL,'2021-10-05 22:28:44','2021-10-05 22:28:44',0,0,'68.13.178.190','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 5.1; rv:47.0) Gecko/20100101 Firefox/47.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1105,1,NULL,'2021-10-06 09:46:48','2021-10-06 09:46:48',0,0,'37.19.223.25','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1106,1,NULL,'2021-10-07 06:52:49','2021-10-07 06:52:49',0,0,'103.217.178.209','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1107,1,NULL,'2021-10-07 09:42:33','2021-10-07 09:42:33',0,0,'74.93.107.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:46.0) Gecko/20100101 Firefox/46.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1108,1,NULL,'2021-10-07 17:02:40','2021-10-07 17:02:40',0,0,'156.146.38.150','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1109,1,NULL,'2021-10-08 00:45:31','2021-10-08 00:45:31',0,0,'151.80.46.106','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1110,1,NULL,'2021-10-08 14:23:09','2021-10-08 14:23:09',0,0,'185.189.114.116','https://www.mannplumbingandheating.com/contact-us/','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','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1111,1,NULL,'2021-10-08 16:03:00','2021-10-08 16:03:00',0,0,'45.133.179.150','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1112,1,NULL,'2021-10-08 21:05:07','2021-10-08 21:05:07',0,0,'72.11.157.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1113,1,NULL,'2021-10-09 19:10:18','2021-10-09 19:10:18',0,0,'71.50.46.169','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1114,1,NULL,'2021-10-09 22:24:27','2021-10-09 22:24:27',0,0,'212.102.57.216','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1115,1,NULL,'2021-10-10 17:49:45','2021-10-10 17:49:45',0,0,'2600:1003:b0de:802e:7829:73b2:cba:3ee','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1116,1,NULL,'2021-10-10 21:11:57','2021-10-10 21:11:57',0,0,'77.222.115.111','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1117,1,NULL,'2021-10-12 10:30:41','2021-10-12 10:30:41',0,0,'5.62.63.113','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1118,1,NULL,'2021-10-12 15:20:58','2021-10-12 15:20:58',0,0,'173.13.220.49','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1119,1,NULL,'2021-10-13 16:40:07','2021-10-13 16:40:07',0,0,'88.218.172.93','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1120,1,NULL,'2021-10-14 01:17:38','2021-10-14 01:17:38',0,0,'191.101.31.221','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1121,1,NULL,'2021-10-14 07:18:13','2021-10-14 07:18:13',0,0,'107.175.26.106','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1122,1,NULL,'2021-10-14 16:07:21','2021-10-14 16:07:21',0,0,'2601:982:8202:7f40:8d6a:5182:b326:1147','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 11; SM-N970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.85 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1123,1,NULL,'2021-10-15 02:26:50','2021-10-15 02:26:50',0,0,'188.35.131.246','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1124,1,NULL,'2021-10-15 14:51:59','2021-10-15 14:51:59',0,0,'85.208.115.22','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1125,1,NULL,'2021-10-15 15:04:10','2021-10-15 15:04:10',0,0,'146.120.229.34','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1126,1,NULL,'2021-10-16 06:55:37','2021-10-16 06:55:37',0,0,'162.212.173.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1127,1,NULL,'2021-10-17 09:25:13','2021-10-17 09:25:13',0,0,'212.102.57.97','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.39','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1128,1,NULL,'2021-10-17 11:18:54','2021-10-17 11:18:54',0,0,'77.222.113.111','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1129,1,NULL,'2021-10-18 16:37:27','2021-10-18 16:37:27',0,0,'5.157.14.158','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1130,1,NULL,'2021-10-18 18:46:08','2021-10-18 18:46:08',0,0,'2601:980:c101:9170:c940:ac94:1bfb:c877','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1131,1,NULL,'2021-10-18 19:21:12','2021-10-18 19:21:12',0,0,'75.18.223.200','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:46.0) Gecko/20100101 Firefox/46.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1132,1,NULL,'2021-10-19 12:19:51','2021-10-19 12:19:51',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1133,1,NULL,'2021-10-19 12:26:51','2021-10-19 12:26:51',0,0,'204.156.71.61','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1134,1,NULL,'2021-10-19 15:15:36','2021-10-19 15:15:36',0,0,'98.121.168.107','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1135,1,NULL,'2021-10-20 00:02:59','2021-10-20 00:02:59',0,0,'138.199.59.155','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1136,1,NULL,'2021-10-20 01:04:58','2021-10-20 01:04:58',0,0,'73.52.60.132','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:93.0) Gecko/20100101 Firefox/93.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1137,1,NULL,'2021-10-20 05:29:05','2021-10-20 05:29:05',0,0,'2001:558:6007:3b:1c76:a2a1:de66:6e9','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko/20100101 Firefox/54.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1138,1,NULL,'2021-10-20 10:06:25','2021-10-20 10:06:25',0,0,'196.196.246.192','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1139,1,NULL,'2021-10-20 11:19:49','2021-10-20 11:19:49',0,0,'85.203.45.165','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1140,1,NULL,'2021-10-20 13:31:19','2021-10-20 13:31:19',0,0,'119.73.117.1','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1141,1,NULL,'2021-10-20 13:36:21','2021-10-20 13:36:21',0,0,'162.253.131.147','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1142,1,NULL,'2021-10-20 18:51:27','2021-10-20 18:51:27',0,0,'138.199.7.130','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1143,1,NULL,'2021-10-20 23:35:27','2021-10-20 23:35:27',0,0,'77.81.139.46','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1144,1,NULL,'2021-10-21 09:40:50','2021-10-21 09:40:50',0,0,'138.199.7.130','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1145,1,NULL,'2021-10-21 17:18:45','2021-10-21 17:18:45',0,0,'196.240.109.99','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1146,1,NULL,'2021-10-21 21:19:37','2021-10-21 21:19:37',0,0,'45.133.172.94','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1147,1,NULL,'2021-10-21 22:40:34','2021-10-21 22:40:34',0,0,'138.199.7.142','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1148,1,NULL,'2021-10-22 02:11:09','2021-10-22 02:11:09',0,0,'2601:980:c200:16f0:599f:56cc:ffa7:5f3f','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/94.0.4606.76 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1149,1,NULL,'2021-10-22 12:29:29','2021-10-22 12:29:29',0,0,'138.199.7.142','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1150,1,NULL,'2021-10-22 17:27:39','2021-10-22 17:27:39',0,0,'27.255.29.182','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1151,1,NULL,'2021-10-22 19:00:33','2021-10-22 19:00:33',0,0,'92.255.206.9','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.42','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1152,1,NULL,'2021-10-22 22:55:18','2021-10-22 22:55:18',0,0,'27.255.29.182','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1153,1,NULL,'2021-10-23 20:51:55','2021-10-23 20:51:55',0,0,'85.208.115.234','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1154,1,NULL,'2021-10-24 01:38:38','2021-10-24 01:38:38',0,0,'45.133.172.94','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1155,1,NULL,'2021-10-25 05:45:19','2021-10-25 05:45:19',0,0,'77.222.113.111','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1156,1,NULL,'2021-10-25 22:30:28','2021-10-25 22:30:28',0,0,'188.126.79.23','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1157,1,NULL,'2021-10-25 22:58:04','2021-10-25 22:58:04',0,0,'146.120.229.46','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1158,1,NULL,'2021-10-26 09:01:53','2021-10-26 09:01:53',0,0,'85.203.45.70','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1159,1,NULL,'2021-10-27 10:17:19','2021-10-27 10:17:19',0,0,'146.120.229.248','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1160,1,NULL,'2021-10-27 13:18:58','2021-10-27 13:18:58',0,0,'212.102.40.3','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1161,1,NULL,'2021-10-27 15:36:18','2021-10-27 15:36:18',0,0,'119.73.121.166','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1162,1,NULL,'2021-10-27 15:38:37','2021-10-27 15:38:37',0,0,'119.73.121.166','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1163,1,NULL,'2021-10-27 21:15:26','2021-10-27 21:15:26',0,0,'136.226.53.80','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1164,1,NULL,'2021-10-28 03:01:21','2021-10-28 03:01:21',0,0,'146.120.229.74','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1165,1,NULL,'2021-10-29 07:06:02','2021-10-29 07:06:02',0,0,'146.120.229.77','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1166,1,NULL,'2021-10-29 21:48:18','2021-10-29 21:48:18',0,0,'73.175.51.80','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1167,1,NULL,'2021-10-30 08:02:47','2021-10-30 08:02:47',0,0,'103.76.164.13','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1168,1,NULL,'2021-10-30 12:42:20','2021-10-30 12:42:20',0,0,'146.120.229.46','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1169,1,NULL,'2021-10-30 13:48:52','2021-10-30 13:48:52',0,0,'46.148.206.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1170,1,NULL,'2021-10-30 15:23:45','2021-10-30 15:23:45',0,0,'5.62.57.71','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1171,1,NULL,'2021-10-30 17:51:53','2021-10-30 17:51:53',0,0,'138.199.56.229','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1172,1,NULL,'2021-10-31 03:41:42','2021-10-31 03:41:42',0,0,'191.101.31.66','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4427.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1173,1,NULL,'2021-10-31 20:24:49','2021-10-31 20:24:49',0,0,'146.120.229.91','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1174,1,NULL,'2021-11-01 00:22:56','2021-11-01 00:22:56',0,0,'2601:980:c102:e400:8c4a:9a55:2f39:2f8e','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_8 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1175,1,NULL,'2021-11-01 12:34:03','2021-11-01 12:34:03',0,0,'2600:387:3:805::2a','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 11; SM-N975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.85 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1176,1,NULL,'2021-11-02 01:03:46','2021-11-02 01:03:46',0,0,'66.153.170.138','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (X11; CrOS aarch64 14150.64.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.104 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1177,1,NULL,'2021-11-02 04:03:00','2021-11-02 04:03:00',0,0,'106.212.169.163','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1178,1,NULL,'2021-11-02 15:20:44','2021-11-02 15:20:44',0,0,'77.222.113.111','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1179,1,NULL,'2021-11-03 14:12:50','2021-11-03 14:12:50',0,0,'2601:980:c000:5f40:59ac:69c7:4c5d:8e1','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_8 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1180,1,NULL,'2021-11-03 19:30:18','2021-11-03 19:30:18',0,0,'207.244.118.239','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1181,1,NULL,'2021-11-04 09:18:30','2021-11-04 09:18:30',0,0,'212.102.57.90','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1182,1,NULL,'2021-11-04 15:42:49','2021-11-04 15:42:49',0,0,'85.203.45.12','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1183,1,NULL,'2021-11-04 16:39:45','2021-11-04 16:39:45',0,0,'37.19.223.99','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1184,1,NULL,'2021-11-04 17:00:04','2021-11-04 17:00:04',0,0,'198.98.183.151','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1185,1,NULL,'2021-11-04 22:07:39','2021-11-04 22:07:39',0,0,'156.146.63.141','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1186,1,NULL,'2021-11-05 19:10:35','2021-11-05 19:10:35',0,0,'2601:982:8202:7f40:edad:cd2:2e27:149e','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 11; SM-N970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.74 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1187,1,NULL,'2021-11-05 19:49:07','2021-11-05 19:49:07',0,0,'64.44.131.97','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1188,1,NULL,'2021-11-06 09:00:54','2021-11-06 09:00:54',0,0,'138.199.7.148','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1189,1,NULL,'2021-11-07 13:03:18','2021-11-07 13:03:18',0,0,'92.38.136.69','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1190,1,NULL,'2021-11-08 10:24:09','2021-11-08 10:24:09',0,0,'39.35.215.83','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1191,1,NULL,'2021-11-08 11:27:57','2021-11-08 11:27:57',0,0,'2601:982:4200:e940:9eb:24bc:1d50:2ff2','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1192,1,NULL,'2021-11-08 12:26:24','2021-11-08 12:26:24',0,0,'75.165.88.163','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:94.0) Gecko/20100101 Firefox/94.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1193,1,NULL,'2021-11-08 15:26:25','2021-11-08 15:26:25',0,0,'5.8.16.235','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4096.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1194,1,NULL,'2021-11-08 21:13:16','2021-11-08 21:13:16',0,0,'156.146.63.6','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4427.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1195,1,NULL,'2021-11-08 23:31:36','2021-11-08 23:31:36',0,0,'185.85.163.242','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1196,1,NULL,'2021-11-09 01:58:56','2021-11-09 01:58:56',0,0,'197.215.22.90','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1197,1,NULL,'2021-11-09 12:25:50','2021-11-09 12:25:50',0,0,'2601:980:c102:7db0:98a5:e243:dfc3:be23','https://www.mannplumbingandheating.com/contact-us/?gclid=CjwKCAiA1aiMBhAUEiwACw25MWAZjdiCyuDOdYx_vvzlosk_c8goEM1R04UuE6gmhZJ7UPZIBrdAuxoCjykQAvD_BwE','Mozilla/5.0 (Linux; Android 9; LM-X420) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.74 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1198,1,NULL,'2021-11-09 17:22:57','2021-11-09 17:22:57',0,0,'170.244.94.130','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1199,1,NULL,'2021-11-09 20:10:04','2021-11-09 20:10:04',0,0,'195.181.161.17','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1200,1,NULL,'2021-11-10 07:44:56','2021-11-10 07:44:56',0,0,'138.199.7.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1201,1,NULL,'2021-11-10 19:19:23','2021-11-10 19:19:23',0,0,'191.101.31.46','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1202,1,NULL,'2021-11-11 00:37:41','2021-11-11 00:37:41',0,0,'112.198.123.225','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1203,1,NULL,'2021-11-11 03:27:28','2021-11-11 03:27:28',0,0,'190.2.130.167','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1204,1,NULL,'2021-11-11 04:21:54','2021-11-11 04:21:54',0,0,'190.2.130.167','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1205,1,NULL,'2021-11-11 11:29:04','2021-11-11 11:29:04',0,0,'46.148.206.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1206,1,NULL,'2021-11-12 01:45:54','2021-11-12 01:45:54',0,0,'146.120.229.25','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1207,1,NULL,'2021-11-12 07:21:30','2021-11-12 07:21:30',0,0,'172.94.16.143','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:43.0) Gecko/20100101 Firefox/43.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1208,1,NULL,'2021-11-12 13:06:55','2021-11-12 13:06:55',0,0,'79.173.83.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1209,1,NULL,'2021-11-12 18:38:09','2021-11-12 18:38:09',0,0,'138.199.59.133','https://www.mannplumbingandheating.com/contact-us/','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','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1210,1,NULL,'2021-11-14 02:45:03','2021-11-14 02:45:03',0,0,'174.247.80.171','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 11; SM-S102DL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.74 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1211,1,NULL,'2021-11-14 08:20:52','2021-11-14 08:20:52',0,0,'79.173.83.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.86 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1212,1,NULL,'2021-11-14 18:28:40','2021-11-14 18:28:40',0,0,'146.120.229.46','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1213,1,NULL,'2021-11-15 13:40:29','2021-11-15 13:40:29',0,0,'103.217.178.46','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1214,1,NULL,'2021-11-15 14:14:36','2021-11-15 14:14:36',0,0,'73.64.206.92','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1215,1,NULL,'2021-11-15 20:37:23','2021-11-15 20:37:23',0,0,'49.144.148.60','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 Edg/95.0.1020.53','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1216,1,NULL,'2021-11-16 02:54:41','2021-11-16 02:54:41',0,0,'2401:4900:5aa9:9230:fdb0:75a:bf:6014','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1217,1,NULL,'2021-11-16 16:55:45','2021-11-16 16:55:45',0,0,'84.247.48.13','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1218,1,NULL,'2021-11-16 20:58:15','2021-11-16 20:58:15',0,0,'198.134.109.134','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1219,1,NULL,'2021-11-17 08:43:10','2021-11-17 08:43:10',0,0,'117.221.168.202','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:94.0) Gecko/20100101 Firefox/94.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1220,1,NULL,'2021-11-17 15:13:57','2021-11-17 15:13:57',0,0,'70.173.27.51','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1221,1,NULL,'2021-11-17 15:50:45','2021-11-17 15:50:45',0,0,'122.2.250.34','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 Edg/95.0.1020.53','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1222,1,NULL,'2021-11-17 20:31:49','2021-11-17 20:31:49',0,0,'136.158.82.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1223,1,NULL,'2021-11-18 03:10:20','2021-11-18 03:10:20',0,0,'5.62.43.109','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1224,1,NULL,'2021-11-20 18:03:23','2021-11-20 18:03:23',0,0,'156.146.63.155','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1225,1,NULL,'2021-11-20 20:04:12','2021-11-20 20:04:12',0,0,'23.83.130.20','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1226,1,NULL,'2021-11-21 02:07:57','2021-11-21 02:07:57',0,0,'185.177.230.249','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1227,1,NULL,'2021-11-21 05:19:20','2021-11-21 05:19:20',0,0,'91.122.98.3','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1228,1,NULL,'2021-11-21 17:59:34','2021-11-21 17:59:34',0,0,'75.165.100.149','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 Edg/95.0.1020.53','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1229,1,NULL,'2021-11-22 10:21:20','2021-11-22 10:21:20',0,0,'31.171.152.139','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1230,1,NULL,'2021-11-22 13:16:43','2021-11-22 13:16:43',0,0,'2001:4451:128e:e100:5af:632c:ce8d:bfb0','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1231,1,NULL,'2021-11-22 15:14:51','2021-11-22 15:14:51',0,0,'91.90.122.159','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1232,1,NULL,'2021-11-23 01:02:36','2021-11-23 01:02:36',0,0,'194.36.98.135','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1233,1,NULL,'2021-11-23 15:49:04','2021-11-23 15:49:04',0,0,'138.199.7.136','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1234,1,NULL,'2021-11-25 04:49:32','2021-11-25 04:49:32',0,0,'84.17.47.117','https://www.mannplumbingandheating.com/contact-us/','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.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1235,1,NULL,'2021-11-25 13:43:36','2021-11-25 13:43:36',0,0,'49.83.22.126','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1236,1,NULL,'2021-11-27 00:06:26','2021-11-27 00:06:26',0,0,'104.186.73.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1237,1,NULL,'2021-11-27 20:59:32','2021-11-27 20:59:32',0,0,'156.146.63.25','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4400.8 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1238,1,NULL,'2021-11-28 02:50:07','2021-11-28 02:50:07',0,0,'91.76.161.22','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1239,1,NULL,'2021-11-28 20:44:58','2021-11-28 20:44:58',0,0,'191.101.31.45','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1240,1,NULL,'2021-11-29 18:38:10','2021-11-29 18:38:10',0,0,'168.91.84.86','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1241,1,NULL,'2021-11-30 04:38:12','2021-11-30 04:38:12',0,0,'162.253.68.190','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1242,1,NULL,'2021-11-30 13:53:57','2021-11-30 13:53:57',0,0,'84.17.52.7','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1243,1,NULL,'2021-11-30 14:08:29','2021-11-30 14:08:29',0,0,'191.101.31.23','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1244,1,NULL,'2021-11-30 19:41:15','2021-11-30 19:41:15',0,0,'35.175.38.203','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1245,1,NULL,'2021-12-01 08:26:25','2021-12-01 08:26:25',0,0,'156.146.63.17','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1246,1,NULL,'2021-12-01 14:42:27','2021-12-01 14:42:27',0,0,'185.177.231.17','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1247,1,NULL,'2021-12-01 19:16:04','2021-12-01 19:16:04',0,0,'138.186.138.154','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1248,1,NULL,'2021-12-02 09:10:03','2021-12-02 09:10:03',0,0,'79.173.83.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1249,1,NULL,'2021-12-03 11:54:13','2021-12-03 11:54:13',0,0,'207.244.71.84','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1250,1,NULL,'2021-12-03 16:23:35','2021-12-03 16:23:35',0,0,'37.19.223.101','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1251,1,NULL,'2021-12-04 06:46:13','2021-12-04 06:46:13',0,0,'195.140.176.64','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1252,1,NULL,'2021-12-05 00:03:40','2021-12-05 00:03:40',0,0,'191.101.31.17','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1253,1,NULL,'2021-12-05 15:55:21','2021-12-05 15:55:21',0,0,'37.120.232.67','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1254,1,NULL,'2021-12-06 00:09:15','2021-12-06 00:09:15',0,0,'178.65.138.118','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1255,1,NULL,'2021-12-06 13:29:06','2021-12-06 13:29:06',0,0,'202.166.175.210','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1256,1,NULL,'2021-12-06 14:21:26','2021-12-06 14:21:26',0,0,'2400:adc5:1e5:2400:611d:5807:237b:3cb8','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1257,1,NULL,'2021-12-06 14:25:14','2021-12-06 14:25:14',0,0,'2400:adc5:1e5:2400:611d:5807:237b:3cb8','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1258,1,NULL,'2021-12-06 17:19:37','2021-12-06 17:19:37',0,0,'178.239.56.68','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1259,1,NULL,'2021-12-07 04:03:20','2021-12-07 04:03:20',0,0,'191.101.31.17','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1260,1,NULL,'2021-12-08 09:06:30','2021-12-08 09:06:30',0,0,'112.211.63.22','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1261,1,NULL,'2021-12-08 10:08:20','2021-12-08 10:08:20',0,0,'42.201.159.26','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1262,1,NULL,'2021-12-08 16:31:19','2021-12-08 16:31:19',0,0,'202.5.146.81','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1263,1,NULL,'2021-12-08 17:16:54','2021-12-08 17:16:54',0,0,'178.239.56.95','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1264,1,NULL,'2021-12-08 19:47:03','2021-12-08 19:47:03',0,0,'192.173.189.37','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1265,1,NULL,'2021-12-09 15:39:44','2021-12-09 15:39:44',0,0,'209.58.133.172','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1266,1,NULL,'2021-12-09 17:48:26','2021-12-09 17:48:26',0,0,'195.181.161.19','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1267,1,NULL,'2021-12-10 06:06:18','2021-12-10 06:06:18',0,0,'89.38.97.125','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1268,1,NULL,'2021-12-11 13:12:02','2021-12-11 13:12:02',0,0,'71.58.184.157','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1269,1,NULL,'2021-12-12 01:44:18','2021-12-12 01:44:18',0,0,'185.177.230.245','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1270,1,NULL,'2021-12-12 14:48:04','2021-12-12 14:48:04',0,0,'212.102.57.99','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1271,1,NULL,'2021-12-13 19:33:27','2021-12-13 19:33:27',0,0,'2601:980:c100:3d10:e91b:984f:d72c:64e','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1272,1,NULL,'2021-12-14 05:54:05','2021-12-14 05:54:05',0,0,'84.247.48.4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1273,1,NULL,'2021-12-15 03:34:28','2021-12-15 03:34:28',0,0,'109.248.148.244','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1274,1,NULL,'2021-12-15 10:10:15','2021-12-15 10:10:15',0,0,'76.22.195.157','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1275,1,NULL,'2021-12-15 18:56:42','2021-12-15 18:56:42',0,0,'196.196.47.81','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1276,1,NULL,'2021-12-16 02:58:02','2021-12-16 02:58:02',0,0,'184.20.128.37','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1277,1,NULL,'2021-12-16 11:26:50','2021-12-16 11:26:50',0,0,'146.70.52.19','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1278,1,NULL,'2021-12-17 17:35:33','2021-12-17 17:35:33',0,0,'79.173.83.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1279,1,NULL,'2021-12-19 00:34:59','2021-12-19 00:34:59',0,0,'188.72.101.174','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1280,1,NULL,'2021-12-19 12:34:58','2021-12-19 12:34:58',0,0,'185.107.80.192','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1281,1,NULL,'2021-12-19 16:29:47','2021-12-19 16:29:47',0,0,'156.146.63.148','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1282,1,NULL,'2021-12-20 18:31:48','2021-12-20 18:31:48',0,0,'178.239.56.74','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1283,1,NULL,'2021-12-20 20:26:57','2021-12-20 20:26:57',0,0,'154.28.188.93','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1284,1,NULL,'2021-12-21 08:58:28','2021-12-21 08:58:28',0,0,'120.78.221.31','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1285,1,NULL,'2021-12-21 20:41:29','2021-12-21 20:41:29',0,0,'27.0.158.179','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1286,1,NULL,'2021-12-22 13:26:53','2021-12-22 13:26:53',0,0,'107.181.180.176','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1287,1,NULL,'2021-12-23 05:53:22','2021-12-23 05:53:22',0,0,'50.3.192.131','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1288,1,NULL,'2021-12-23 09:24:57','2021-12-23 09:24:57',0,0,'37.19.223.200','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1289,1,NULL,'2021-12-23 20:58:45','2021-12-23 20:58:45',0,0,'65.49.2.44','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1290,1,NULL,'2021-12-25 21:17:00','2021-12-25 21:17:00',0,0,'79.173.83.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1291,1,NULL,'2021-12-25 23:36:00','2021-12-25 23:36:00',0,0,'79.173.83.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1292,1,NULL,'2021-12-26 02:53:45','2021-12-26 02:53:45',0,0,'191.101.217.39','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.86 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1293,1,NULL,'2021-12-27 01:15:09','2021-12-27 01:15:09',0,0,'5.164.204.227','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1294,1,NULL,'2021-12-27 04:55:39','2021-12-27 04:55:39',0,0,'176.31.253.157','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1295,1,NULL,'2021-12-27 16:14:03','2021-12-27 16:14:03',0,0,'50.77.108.142','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1296,1,NULL,'2021-12-27 18:06:09','2021-12-27 18:06:09',0,0,'143.244.51.159','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1297,1,NULL,'2021-12-27 23:22:59','2021-12-27 23:22:59',0,0,'37.19.223.238','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1298,1,NULL,'2021-12-28 01:16:24','2021-12-28 01:16:24',0,0,'2601:980:c100:cb60:7dc4:344:cb16:3c29','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_8_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1299,1,NULL,'2021-12-28 04:23:45','2021-12-28 04:23:45',0,0,'190.2.132.128','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1300,1,NULL,'2021-12-29 16:44:07','2021-12-29 16:44:07',0,0,'2605:6440:4014::6761','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1301,1,NULL,'2021-12-29 17:08:31','2021-12-29 17:08:31',0,0,'198.23.247.227','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1302,1,NULL,'2021-12-30 18:13:23','2021-12-30 18:13:23',0,0,'185.229.243.49','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1303,1,NULL,'2022-01-01 03:08:27','2022-01-01 03:08:27',0,0,'168.90.97.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1304,1,NULL,'2022-01-01 04:13:15','2022-01-01 04:13:15',0,0,'154.16.192.168','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1305,1,NULL,'2022-01-01 15:06:24','2022-01-01 15:06:24',0,0,'212.102.33.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1306,1,NULL,'2022-01-02 13:11:16','2022-01-02 13:11:16',0,0,'185.229.243.49','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1307,1,NULL,'2022-01-06 01:44:27','2022-01-06 01:44:27',0,0,'196.242.84.168','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1308,1,NULL,'2022-01-06 03:45:03','2022-01-06 03:45:03',0,0,'85.159.237.74','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1309,1,NULL,'2022-01-06 07:35:39','2022-01-06 07:35:39',0,0,'77.234.44.158','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1310,1,NULL,'2022-01-06 16:52:10','2022-01-06 16:52:10',0,0,'79.173.83.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1311,1,NULL,'2022-01-07 01:59:21','2022-01-07 01:59:21',0,0,'173.49.246.41','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1312,1,NULL,'2022-01-07 18:32:37','2022-01-07 18:32:37',0,0,'138.199.56.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1313,1,NULL,'2022-01-08 16:37:18','2022-01-08 16:37:18',0,0,'146.70.72.131','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1314,1,NULL,'2022-01-08 17:15:51','2022-01-08 17:15:51',0,0,'212.102.40.16','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1315,1,NULL,'2022-01-09 00:04:47','2022-01-09 00:04:47',0,0,'162.253.68.223','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1316,1,NULL,'2022-01-09 04:54:58','2022-01-09 04:54:58',0,0,'168.90.97.132','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1317,1,NULL,'2022-01-09 16:14:51','2022-01-09 16:14:51',0,0,'77.247.178.182','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1318,1,NULL,'2022-01-11 20:13:40','2022-01-11 20:13:40',0,0,'138.199.59.169','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1319,1,NULL,'2022-01-11 20:51:18','2022-01-11 20:51:18',0,0,'8.20.65.4','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36 Edg/96.0.1054.62','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1320,1,NULL,'2022-01-12 01:29:28','2022-01-12 01:29:28',0,0,'192.40.57.56','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4400.8 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1321,1,NULL,'2022-01-12 12:38:26','2022-01-12 12:38:26',0,0,'185.206.224.201','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1322,1,NULL,'2022-01-13 05:27:11','2022-01-13 05:27:11',0,0,'104.144.240.119','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1323,1,NULL,'2022-01-13 14:51:32','2022-01-13 14:51:32',0,0,'103.84.71.142','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1324,1,NULL,'2022-01-13 17:57:57','2022-01-13 17:57:57',0,0,'216.107.129.114','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1325,1,NULL,'2022-01-13 22:11:01','2022-01-13 22:11:01',0,0,'72.255.40.99','https://www.mannplumbingandheating.com/contact-us/?ref=leadstal.com','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1326,1,NULL,'2022-01-14 17:39:53','2022-01-14 17:39:53',0,0,'119.153.147.173','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1327,1,NULL,'2022-01-15 02:22:20','2022-01-15 02:22:20',0,0,'156.146.63.156','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1328,1,NULL,'2022-01-15 02:44:47','2022-01-15 02:44:47',0,0,'168.90.97.146','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1329,1,NULL,'2022-01-15 06:33:17','2022-01-15 06:33:17',0,0,'84.247.48.62','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1330,1,NULL,'2022-01-15 14:09:51','2022-01-15 14:09:51',0,0,'98.235.27.222','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 12; SM-F926U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.87 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1331,1,NULL,'2022-01-15 23:03:51','2022-01-15 23:03:51',0,0,'156.146.63.156','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1332,1,NULL,'2022-01-16 09:30:55','2022-01-16 09:30:55',0,0,'2601:980:c100:e887:fd31:73fa:d592:201b','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1333,1,NULL,'2022-01-16 13:27:07','2022-01-16 13:27:07',0,0,'168.90.97.135','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1334,1,NULL,'2022-01-16 18:08:12','2022-01-16 18:08:12',0,0,'156.146.63.156','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1335,1,NULL,'2022-01-17 06:34:07','2022-01-17 06:34:07',0,0,'41.75.187.134','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1336,1,NULL,'2022-01-17 14:07:23','2022-01-17 14:07:23',0,0,'2601:980:c380:4570:6585:c0d2:7b1b:d359','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1337,1,NULL,'2022-01-17 19:29:26','2022-01-17 19:29:26',0,0,'73.230.87.137','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/19B74 [FBAN/FBIOS;FBDV/iPhone12,3;FBMD/iPhone;FBSN/iOS;FBSV/15.1;FBSS/3;FBID/phone;FBLC/en_US;FBOP/5]','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1338,1,NULL,'2022-01-18 01:54:08','2022-01-18 01:54:08',0,0,'191.101.31.24','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1339,1,NULL,'2022-01-18 08:37:58','2022-01-18 08:37:58',0,0,'138.122.195.158','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1340,1,NULL,'2022-01-18 08:56:18','2022-01-18 08:56:18',0,0,'84.17.48.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1341,1,NULL,'2022-01-18 16:43:47','2022-01-18 16:43:47',0,0,'5.164.216.11','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1342,1,NULL,'2022-01-18 18:50:56','2022-01-18 18:50:56',0,0,'45.83.143.97','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1343,1,NULL,'2022-01-19 00:42:46','2022-01-19 00:42:46',0,0,'2603:3007:90b:100:def:7e56:3f87:9835','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1344,1,NULL,'2022-01-19 01:38:36','2022-01-19 01:38:36',0,0,'104.144.245.205','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1345,1,NULL,'2022-01-19 16:50:40','2022-01-19 16:50:40',0,0,'162.253.68.212','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1346,1,NULL,'2022-01-19 23:04:24','2022-01-19 23:04:24',0,0,'191.101.31.24','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1347,1,NULL,'2022-01-20 17:36:12','2022-01-20 17:36:12',0,0,'185.107.95.213','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1348,1,NULL,'2022-01-21 01:23:44','2022-01-21 01:23:44',0,0,'85.159.237.75','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1349,1,NULL,'2022-01-21 14:26:57','2022-01-21 14:26:57',0,0,'72.255.40.92','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1350,1,NULL,'2022-01-22 03:49:56','2022-01-22 03:49:56',0,0,'104.227.170.24','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1351,1,NULL,'2022-01-22 20:12:43','2022-01-22 20:12:43',0,0,'192.40.57.59','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1352,1,NULL,'2022-01-22 20:41:39','2022-01-22 20:41:39',0,0,'2601:980:c380:3150:6848:5509:b373:bc60','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Linux; Android 11; SM-G973U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.87 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1353,1,NULL,'2022-01-23 10:57:21','2022-01-23 10:57:21',0,0,'23.236.217.175','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1354,1,NULL,'2022-01-24 11:47:58','2022-01-24 11:47:58',0,0,'136.0.61.3','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1355,1,NULL,'2022-01-24 19:17:17','2022-01-24 19:17:17',0,0,'185.252.222.66','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1356,1,NULL,'2022-01-24 21:22:01','2022-01-24 21:22:01',0,0,'2600:1002:b1d2:a4bc:9465:7379:8273:bd42','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1357,1,NULL,'2022-01-24 21:31:20','2022-01-24 21:31:20',0,0,'2600:1002:b1d2:a4bc:9465:7379:8273:bd42','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1358,1,NULL,'2022-01-25 00:27:28','2022-01-25 00:27:28',0,0,'89.187.168.168','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 Kinza/4.9.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1359,1,NULL,'2022-01-25 07:54:57','2022-01-25 07:54:57',0,0,'103.112.0.230','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1360,1,NULL,'2022-01-25 23:41:02','2022-01-25 23:41:02',0,0,'190.2.132.157','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1361,1,NULL,'2022-01-27 17:08:28','2022-01-27 17:08:28',0,0,'5.253.205.153','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1362,1,NULL,'2022-01-27 18:23:47','2022-01-27 18:23:47',0,0,'23.250.2.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1363,1,NULL,'2022-01-27 22:35:59','2022-01-27 22:35:59',0,0,'86.106.74.252','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1364,1,NULL,'2022-01-28 11:50:39','2022-01-28 11:50:39',0,0,'23.231.38.36','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1365,1,NULL,'2022-01-28 20:50:32','2022-01-28 20:50:32',0,0,'162.210.194.37','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1366,1,NULL,'2022-01-28 21:19:16','2022-01-28 21:19:16',0,0,'168.227.140.60','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1367,1,NULL,'2022-01-29 02:06:21','2022-01-29 02:06:21',0,0,'193.148.18.75','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1368,1,NULL,'2022-01-29 06:02:15','2022-01-29 06:02:15',0,0,'196.196.37.117','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1369,1,NULL,'2022-01-29 07:14:43','2022-01-29 07:14:43',0,0,'181.214.206.199','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1370,1,NULL,'2022-01-30 11:33:29','2022-01-30 11:33:29',0,0,'23.94.5.84','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1371,1,NULL,'2022-02-01 16:14:08','2022-02-01 16:14:08',0,0,'195.181.172.73','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1372,1,NULL,'2022-02-01 19:03:16','2022-02-01 19:03:16',0,0,'84.17.60.188','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1373,1,NULL,'2022-02-02 13:44:35','2022-02-02 13:44:35',0,0,'13.36.110.255','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1374,1,NULL,'2022-02-02 18:00:45','2022-02-02 18:00:45',0,0,'119.153.140.97','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1375,1,NULL,'2022-02-02 19:17:18','2022-02-02 19:17:18',0,0,'185.253.42.199','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1376,1,NULL,'2022-02-03 19:07:59','2022-02-03 19:07:59',0,0,'84.17.52.68','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1377,1,NULL,'2022-02-04 00:45:37','2022-02-04 00:45:37',0,0,'46.148.206.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1378,1,NULL,'2022-02-04 10:33:36','2022-02-04 10:33:36',0,0,'185.210.217.59','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1379,1,NULL,'2022-02-04 13:55:21','2022-02-04 13:55:21',0,0,'72.255.40.92','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1380,1,NULL,'2022-02-04 14:31:27','2022-02-04 14:31:27',0,0,'2601:980:c000:60e0:844d:30d2:bb83:8d2f','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1381,1,NULL,'2022-02-04 14:53:43','2022-02-04 14:53:43',0,0,'2601:982:8200:2fe0:5d6e:6cd8:6634:cba8','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36 Edg/97.0.1072.76','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1382,1,NULL,'2022-02-04 20:19:19','2022-02-04 20:19:19',0,0,'156.146.63.135','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1383,1,NULL,'2022-02-06 12:16:08','2022-02-06 12:16:08',0,0,'191.102.151.193','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1384,1,NULL,'2022-02-06 23:58:46','2022-02-06 23:58:46',0,0,'46.166.182.65','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1385,1,NULL,'2022-02-07 02:00:28','2022-02-07 02:00:28',0,0,'146.70.86.117','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1386,1,NULL,'2022-02-07 15:03:52','2022-02-07 15:03:52',0,0,'174.55.114.116','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36 Edg/97.0.1072.76','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1387,1,NULL,'2022-02-07 19:02:02','2022-02-07 19:02:02',0,0,'2600:1002:b1d7:1e50:6902:4c9f:93d3:6868','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/197.0.424131953 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1388,1,NULL,'2022-02-07 20:59:31','2022-02-07 20:59:31',0,0,'191.102.167.150','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1389,1,NULL,'2022-02-07 21:11:08','2022-02-07 21:11:08',0,0,'46.148.206.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1390,1,NULL,'2022-02-07 21:54:40','2022-02-07 21:54:40',0,0,'78.36.83.192','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1391,1,NULL,'2022-02-08 11:19:06','2022-02-08 11:19:06',0,0,'174.251.192.73','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1392,1,NULL,'2022-02-08 12:02:14','2022-02-08 12:02:14',0,0,'177.234.143.75','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1393,1,NULL,'2022-02-09 06:45:21','2022-02-09 06:45:21',0,0,'170.83.179.169','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1394,1,NULL,'2022-02-09 10:09:03','2022-02-09 10:09:03',0,0,'46.29.250.93','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1395,1,NULL,'2022-02-10 03:49:03','2022-02-10 03:49:03',0,0,'195.181.161.15','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1396,1,NULL,'2022-02-10 08:52:13','2022-02-10 08:52:13',0,0,'178.166.246.123','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1397,1,NULL,'2022-02-10 09:07:22','2022-02-10 09:07:22',0,0,'131.108.16.152','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1398,1,NULL,'2022-02-11 09:56:25','2022-02-11 09:56:25',0,0,'104.200.151.127','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1399,1,NULL,'2022-02-11 14:24:00','2022-02-11 14:24:00',0,0,'84.17.49.199','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1400,1,NULL,'2022-02-11 15:56:27','2022-02-11 15:56:27',0,0,'196.242.20.6','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1401,1,NULL,'2022-02-11 17:31:27','2022-02-11 17:31:27',0,0,'37.120.235.172','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1402,1,NULL,'2022-02-12 06:56:46','2022-02-12 06:56:46',0,0,'46.166.182.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1403,1,NULL,'2022-02-12 11:43:05','2022-02-12 11:43:05',0,0,'103.193.197.130','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1404,1,NULL,'2022-02-12 14:58:55','2022-02-12 14:58:55',0,0,'46.148.206.226','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1405,1,NULL,'2022-02-13 09:15:16','2022-02-13 09:15:16',0,0,'185.122.170.194','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1406,1,NULL,'2022-02-14 02:07:31','2022-02-14 02:07:31',0,0,'177.234.143.25','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1407,1,NULL,'2022-02-14 18:10:08','2022-02-14 18:10:08',0,0,'185.195.212.139','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1408,1,NULL,'2022-02-14 20:07:06','2022-02-14 20:07:06',0,0,'46.166.182.115','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1409,1,NULL,'2022-02-15 01:11:44','2022-02-15 01:11:44',0,0,'5.253.204.46','https://www.mannplumbingandheating.com/contact-us/','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','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1410,1,NULL,'2022-02-15 10:08:39','2022-02-15 10:08:39',0,0,'151.106.11.182','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1411,1,NULL,'2022-02-15 19:02:25','2022-02-15 19:02:25',0,0,'196.247.18.227','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1412,1,NULL,'2022-02-16 02:12:58','2022-02-16 02:12:58',0,0,'84.17.49.16','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'spam'),(1413,1,NULL,'2022-02-16 08:54:34','2022-02-16 08:54:34',0,0,'103.79.169.6','https://www.mannplumbingandheating.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active');
/*!40000 ALTER TABLE `wp_gf_entry` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_entry_meta`
--

DROP TABLE IF EXISTS `wp_gf_entry_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_entry_meta` (
  `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL DEFAULT '0',
  `entry_id` bigint(10) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  `item_index` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `entry_id` (`entry_id`),
  KEY `meta_value` (`meta_value`(191))
) ENGINE=InnoDB AUTO_INCREMENT=7020 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_entry_meta`
--

LOCK TABLES `wp_gf_entry_meta` WRITE;
/*!40000 ALTER TABLE `wp_gf_entry_meta` DISABLE KEYS */;
INSERT INTO `wp_gf_entry_meta` VALUES (6,1,4,'3','test@test.com',NULL),(7,1,4,'4','(123) 415-6789',NULL),(8,1,4,'6','test',NULL),(11,1,5,'3','test@test.com',NULL),(12,1,5,'4','(123) 456-7890',NULL),(13,1,5,'6','test',NULL),(16,1,6,'3','test@test.com',NULL),(17,1,6,'4','(123) 456-7890',NULL),(18,1,6,'6','test',NULL),(21,1,7,'3','test@test.com',NULL),(22,1,7,'4','(123) 456-7890',NULL),(23,1,7,'6','test',NULL),(26,1,8,'3','test@test.com',NULL),(27,1,8,'4','(123) 456-7890',NULL),(30,1,9,'3','test@test.com',NULL),(31,1,9,'4','(123) 456-7890',NULL),(32,1,9,'6','test',NULL),(35,1,10,'3','test@test.com',NULL),(36,1,10,'4','(123) 456-7890',NULL),(37,1,10,'6','test',NULL),(40,1,11,'3','test@test.com',NULL),(41,1,11,'4','(123) 456-7890',NULL),(42,1,11,'6','test',NULL),(45,1,12,'3','test@test.com',NULL),(46,1,12,'4','(123) 456-7890',NULL),(47,1,12,'6','test',NULL),(48,1,13,'8','test',''),(49,1,13,'9','test',''),(50,1,13,'4','(987) 654-3210',''),(51,1,13,'3','test@test.com',''),(52,1,14,'8','TestingForms',''),(53,1,14,'9','FormsTest',''),(54,1,14,'4','(526) 867-5309',''),(55,1,14,'3','testingthisform@testform.com',''),(56,1,14,'6','This is a test, please disregard.',''),(57,1,15,'8','Cindy',''),(58,1,15,'9','Anderson',''),(59,1,15,'4','(213) 558-2100',''),(60,1,15,'3','cindy.anderson@yourbestcustomer.club',''),(61,1,15,'6','Hi,\r\n\r\nJust found you at mannplumbingandheating.com.\r\n\r\nGreat website, but are you getting enough customers?\r\n\r\nHave you considered using targeted traffic to boost your sales?\r\n\r\nhttps://yourbestcustomer.club/up?=mannplumbingandheating.com\r\n\r\nFrankly, it works for every business I\'ve talked to. I\'m sure you could benefit from it too.\r\n\r\nTo your success,\r\nCindy\r\n\r\n\r\n\r\n\r\n\r\nYour Best Customer Club\r\n11918 SE Division St Suite 1054\r\nPortland, OR 97266\r\n\r\nUnsub from future marketing:\r\nhttps://yourbestcustomer.club/unsubscribe.php/?site=mannplumbingandheating.com',''),(62,1,16,'8','Test',''),(63,1,16,'9','Test',''),(64,1,16,'4','(818) 888-8888',''),(65,1,16,'3','testform@test.com',''),(66,1,16,'6','This is a test submission from your marketing provider.',''),(67,1,17,'8','John',''),(68,1,17,'9','Castillo',''),(69,1,17,'4','(914) 200-0021',''),(70,1,17,'3','John@Ringboost.com',''),(71,1,17,'6','HI\r\n\r\nI wanted to reach out to your company, to let you know \'717-GETCOOL/GETHEAT\' is available to lease or purchase.\r\n\r\nWhile custom phone numbers are a great and powerful marketing tool, availability is limited. Once the number is sold, it’s gone forever.\r\n \r\nSome of the benefits include…\r\n\r\n*Increase Call Volume & Response Rates\r\n*Stand Out from Your Competition\r\n*Build Brand Awareness\r\n*Make referrals easier\r\n\r\nPlease feel free to contact me anytime for additional details.\r\n\r\nJohn Castillo\r\nDirector of Sales\r\n914-200-0021 (Direct)\r\n\r\n*To never receive this message again, please reply STOP.',''),(72,1,18,'8','Daniel',''),(73,1,18,'9','Britton',''),(74,1,18,'4','(800) 657-5560',''),(75,1,18,'3','daniel@theadleafmarketing.com',''),(76,1,18,'6','My company works with HVAC professionals to generate leads via digital marketing.\r\n \r\nWould you be open to receiving additional info or a consultation?  \r\n\r\nSchedule A Consultation - https://calendly.com/adam-512/20min-m\r\n\r\nDaniel Britton\r\nSenior Digital Marketing Director - HVAC Division\r\ntheadleafmarketing.com',''),(77,1,19,'8','Danielle',''),(78,1,19,'9','Faries',''),(79,1,19,'4','(000) 000-0000',''),(80,1,19,'3','danielle.faries@leadsmoc.com',''),(81,1,19,'6','Hi,\r\n\r\nI was wondering, if you are looking for the latest contacts of the “Plumbing, Building Materials, Hardware, Garden Supply Dealers & HVACR professionals” across North America?\r\n\r\nIf I can be of assistance, please revert this email for sample review and pricing details.\r\n\r\nRegards,\r\nDanielle Faries | Marketing Executive',''),(82,1,20,'8','Chris',''),(83,1,20,'9','Paul',''),(84,1,20,'4','(281) 509-9327',''),(85,1,20,'3','chris@estimationhubinc.com',''),(86,1,20,'6','Greetings,\r\n\r\nI hope this email finds you well,\r\n\r\nWe provides construction takeoff and construction estimating solutions to a diverse range of clients including Architects, developers, general contractors, vendors, owners & Sub-contractors across the USA.\r\n\r\nPlease share your project plans/drawings with us to receive our fees and turnaround time.\r\n\r\nPlease Hire us virtually and get an advance estimate and take off completely error free, for all trades of construction either it is residential or commercial. call us on (281) 509-9327\r\n\r\nThanks, and looking forward to working with you.\r\n\r\nWarm Regards,\r\n\r\nChris Paul\r\nBusiness Development Manager\r\nEstimation Hub Inc.\r\nP: 281.509.9327\r\nA: 207 Greenway Plaza,  Houston TX 77046\r\nE: chris@estimationhubinc. com',''),(87,1,21,'8','Dating for sех | Greаt Britаin: https://1borsa.com/sexdating23262',''),(88,1,21,'9','Dating for sех | Greаt Britаin: https://1borsa.com/sexdating23262',''),(89,1,21,'4','(202) 333-3536',''),(90,1,21,'3','zerock3@yahoo.co.uk',''),(91,1,21,'6','Thе bеst wоmen for sех in yоur town АU: https://onlineuniversalwork.com/sexdating702104',''),(92,1,22,'8','contactklquem',''),(93,1,22,'9','contactklquem',''),(94,1,22,'4','(174) 184-0238',''),(95,1,22,'3','tula_knaus72@rambler.ru',''),(96,1,22,'6','Good whatever time of day it is where you are! \r\n \r\nWe send Your commercial offers via follow-up forms to the sites ofbusiness organizations via any countries of the world in any languages.  \r\n \r\nhttp://xn----7sbb1bbndheurc1a.xn--p1ai \r\n \r\nYour letter is sent to E-mail of institution 100 percent will get to incoming! \r\n \r\nTest: \r\n10000 messages on foreign zones to your electronic box - twenty dollars. \r\nWe need from You only electronic box, title and text of the letter. \r\n \r\nIn our price list there are more 800 databases for all domains of the world. \r\nCommon databases: \r\nAll Europe 44 countries 60726150 of domains - 1100$ \r\nAll European Union 28 countries 56752547 of sites- 1000$ \r\nAll Asia 48 countries 14662004 of domain names - 300$ \r\nAll Africa 50 countries 1594390 of domain names - 200$ \r\nAll North and Central America in 35 countries 7441637 of domains - 300$ \r\nAll South America 14 countries 5826884 of domains - 200$ \r\nEnterprises and organizations of Russia - 300$ \r\nUkraine 605745 of sites - 100$ \r\nAll Russian-speaking countries minus RF are 15 countries and there are 1526797 of sites - 200$ \r\n \r\nDatabases for sending newsletters: \r\nWHOIS databases of domain names for all nations of the world. \r\nYou can purchase our databases separately from newsletter\'s service at the request. \r\n \r\nP/S \r\nPls., do not respond to this commercial offer from your email account, as it has been generated in automatic mode and will not get anywhere! \r\nUse the contact form from the site http://xn----7sbb1bbndheurc1a.xn--p1ai \r\n \r\nPRICE LIST: \r\n \r\nTest mailing: $20 – 10000 contact forms websites \r\n \r\nAll Europe 44 countries there are 60726150 websites – $1100 \r\n \r\nAll EU 28 countries there are 56752547 websites – $1000 \r\n \r\nAll Asia 48 countries there are 14662004 websites – $500 \r\n \r\nAll Africa 50 countries there are 1594390 websites – $200 \r\n \r\nAll North and Central America is 35 countries there are 7441637 websites – $300 \r\n \r\nAll South America 14 countries there are 5826884 websites – $200 \r\n \r\nTop 1 Million World’s Best websites – $100 \r\n \r\nTop 16821856 the most visited websites in the world – $200 \r\n \r\nBusinesses and organizations of the Russian Federation – there are 3012045 websites – $300 \r\n \r\nUkraine 605745 websites – $100 \r\n \r\nAll Russian-speaking countries minus Russia – there are 15 countries and 1526797 websites – $200 \r\n \r\n1499203 of hosting websites around the world (there are selections for all countries, are excluded from databases for mailings) – $200 \r\n \r\n35439 websites of public authorities of all countries of the world (selections for all countries, are excluded from databases for mailings) – $100 \r\n \r\nCMS mailings: \r\nAmiro 2294 websites $50 \r\nBitrix 175513 websites $80 \r\nConcrete5 49721 websites $50 \r\nCONTENIDO 7769 websites $50 \r\nCubeCart 1562 websites $50 \r\nDatalife Engine 29220 websites $50 \r\nDiscuz 70252 websites $50 \r\nDotnetnuke 31114 websites $50 \r\nDrupal 802121 websites $100 \r\nHostCMS 6342 websites $50 \r\nInstantCMS 4936 websites $50 \r\nInvision Power Board 510 websites $50 \r\nJoomla 1906994 websites $200 \r\nLiferay 5937 websites $50 \r\nMagento 269488 websites $80 \r\nMODx 67023 websites $50 \r\nMovable Type 13523 websites $50 \r\nNetCat 6936 websites $50 \r\nNopCommerce 5313 websites $50 \r\nOpenCart 321057 websites $80 \r\nosCommerce 65468 websites $50 \r\nphpBB 3582 websites $50 \r\nPrestashop 92949 websites $50 \r\nShopify 365755 websites $80 \r\nSimpla 8963 websites $50 \r\nSitefinity 4883 websites $50 \r\nTYPO3 227167 websites $80 \r\nUMI.CMS 15943 websites $50 \r\nvBulletin 154677 websites $80 \r\nWix 2305768 websites $230 \r\nWordPress 14467405 websites $450 \r\nWooCommerce 2097367 websites $210 \r\n \r\n.com 133766112 websites commercial – $1950 \r\n.biz 2361884 websites business – $150 \r\n.info 6216929 websites information – $250 \r\n.net 15689222 websites network – $450 \r\n.org 10922428 websites organization – $350 \r\n \r\n.abogado 279 websites – $50 \r\n.ac 16799 websites – $50 \r\n.academy 27306 websites – $50 \r\n.accountant 96542 websites – $50 \r\n.actor 1928 websites – $50 \r\n.ad 414 websites – $50 \r\n.adult 10540 websites- $50 \r\n.ae 1821 websites International zone UAE:.com.net.biz.info.org.name.tel.mobi.asia \r\n.ae 199533 websites UAE – $50 \r\n.aero 18325 websites- $50 \r\n.af 3315 websites – $50 \r\n.africa 15056 websites- $50 \r\n.ag 10339 websites – $50 \r\n.agency 47508 websites – $50 \r\n.ai 17199 websites – $50 \r\n.airforce 560 websites – $50 \r\n.al 6078 websites – $50 \r\n.alsace 1982 websites – $50 \r\n.am 17987 websites Armenia – $50 \r\n.am 1684 websites International zone Armenia:.com.net.biz.info.org.name.tel.mobi.asia \r\n.amsterdam 28141 websites Amsterdam, Kingdom of the Netherlands – $50 \r\n.ao 518 websites – $50 \r\n.apartments 3758 websites – $50 \r\n.ar 551804 websites Argentina – $80 \r\n.ar 64008 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia – $50 \r\n.archi 2084 websites – $50 \r\n.army 1842 websites – $50 \r\n.art 26402 websites – $50 \r\n.as 10025 websites – $50 \r\n.asia 228418 websites – $80 \r\n.associates 3340 websites – $50 \r\n.at 1356722 websites Austria – $100 \r\n.at 181907 websites International zone Austria :.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.attorney 8224 websites- $50 \r\n.attorney 7204 websites – $50 \r\n.au 2243263 websites Australia – $150 \r\n.au 461279 websites International zone Australia:.com.net.biz.info.org.name.tel.mobi.asia-$80 \r\n.auction 3625 websites- $50 \r\n.audio 23052 websites- $50 \r\n.auto 400 websites- $50 \r\n.aw 235 websites- $50 \r\n.az 11104 websites Azerbaijan – $50 \r\n.az 2036 websites International zone Azerbaijan:.com.net.biz.info.org.name.tel.mobi.asia \r\n.ba 7012 websites – $50 \r\n.ba 2291 websites International zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia \r\n.band 11515 websites – $50 \r\n.bank 1621 websites- $50 \r\n.bar 5506 websites – $50 \r\n.barcelona 7919 websites – $50 \r\n.bargains 2997 websites- $50 \r\n.bayern 32565 websites – $50 \r\n.bb 2277 websites – $50 \r\n.be 1349658 websites Belgium – $100 \r\n.be 184810 websites International zone Belgium:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.beer 11834 websites- $50 \r\n.berlin 58088 websites Berlin – $50 \r\n.best 2912 websites – $50 \r\n.bet 17637 websites – $50 \r\n.bf 238 websites – $50 \r\n.bg 33252 websites Bulgaria – $50 \r\n.bg 50685 websites International zone Bulgaria:.com.net.biz.info.org.name.tel.mobi.asia \r\n.bh 453 websites – $50 \r\n.bi 2328 websites Burundi- $50 \r\n.bible 1160 websites – $50 \r\n.bid 474509 websites – $80 \r\n.bike 15729 websites – $50 \r\n.bingo 1332 websites – $50 \r\n.bio 15531 websites- $50 \r\n.bj 147 websites- $50 \r\n.black 6582 websites – $50 \r\n.blackfriday 12106 websites – $50 \r\n.blog 145463 websites – $50 \r\n.blue 16852 websites – $50 \r\n.bm 8089 websites Bermuda – $50 \r\n.bo 2302 websites- $50 \r\n.boats 266 websites- $50 \r\n.boston 21762 websites- $50 \r\n.boutique 8834 websites – $50 \r\n.br 2367290 websites Brazil – $150 \r\n.br 933750 websites International zone Brazil:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.bradesco 129 websites- $50 \r\n.broadway 261 websites- $50 \r\n.broker 660 websites- $50 \r\n.brussels 7181 websites – $50 \r\n.bs 330 websites- $50 \r\n.bt 284 websites- $50 \r\n.build 3857 websites- $50 \r\n.builders 3906 websites- $50 \r\n.business 35168 websites – $50 \r\n.buzz 11257 websites – $50 \r\n.bw 656 websites – $50 \r\n.by 1574 websites International zone Belarus:.com.net.biz.info.org.name.tel.mobi.asia \r\n.by 92679 websites Belarus – $50 \r\n.bz 7751 websites – $50 \r\n.bzh 5403 websites – $50 \r\n.ca 2587463 websites Canada – $150 \r\n.ca 288395 websites International zone Canada:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.cab 3223 websites – $50 \r\n.cafe 13606 websites – $50 \r\n.cam 5156 websites – $50 \r\n.camera 5236 websites – $50 \r\n.camp 6315 websites – $50 \r\n.capetown 4750 websites – $50 \r\n.capital 11387 websites – $50 \r\n.car 342 websites – $50 \r\n.cards 5992 websites – $50 \r\n.care 18204 websites – $50 \r\n.career 1217 websites – $50 \r\n.careers 7055 websites – $50 \r\n.cars 309 websites – $50 \r\n.casa 18918 websites – $50 \r\n.cash 13193 websites – $50 \r\n.casino 4354 websites – $50 \r\n.cat 108569 websites – $50 \r\n.catering 3482 websites – $50 \r\n.cc 1920589 websites Cocos Keeling Islands- $150 \r\n.cd 5365 websites – $50 \r\n.center 35353 websites – $50 \r\n.ceo 2458 websites – $50 \r\n.cf 476142 websites Central African Republic – $50 \r\n.cg 166 – $50 \r\n.ch 1471685 websites Switzerland – $100 \r\n.ch 205292 websites International zone Switzerland:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.chat 11126 websites – $50 \r\n.cheap 3267 websites – $50 \r\n.christmas 15255 websites – $50 \r\n.church 21104 websites – $50 \r\n.ci 112 websites International zone Cote d’Ivoire:.com.net.biz.info.org.name.tel.mobi.asia \r\n.ci 5663 websites Cote d’Ivoire- $50 \r\n.city 46171 websites – $50 \r\n.cl 498401 websites Chile – $80 \r\n.claims 2374 websites – $50 \r\n.cleaning 2385 websites – $50 \r\n.click 181015 websites – $50 \r\n.clinic 7006 websites – $50 \r\n.clothing 13639 websites – $50 \r\n.cloud 134113 websites – $50 \r\n.club 1045323 websites – $100 \r\n.cm 12001 websites Cameroon- $50 \r\n.cn 1372416 websites International zone China:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.cn 7264587 websites China – $300 \r\n.co 1778923 websites Colombia – $150 \r\n.coach 12002 websites- $50 \r\n.codes 6844 websites – $50 \r\n.coffee 17257 websites – $50 \r\n.cologne 5137 websites – $50 \r\n.cologne 5198 websites – $50 \r\n.com.ar 657716 websites Argentina – $80 \r\n.com.br 942898 websites Brazil – $100 \r\n.com.cy 11153 websites Cyprus – $50 \r\n.com.ni 23747 websites – $50 \r\n.com.np 38828 websites – $50 \r\n.com.ru, .net.ru, .org.ru, .spb.ru, .msk.ru 79058 websites Russia – $50 \r\n.community 13013 websites – $50 \r\n.company 61217 websites – $50 \r\n.computer 5039 websites – $50 \r\n.condos 2192 websites – $50 \r\n.construction 6804 websites – $50 \r\n.consulting 22128 websites – $50 \r\n.contractors 3982 websites – $50 \r\n.cooking 1476 websites – $50 \r\n.cool 16008 websites – $50 \r\n.coop 7879 websites – $50 \r\n.corsica 1042 websites – $50 \r\n.country 7144 websites – $50 \r\n.cr 7934 websites – $50 \r\n.credit 4020 websites – $50 \r\n.creditcard 825 websites – $50 \r\n.creditunion 511 websites – $50 \r\n.cricket 33413 websites – $50 \r\n.cruises 2234 websites – $50 \r\n.cu 137 websites – $50 \r\n.cv 1879 websites – $50 \r\n.cx 15753 websites – $50 \r\n.cy 11092 websites Cyprus – $50 \r\n.cy 710 websites International zone Cyprus:.com.net.biz.info.org.name.tel.mobi.asia \r\n.cymru 7114 websites – $50 \r\n.cz 193400 websites International zone Czech Republic:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.cz 930208 websites Czech Republic – $80 \r\n.dance 6290 websites – $50 \r\n.date 123037 websites – $50 \r\n.dating 2892 websites – $50 \r\n.de 15078512 websites Germany – $450 \r\n.de 3894156 websites International zone Germany:.com.net.biz.info.org.name.tel.mobi.asia-$200 \r\n.deals 8132 websites – $50 \r\n.degree 2178 websites – $50 \r\n.delivery 4782 websites – $50 \r\n.democrat 1072 websites – $50 \r\n.dental 7541 websites – $50 \r\n.dentist 3046 websites – $50 \r\n.desi 2647 websites – $50 \r\n.design 71711 websites – $50 \r\n.diamonds 2730 websites – $50 \r\n.diet 18291 websites – $50 \r\n.digital 31449 websites – $50 \r\n.direct 10629 websites – $50 \r\n.directory 18157 websites – $50 \r\n.discount 3898 websites – $50 \r\n.dj 7280 websites – $50 \r\n.dk 1320155 websites Denmark – $100 \r\n.dk 148164 websites International zone Denmark:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.dm 23318 websites – $50 \r\n.do 5255 websites Dominican Republic- $50 \r\n.dog 10030 websites – $50 \r\n.domains 6553 websites – $50 \r\n.download 129223 websites – $50 \r\n.durban 2247 websites – $50 \r\n.dz 982 websites – $50 \r\n.earth 8139 websites – $50 \r\n.ec 11731 websites – $50 \r\n.edu 4445 websites – $50 \r\n.edu.np 4883 websites- $50 \r\n.education 22003 websites – $50 \r\n.ee 10490 websites International zone Estonia:.com.net.biz.info.org.name.tel.mobi.asia \r\n.ee 119701 websites Estonia- $50 \r\n.eg 1699 websites – $50 \r\n.email 77321 websites – $50 \r\n.energy 9769 websites – $50 \r\n.engineer 2785 websites – $50 \r\n.engineering 5533 websites – $50 \r\n.enterprises 6153 websites – $50 \r\n.equipment 5760 websites – $50 \r\n.es 1685048 websites Spain – $100 \r\n.es 541916 websites International zone Spain:.com.net.biz.info.org.name.tel.mobi.asia-$80 \r\n.estate 9185 websites – $50 \r\n.et 124 websites – $50 \r\n.eu 3321576 websites Europe – $150 \r\n.eu 633384 websites International zone Europe:.com.net.biz.info.org.name.tel.mobi.asia-$80 \r\n.eus 8116 websites – $50 \r\n.events 22115 websites – $50 \r\n.exchange 9432 websites – $50 \r\n.expert 31240 websites – $50 \r\n.exposed 3147 websites – $50 \r\n.express 6919 websites – $50 \r\n.fail 3322 websites – $50 \r\n.faith 54195 websites – $50 \r\n.family 15577 websites – $50 \r\n.fans 1388 websites – $50 \r\n.farm 13499 websites – $50 \r\n.fashion 12475 websites – $50 \r\n.feedback 2301 websites – $50 \r\n.fi 178337 websites Finland – $50 \r\n.fi 69631 websites International zone Finland:.com.net.biz.info.org.name.tel.mobi.asia – $50 \r\n.film 3601 websites – $50 \r\n.finance 7982 websites – $50 \r\n.financial 4086 websites – $50 \r\n.fish 4162 websites – $50 \r\n.fishing 1423 websites – $50 \r\n.fit 17007 websites – $50 \r\n.fitness 9689 websites – $50 \r\n.flights 2119 websites – $50 \r\n.florist 2286 websites – $50 \r\n.flowers 25590 websites – $50 \r\n.fm 5407 websites – $50 \r\n.fo 3098 websites- $50 \r\n.football 4877 websites – $50 \r\n.forex 212 websites – $50 \r\n.forsale 7118 websites – $50 \r\n.foundation 10118 websites – $50 \r\n.fr 2391045 websites France – $150 \r\n.fr 639546 websites International zone France:.com.net.biz.info.org.name.tel.mobi.asia-$80 \r\n.frl 14028 websites – $50 \r\n.fun 86419 websites – $50 \r\n.fund 11205 websites – $50 \r\n.furniture 2246 websites – $50 \r\n.futbol 2783 websites – $50 \r\n.fyi 9772 websites – $50 \r\n.ga 12048 websites Gabon – $50 \r\n.gal 4606 websites – $50 \r\n.gallery 17263 websites – $50 \r\n.game 1996 websites – $50 \r\n.games 13234 websites – $50 \r\n.garden 914 websites – $50 \r\n.gd 4238 websites – $50 \r\n.ge 1676 websites International zone Georgia:.com.net.biz.info.org.name.tel.mobi.asia \r\n.ge 17361 websites Georgia – $50 \r\n.gent 3389 websites – $50 \r\n.gf 121 websites – $50 \r\n.gg 9443 websites – $50 \r\n.gh 693 websites – $50 \r\n.gi 1063 websites – $50 \r\n.gift 6281 websites – $50 \r\n.gifts 3757 websites – $50 \r\n.gives 1563 websites – $50 \r\n.gl 3575 websites – $50 \r\n.glass 3539 websites – $50 \r\n.global 38972 websites – $50 \r\n.gm 468 websites – $50 \r\n.gmbh 19186 websites – $50 \r\n.gold 9081 websites – $50 \r\n.golf 8319 websites – $50 \r\n.gop 1341 websites – $50 \r\n.gov 4525 websites – $50 \r\n.gov.np 1937 websites- $50 \r\n.gp 416 websites – $50 \r\n.gq 23306 websites – $50 \r\n.gr 356168 websites Greece – $80 \r\n.gr 57984 websites International zone Greece:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.graphics 7155 websites – $50 \r\n.gratis 4283 websites – $50 \r\n.green 3661 websites – $50 \r\n.gripe 1075 websites – $50 \r\n.group 54983 websites – $50 \r\n.gs 5108 websites – $50 \r\n.gt 15351 websites – $50 \r\n.guide 16044 websites – $50 \r\n.guitars 1278 websites – $50 \r\n.guru 60588 websites – $50 \r\n.gy 2447 websites – $50 \r\n.hamburg 23885 websites – $50 \r\n.haus 5186 websites – $50 \r\n.health 6211 websites – $50 \r\n.healthcare 8051 websites – $50 \r\n.help 13500 websites – $50 \r\n.hiphop 1064 websites – $50 \r\n.hiv 331 websites – $50 \r\n.hk 116093 websites – $50 \r\n.hm 249 websites – $50 \r\n.hn 4732 websites – $50 \r\n.hockey 1102 websites – $50 \r\n.holdings 5412 websites – $50 \r\n.holiday 5017 websites – $50 \r\n.homes 432 websites – $50 \r\n.horse 2116 websites – $50 \r\n.host 31309 websites – $50 \r\n.hosting 4132 websites – $50 \r\n.house 18096 websites – $50 \r\n.how 1957 websites – $50 \r\n.hr 16592 websites International zone Croatia:.com.net.biz.info.org.name.tel.mobi.asia \r\n.hr 43565 websites Croatia – $50 \r\n.ht 2559 websites – $50 \r\n.hu 53940 websites International zone Hungary:.com.net.biz.info.org.name.tel.mobi.asia – $50 \r\n.hu 618532 websites Hungary – $80 \r\n.id 37212 websites – $50 \r\n.ie 195987 websites Ireland – $50 \r\n.ie 49861 websites International zone Ireland:.com.net.biz.info.org.name.tel.mobi.asia – $50 \r\n.il 224167 websites Israel – $80 \r\n.il 38537 websites International zone Israel:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.im 20701 websites – $50 \r\n.immo 16009 websites – $50 \r\n.immobilien 7094 websites – $50 \r\n.in 1143482 websites India – $100 \r\n.in 266179 websites International zone India:.com.net.biz.info.org.name.tel.mobi.asia – $50 \r\n.industries 3749 websites – $50 \r\n.ink 27117 websites – $50 \r\n.institute 10134 websites – $50 \r\n.insure 4615 websites – $50 \r\n.int 191 websites – $50 \r\n.international 23930 websites – $50 \r\n.investments 4113 websites – $50 \r\n.io 314287 websites British Indian Ocean – $50 \r\n.iq 1118 websites – $50 \r\n.ir 15487 websites International zone Iran:.com.net.biz.info.org.name.tel.mobi.asia \r\n.ir 427735 websites Iran- $80 \r\n.irish 3326 websites – $50 \r\n.is 31176 websites Iceland – $50 \r\n.ist 10060 websites – $50 \r\n.istanbul 13139 websites – $50 \r\n.it 2258105 websites Italy – $200 \r\n.it 954040 websites International zone Italy:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.je 2716 websites – $50 \r\n.jetzt 11118 websites – $50 \r\n.jetzt 11704 websites – $50 \r\n.jewelry 3350 websites – $50 \r\n.jo 555 websites – $50 \r\n.jobs 46350 websites- $50 \r\n.joburg 3139 websites – $50 \r\n.jp 1146243 websites Japan – $100 \r\n.juegos 844 websites – $50 \r\n.kaufen 7134 websites – $50 \r\n.kg 664 websites International zone Kyrgyzstan:.com.net.biz.info.org.name.tel.mobi.asia \r\n.kg 8919 websites Kyrgyzstan – $50 \r\n.ki 1146 websites – $50 \r\n.kim 16637 websites- $50 \r\n.kitchen 6581 websites – $50 \r\n.kiwi 19426 websites – $50 \r\n.kn 1271 websites – $50 \r\n.koeln 23489 websites – $50 \r\n.kr 254447 websites Korea- $50 \r\n.krd 375 websites – $50 \r\n.kred 6120 websites – $50 \r\n.kw 423 websites – $50 \r\n.ky 1201 websites – $50 \r\n.kyoto 659 websites – $50 \r\n.kz 112459 websites Kazakhstan – $50 \r\n.kz 5876 websites International zone Kazakhstan:.com.net.biz.info.org.name.tel.mobi.asia \r\n.la 32189 websites Laos – $50 \r\n.land 14474 websites- $50 \r\n.lat 2971 websites – $50 \r\n.law 11842 websites – $50 \r\n.lawyer 11600 websites- $50 \r\n.lc 651 websites- $50 \r\n.lease 1855 websites- $50 \r\n.leclerc 127 websites- $50 \r\n.legal 11047 websites- $50 \r\n.lgbt 2249 websites- $50 \r\n.li 12044 websites – $50 \r\n.life 170053 websites – $50 \r\n.lighting 6096 websites – $50 \r\n.limited 5365 websites – $50 \r\n.limo 2409 websites- $50 \r\n.link 133123 websites – $50 \r\n.live 160896 websites – $50 \r\n.lk 6601 websites – $50 \r\n.loan 1932173 websites- $200 \r\n.loans 3914 websites – $50 \r\n.lol 7470 websites- $50 \r\n.london 82443 websites London, United Kingdom- $50 \r\n.love 22287 websites- $50 \r\n.lt 27710 websites International zone Lithuania:.com.net.biz.info.org.name.tel.mobi.asia \r\n.lt 89073 websites Lithuania- $50 \r\n.ltd 329225 websites – $50 \r\n.lu 43052 websites Luxembourg – $50 \r\n.lu 4125 websites International zone Luxembourg:.com.net.biz.info.org.name.tel.mobi.asia \r\n.luxury 905 websites – $50 \r\n.lv 61886 websites Latvia- $50 \r\n.lv 8887 websites International zone Latvia:.com.net.biz.info.org.name.tel.mobi.asia \r\n.ly 8013 websites – $50 \r\n.ma 51862 websites Morocco – $50 \r\n.maison 1123 websites – $50 \r\n.management 10088 websites- $50 \r\n.market 22167 websites- $50 \r\n.marketing 18262 websites- $50 \r\n.markets 816 websites- $50 \r\n.mba 3023 websites- $50 \r\n.mc 3036 websites Monaco – $50 \r\n.md 15435 websites Moldova – $50 \r\n.md 1293 websites International zone Moldova:.com.net.biz.info.org.name.tel.mobi.asia \r\n.me 761596 websites Montenegro – $80 \r\n.me 86897 websites International zone Montenegro:.com.net.biz.info.org.name.tel.mobi.asia – $50 \r\n.media 40573 websites – $50 \r\n.melbourne 10041 websites – $50 \r\n.memorial 512 websites – $50 \r\n.men 470140 websites – $80 \r\n.menu 5512 websites restaurants- $50 \r\n.mg 3380 websites Madagascar- $50 \r\n.miami 14431 websites Miami, USA – $50 \r\n.mk 12704 websites – $50 \r\n.ml 70170 websites – $50 \r\n.mma 1706 websites – $50 \r\n.mn 16710 websites – $50 \r\n.mo 573 websites – $50 \r\n.mobi 462419 websites- $80 \r\n.moda 3015 websites – $50 \r\n.moe 7709 websites – $50 \r\n.mom 3145 websites – $50 \r\n.money 9731 websites – $50 \r\n.mortgage 3126 websites – $50 \r\n.moscow 22097 websites Moscow Russian Federation- $50 \r\n.movie 2575 websites – $50 \r\n.mr 1725 websites – $50 \r\n.ms 7565 websites – $50 \r\n.mt 1623 websites Malta – $50 \r\n.mu 6175 websites – $50 \r\n.museum 34464 websites – $50 \r\n.mv 1907 websites – $50 \r\n.mw 8579 websites Malawi – $50 \r\n.mx 609278 websites Mexico- $80 \r\n.mx 86593 websites International zone Mexico:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.my 283349 websites Malaysia- $80 \r\n.mz 263 websites – $50 \r\n.na 781 websites – $50 \r\n.nagoya 7807 websites – $50 \r\n.name 135818 websites- $50 \r\n.navy 698 websites – $50 \r\n.nc 1240 websites – $50 \r\n.network 40018 websites – $50 \r\n.news 65546 websites – $50 \r\n.ng 16608 websites – $50 \r\n.ngo 3422 websites – $50 \r\n.ninja 49007 websites – $50 \r\n.nl 1019697 websites International zone Netherlands:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.nl 3566172 websites Netherlands – $200 \r\n.no 579185 websites Norway – $80 \r\n.no 74318 websites International zone Norway:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.nra 144 websites – $50 \r\n.nrw 18487 websites – $50 \r\n.nu 489605 websites Niue- $50 \r\n.nyc 67153 websites – $50 \r\n.nz 576127 websites New Zealand – $80 \r\n.om 1603 websites – $50 \r\n.one 63063 websites – $50 \r\n.ong 3422 websites – $50 \r\n.onl 3790 websites – $50 \r\n.online 695007 websites – $50 \r\n.ooo 6400 websites – $50 \r\n.org.np 7082 websites – $50 \r\n.org.ua 41362 websites – $50 \r\n.organic 1633 websites – $50 \r\n.osaka 628 websites – $50 \r\n.ovh 50056 websites – $50 \r\n.pa 1558 websites – $50 \r\n.paris 19283 websites – $50 \r\n.partners 6576 websites – $50 \r\n.parts 5514 websites – $50 \r\n.party 115578 websites- $50 \r\n.pe 59157 websites International zone Peru:.com.net.biz.info.org.name.tel.mobi.asia – $50 \r\n.pe 69367 websites Peru – $50 \r\n.pet 8487 websites – $50 \r\n.pf 349 websites – $50 \r\n.pg 1979 websites Papua – $50 \r\n.ph 17940 websites Philippines – $50 \r\n.photo 17165 websites- $50 \r\n.photography 50434 websites- $50 \r\n.photos 19107 websites- $50 \r\n.physio 1160 websites- $50 \r\n.pics 7659 websites- $50 \r\n.pictures 7807 websites- $50 \r\n.pink 6373 websites- $50 \r\n.pizza 5949 websites – $50 \r\n.pk 44464 websites Pakistan – $50 \r\n.pl 1675325 websites Poland – $100 \r\n.pl 327587 websites International zone Poland:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.place 7002 websites – $50 \r\n.plumbing 3005 websites – $50 \r\n.plus 9892 websites – $50 \r\n.pm 4401 websites – $50 \r\n.poker 3209 websites – $50 \r\n.porn 10023 websites- $50 \r\n.post 3481 websites – $50 \r\n.pr 18419 websites – $50 \r\n.press 35032 websites – $50 \r\n.pro 280776 websites – $50 \r\n.productions 6144 websites – $50 \r\n.promo 5020 websites – $50 \r\n.properties 14144 websites – $50 \r\n.property 4366 websites – $50 \r\n.ps 2050 websites – $50 \r\n.pt 17691 websites International zone Portugal:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.pt 225136 websites Portugal – $80 \r\n.pub 16703 websites – $50 \r\n.pw 16206 websites – $50 \r\n.py 4635 websites – $50 \r\n.qa 8503 websites – $50 \r\n.quebec 8042 websites – $50 \r\n.racing 55001 websites – $50 \r\n.re 11082 websites – $50 \r\n.realtor 39465 websites – $50 \r\n.realty 55291 websites – $50 \r\n.recipes 3251 websites – $50 \r\n.red 25701 websites – $50 \r\n.rehab 1816 websites – $50 \r\n.reise 4146 websites – $50 \r\n.reisen 9228 websites – $50 \r\n.reit 126 websites – $50 \r\n.ren 108303 websites – $50 \r\n.rent 3788 websites – $50 \r\n.rentals 11823 websites- $50 \r\n.repair 6628 websites- $50 \r\n.report 5869 websites – $50 \r\n.republican 952 websites – $50 \r\n.rest 1894 websites – $50 \r\n.restaurant 7703 websites – $50 \r\n.review 229514 websites – $80 \r\n.reviews 16132 websites- $50 \r\n.rio 1062 websites- $50 \r\n.rip 3199 websites- $50 \r\n.ro 42046 websites International zone Romania:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.ro 483266 websites Romania – $80 \r\n.rocks 81108 websites – $50 \r\n.rs 75503 websites Serbia – $50 \r\n.ru 5292104 websites Russian- $250 \r\n.ru 514668 websites International zone Russian:.com.net.biz.info.org.name.tel.mobi.asia -$80 \r\n.ru.com 6499 websites Russia – $50 \r\n.ruhr 9887 websites – $50 \r\n.run 10622 websites – $50 \r\n.rw 244 websites – $50 \r\n.sa 5064 websites International zone Saudi Arabia:.com.net.biz.info.org.name.tel.mobi.asia \r\n.sa 11604 websites Saudi Arabia- $50 \r\n.saarland 3825 websites – $50 \r\n.sale 35407 websites – $50 \r\n.salon 1782 websites – $50 \r\n.sarl 939 websites – $50 \r\n.sc 4942 websites Seychelles- $50 \r\n.school 11672 websites – $50 \r\n.schule 4678 websites – $50 \r\n.science 74115 websites – $80 \r\n.scot 11175 websites – $50 \r\n.sd 619 websites – $50 \r\n.se 293316 websites International zone Sweden:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.se 1799365 websites Sweden – $150 \r\n.seat 618 websites – $50 \r\n.security 255 websites – $50 \r\n.services 52098 websites – $50 \r\n.sex 7655 websites – $50 \r\n.sexy 18260 websites – $50 \r\n.sg 164351 websites Republic Of Singapore – $50 \r\n.sh 9408 websites – $50 \r\n.shiksha 1626 websites – $50 \r\n.shoes 5007 websites – $50 \r\n.shop 402139 websites – $80 \r\n.shopping 6297 websites – $50 \r\n.show 6946 websites – $50 \r\n.si 12879 websites International zone Slovenia:.com.net.biz.info.org.name.tel.mobi.asia – $50 \r\n.si 39749 websites Slovenia- $50 \r\n.singles 3559 websites – $50 \r\n.site 384414 websites – $80 \r\n.sk 31572 websites International zone Slovakia:.com.net.biz.info.org.name.tel.mobi.asia – $50 \r\n.sk 347101 websites Slovakia- $80 \r\n.ski 5071 websites – $50 \r\n.sl 418 websites – $50 \r\n.sm 2009 websites – $50 \r\n.sn 344 websites International zone Senegal:.com.net.biz.info.org.name.tel.mobi.asia \r\n.sn 4954 websites Senegal – $50 \r\n.so 9003 websites – $50 \r\n.soccer 2833 websites – $50 \r\n.social 19134 websites – $50 \r\n.software 13001 websites – $50 \r\n.solar 7095 websites – $50 \r\n.solutions 81282 websites – $50 \r\n.soy 1200 websites – $50 \r\n.space 220771 websites – $80 \r\n.sr 638 – $50 \r\n.srl 4391 – $50 \r\n.st 7683 websites – $50 \r\n.storage 623 – $50 \r\n.store 167141 websites – $50 \r\n.stream 239795 websites – $80 \r\n.studio 39132 websites – $50 \r\n.study 5132 websites – $50 \r\n.style 9248 websites – $50 \r\n.su 125358 websites Russian- $50 \r\n.sucks 7629 websites – $50 \r\n.supplies 3082 websites – $50 \r\n.supply 4580 websites – $50 \r\n.support 20377 websites – $50 \r\n.surf 2573 websites – $50 \r\n.surgery 1778 websites – $50 \r\n.sv 8132 websites Salvador- $50 \r\n.swiss 17323 websites – $50 \r\n.sx 3240 websites – $50 \r\n.sy 2063 websites – $50 \r\n.sydney 10073 websites – $50 \r\n.systems 26094 websites – $50 \r\n.sz 194 websites – $50 \r\n.taipei 5664 websites – $50 \r\n.tattoo 2004 websites- $50 \r\n.tax 5788 websites – $50 \r\n.taxi 5784 websites – $50 \r\n.tc 16384 websites Turks and Caicos Islands- $50 \r\n.team 18421 websites- $50 \r\n.tech 196321 websites – $50 \r\n.technology 40181 websites- $50 \r\n.tel 80752 websites- $50 \r\n.tennis 1494 websites – $50 \r\n.tf 2049 websites – $50 \r\n.tg 521 websites – $50 \r\n.th 23968 websites Kingdom Of Thailand- $50 \r\n.theater 1053 websites – $50 \r\n.tickets 1141 websites – $50 \r\n.tienda 2951 websites – $50 \r\n.tips 31287 websites- $50 \r\n.tires 960 websites – $50 \r\n.tirol 5412 websites – $50 \r\n.tj 34 websites International zone Tajikistan:.com.net.biz.info.org.name.tel.mobi.asia \r\n.tj 6804 websites Tajikistan- $50 \r\n.tk 12799253 websites Tokelau – $450 \r\n.tl 2728 websites – $50 \r\n.tm 6056 websites Turkmenistan- $50 \r\n.tm 44 websites International zone Turkmenistan:.com.net.biz.info.org.name.tel.mobi.asia \r\n.tn 27383 websites – $50 \r\n.to 16987 websites Tonga- $50 \r\n.today 98034 websites – $50 \r\n.tokyo 90132 websites – $50 \r\n.tools 10439 websites – $50 \r\n.top 2140480 websites – $200 \r\n.tours 9151 websites – $50 \r\n.town 3328 websites – $50 \r\n.toys 4391 websites – $50 \r\n.tr 138818 International zone Turkey:.com.net.biz.info.org.name.tel.mobi.asia -$50 \r\n.tr 317690 websites Turkey – $80 \r\n.trade 151130 websites – $50 \r\n.trading 896 websites – $50 \r\n.training 18192 websites – $50 \r\n.travel 18054 websites – $50 \r\n.tt 516 websites – $50 \r\n.tube 2104 websites – $50 \r\n.tv 559502 websites Tuvalu – $80 \r\n.tw 243062 websites Taiwan – $50 \r\n.tz 1874 websites – $50 \r\n.ua 117701 websites International zone Ukraine:.com.net.biz.info.org.name.tel.mobi.asia-$50 \r\n.ua 553216 websites Ukraina – $80 \r\n.ug 2331 websites Ukraina \r\n.uk 3304606 websites International zone United Kingdom:.com.net.biz.info.org.name.tel.mobi.asia-$150 \r\n.uk 5496382 websites United Kingdom – $250 \r\n.university 5799 websites – $50 \r\n.uno 16394 websites – $50 \r\n.us 3139563 websites USA – $200 \r\n.us 578927 websites International zone USA:.com.net.biz.info.org.name.tel.mobi.asia-$80 \r\n.uy 14683 websites Uruguay – $50 \r\n.uz 365 websites International zone Uzbekistan:.com.net.biz.info.org.name.tel.mobi.asia \r\n.uz 14689 websites Uzbekistan – $50 \r\n.vacations 3926 websites – $50 \r\n.vc 16606 websites – $50 \r\n.ve 14015 websites Venezuela – $50 \r\n.vegas 18008 websites Las Vegas NV United States of America – $50 \r\n.ventures 10066 websites – $50 \r\n.versicherung 2009 websites – $50 \r\n.vet 5760 websites – $50 \r\n.vg 8389 site – $50 \r\n.viajes 2512 site – $50 \r\n.video 16204 websites- $50 \r\n.villas 1940 site – $50 \r\n.vin 5094 websites – $50 \r\n.vip 755289 websites – $80 \r\n.vision 6420 websites – $50 \r\n.vlaanderen 6114 websites – $50 \r\n.vn 161855 websites International zone Vietnam:.com.net.biz.info.org.name.tel.mobi.asia – $50 \r\n.vn 436005 websites Vietnam – $80 \r\n.vodka 1420 websites – $50 \r\n.vote 2316 websites – $50 \r\n.voto 269 websites – $50 \r\n.voyage 2773 websites – $50 \r\n.vu 1201 websites – $50 \r\n.wales 13063 websites – $50 \r\n.wang 604718 websites – $80 \r\n.watch 6120 websites – $50 \r\n.webcam 60142 websites – $50 \r\n.website 207002 websites -$50 \r\n.wedding 22162 websites – $50 \r\n.wf 1188 websites – $50 \r\n.wien 14464 websites – $50 \r\n.wien 14913 websites – $50 \r\n.wiki 14129 websites wikis – $50 \r\n.win 655735 websites – $80 \r\n.wine 13095 websites – $50 \r\n.work 256086 websites – $80 \r\n.works 15112 websites – $50 \r\n.world 86012 websites – $50 \r\n.ws 97008 websites Samoa- $80 \r\n.wtf 10038 websites – $50 \r\n.xin 178450 websites – $50 \r\n.xn--3ds443g 44019 websites – $50 \r\n.xn--55qx5d 47456 websites – $50 \r\n.xn--6qq986b3xl 18188 websites – $50 \r\n.xn--czr694b 21109 websites – $50 \r\n.xn--czru2d 9020 websites – $50 \r\n.xn--fiq228c5hs 12145 websites – $50 \r\n.xn--io0a7i 30199 websites – $50 \r\n.xn--j6w193g 31764 websites – $50 \r\n.xn--kput3i 31856 websites – $50 \r\n.xn--mgbaam7a8h 2038 websites – $50 \r\n.xn--mgberp4a5d4ar 2534 websites – $50 \r\n.xn--mk1bu44c 6001 websites – $50 \r\n.xn--rhqv96g 7723 websites – $50 \r\n.xn--ses554g 198539 websites – $80 \r\n.xn--tckwe 6197 websites – $50 \r\n.xn--vuq861b 19706 websites – $50 \r\n.xxx 119879 websites- $50 \r\n.xyz 1888763 websites – $150 \r\n.yachts 154 websites – $50 \r\n.yoga 7963 websites – $50 \r\n.yokohama 8140 websites – $50 \r\n.yt 2004 websites – $50 \r\n.za 837189 websites South Africa – $100 \r\n.zm 224 websites – $50 \r\n.zone 25798 websites – $50 \r\n.бг (.xn--90ae) 2470 websites – $50 \r\n.дети 169 websites – $50 \r\n.москва (.xn--80adxhks) 19582 websites Moscow – $50 \r\n.онлайн 3403 websites – $50 \r\n.орг 1160 websites – $50 \r\n.рус (.xn--p1acf) 110789 websites – $50 \r\n.рф (.xn--p1ai) 869759 websites Russia – $80 \r\n.сайт 1146 websites – $50 \r\n.укр (.xn--j1amh) 10563 websites- $50 \r\n.संगठन 105  sites – $50 \r\n>.みんな 166  sites – $50 \r\n.コム    6532  sites – $50 \r\n.世界    4171  sites – $50 \r\n.公司    46161  sites – $50 \r\n.商城    6 907  sites – $50 \r\n.商标    9865  sites – $50 \r\n.我爱你 15465  sites – $50 \r\n.手机    31543  sites – $50 \r\n.机构    243  sites – $50 \r\n.游戏    187  sites – $50 \r\n.移动    3277  sites – $50 \r\n.网店    3711  sites – $50 \r\n.网络    30808  sites – $50 \r\n.닷컴    5937  sites – $50 \r\n.بازار  sites 648 – $50 \r\n.شبكة   sites 833 – $50 \r\n.موقع   sites 478 – $50',''),(97,1,23,'8','Adult best frеe dаting sitеs саnаdа 2019: https://slimex365.com/adultdating908984',''),(98,1,23,'9','Adult best frеe dаting sitеs саnаdа 2019: https://slimex365.com/adultdating908984',''),(99,1,23,'4','(624) 702-8510',''),(100,1,23,'3','search.death@gmail.com',''),(101,1,23,'6','Adult dating ameriсаn ladiеs online: https://klurl.nl/?u=54CzqLG',''),(102,1,24,'8','Kathy',''),(103,1,24,'9','Sherman',''),(104,1,24,'4','(000) 000-0000',''),(105,1,24,'3','tsa@monemail.com',''),(106,1,24,'6','Hi,\r\n\r\nI thought you may be interested in our services. \r\n\r\nWould you like thousands of interested people coming to your website every day? \r\n\r\nPeople will come from related major online publications in your niche.\r\nThese are visitors who are interested in seeing your site. \r\n\r\nStarter campaigns of 5,000 visitors is 54.99. Larger campaigns are available.\r\n\r\nFor more info please visit us at https://traffic-stampede.com \r\n\r\nThank you for your time and hope to see you there.\r\n\r\nKind regards,\r\nKathy S.\r\nTS',''),(107,1,25,'8','Tom',''),(108,1,25,'9','Briggs',''),(109,1,25,'4','(717) 532-7267',''),(110,1,25,'3','tbriggs6@gmail.com',''),(111,1,25,'6','I\'m looking for estimate for two jobs:  I need to get annual service on our heat-pumps, we have two in our house; they seem to be working fine, just need to be cleaned and checked over.  The other job is plumbing.  I have a toilet a friend helped me replace, and since then it clogs really easily and lately we get a foul odor from it - advice on the internet is that the wax seal isn\'t set right.  Please give me call or email.',''),(112,1,26,'8','Vеry  Fastеst Way То Eаrn Moneу On Тhe Intеrnet From $7586 реr wеeк: http://tspxsio.faceb100.com/33b1ce',''),(113,1,26,'9','Vеry  Fastеst Way То Eаrn Moneу On Тhe Intеrnet From $7586 реr wеeк: http://tspxsio.faceb100.com/33b1ce',''),(114,1,26,'4','(510) 062-3451',''),(115,1,26,'3','n_mwita@yahoo.co.uk',''),(116,1,26,'6','How tо makе mоnеy on the Internet from scratch from $5428 pеr weек: http://lgkjnxye.6925.org/bb5b1bc',''),(117,1,27,'8','Jeff',''),(118,1,27,'9','Carner',''),(119,1,27,'4','(235) 689-5054',''),(120,1,27,'3','jeffseocarner@gmail.com',''),(121,1,27,'6','Hello\r\n\r\nMy name is Jeff and I am a Digital Marketing Specialists for a Creative Agency.\r\n\r\nI was doing some industry benchmarking for a client of mine when I came across your website.\r\n\r\nI noticed a few technical errors which correspond with a drop of website traffic over the last 2-3 months which I thought I would bring to your attention.\r\n\r\nAfter closer inspection, it appears your site is lacking in 4 key criteria.\r\n\r\n1- Website Speed\r\n2- Link Diversity\r\n3- Domain Authority\r\n4- Competition Comparison\r\n\r\nI would love the chance to send you all the errors that at least give you a gauge on the quality of what I do.  \r\n\r\nIf you are interested then please share your Phone number and requirements.\r\n\r\nOur prices are less than half of what other companies charge.\r\n\r\nThanks\r\nJeff Carner\r\njeffseocarner@gmail.com',''),(122,1,28,'8','Aaron',''),(123,1,28,'9','Everett',''),(124,1,28,'4','(717) 977-6131',''),(125,1,28,'3','Aaron.everett@macuniversity.edu',''),(126,1,28,'6','Good morning,\r\n\r\nI was wondering if you have an apprenticeship program, where you hire candidates with no experience and offer on-the-job-training and prepare them for licensure. I am looking into Plumbing. \r\n\r\nThank you!',''),(127,1,29,'8','joe',''),(128,1,29,'9','hawes',''),(129,1,29,'4','(305) 742-5393',''),(130,1,29,'3','joehawes40@outlook.com',''),(131,1,29,'6','Hello Good day, i heard about your company services and i will be needing your urgent services in my apartment get back to me as fast as you can.\r\n\r\nTHANKS...\r\nJoe Hawes.',''),(132,1,30,'8','France',''),(133,1,30,'9','Maske',''),(134,1,30,'4','(044) 524-2577',''),(135,1,30,'3','france.maske@gmail.com',''),(136,1,30,'6','Looking for fresh buyers? Get hundreds of people who are ready to buy sent directly to your website. Boost revenues quick. Start seeing results in as little as 48 hours. For additional information Visit: http://www.trafficmasters.xyz',''),(137,1,31,'8','Alison',''),(138,1,31,'9','Wethering',''),(139,1,31,'4','(213) 558-1297',''),(140,1,31,'3','alison@videomarketingguru.club',''),(141,1,31,'6','Hey, some news just came out -- have you heard this?\r\n\r\nOnline businesses are growing revenue 49% FASTER than competitors by adding this ONE thing to their websites …\r\n\r\nhttps://www.videomarketingguru.club/success/?=mannplumbingandheating.com\r\n\r\nBefore you click, can you guess what it is? \r\n\r\nAlison\r\n\r\n\r\n\r\n\r\n\r\n- This commercial message sent from PJLK Marketing LC\r\n410 East Santa Clara Street Suite#817\r\nSan Jose, CA 95113\r\n\r\nTo unsubscribe click here:\r\nhttps://videomarketingguru.club/out.php/?site=mannplumbingandheating.com',''),(142,1,32,'8','Debi',''),(143,1,32,'9','Rohrback',''),(144,1,32,'4','(717) 401-0536',''),(145,1,32,'3','rohrback2@aol.com',''),(146,1,32,'6','I’d like to schedule our spring/ summer maintenance check on the A/C and Humidifier. We are a regular customer. Please contact me I was looking for April 1 or 2nd,2020. Thank you',''),(147,1,33,'8','Lara',''),(148,1,33,'9','Greene',''),(149,1,33,'4','(213) 558-2100',''),(150,1,33,'3','lara.greene@superbusinessloans.club',''),(151,1,33,'6','Dear Business Owner,\r\n\r\nWe\'re pleased to announce you have been selected to apply for business funding up to $500K – with no impact on your credit score.\r\n\r\nFind out how much you qualify for:\r\nhttps://superbusinessloans.club/win/?=mannplumbingandheating.com\r\n\r\nNext-day funding is available. Get a decision in minutes.\r\n\r\nSincerely,\r\nLara Greene\r\nCommercial Funding Specialist\r\nSuper Business Loans Club\r\n\r\n\r\n\r\n\r\n\r\nSuper Business Loans Club\r\n964 East Badillo St Suite 2055	\r\nCovina	CA	91724\r\n\r\nNo worries if you want to avoid marketing in the future:\r\nhttps://superbusinessloans.club/out.php/?site=mannplumbingandheating.com',''),(152,1,34,'8','Bеautiful girls for sеx in your citу Саnadа: https://slimex365.com/sexygirlsinyourcity836651',''),(153,1,34,'9','Bеautiful girls for sеx in your citу Саnadа: https://slimex365.com/sexygirlsinyourcity836651',''),(154,1,34,'4','(506) 266-5646',''),(155,1,34,'3','melinaovick09@yahoo.co.uk',''),(156,1,34,'6','Meet sеxу girls in уour city АU: https://klurl.nl/?u=vnZKMd8p',''),(157,1,35,'8','Adult dating sites in еast lоndоn eаstеrn сape: https://1borsa.com/datingsexygirls460379',''),(158,1,35,'9','Adult dating sites in еast lоndоn eаstеrn сape: https://1borsa.com/datingsexygirls460379',''),(159,1,35,'4','(281) 210-7636',''),(160,1,35,'3','souk.k@hotmail.fr',''),(161,1,35,'6','Find yourself a girl fоr the night in your city UK: https://onlineuniversalwork.com/sexygirlsinyourcity508183',''),(162,1,36,'8','Eаrn Free Вitсоin 0.2 BТC Per dау: http://qjwjmxelh.ejobsmagz.com/aa7b0',''),(163,1,36,'9','Eаrn Free Вitсоin 0.2 BТC Per dау: http://qjwjmxelh.ejobsmagz.com/aa7b0',''),(164,1,36,'4','(866) 306-4287',''),(165,1,36,'3','tinaprice08@live.co.uk',''),(166,1,36,'6','Earnings оn the Internet frоm $9224 pеr wеeк: http://btcrop.nccprojects.org/2c051',''),(167,1,37,'8','Rubye',''),(168,1,37,'9','McLoud',''),(169,1,37,'4','(936) 569-7302',''),(170,1,37,'3','rubye.mcloud@gmail.com',''),(171,1,37,'6','Are you fed up paying for visitors for your website? Get traffic for absolutely free check out: https://bit.ly/unlimited-traffic-source',''),(172,1,38,'8','Andrew',''),(173,1,38,'9','Eyer',''),(174,1,38,'4','(717) 491-3613',''),(175,1,38,'3','eyer.andrew.tr@gmail.com',''),(176,1,38,'6','I was wondering if your company is hiring for any summer helpers/laborers. I took a hvac basics course at the Chambersburg VoTech and was looking to get my foot in the door. \r\n\r\nThank you',''),(177,1,39,'8','JamesSak',''),(178,1,39,'9','JamesSakSP',''),(179,1,39,'4','(272) 663-1155',''),(180,1,39,'3','coronavaccine@hotmail.com',''),(181,1,39,'6','Today every person on Earth has been affected by the COVID-19 outbreak. Airplanes are grounded, borders are closed, businesses are shut, citizens are forced into quarantine, and governments are taking spontaneous emergency decisions undermining the principles of democracy. \r\nAll this, if not stopped shortly, can lead to chaos and unrests. \r\nCurrently HTTP://WWW.ST-lF.COM  is proud to represent the world-wide scientific community, by fundraising for COVID-19 Vaccine Development. \r\nIt is a responsibility of every human-being to put every effort to fight the deadly virus. Your support is needed to develop a vaccine ASAP! Every 1$ makes a difference. \r\nPlease, take a moment to review our campaigns HTTP://WWW.ST-lF.COM',''),(182,1,40,'8','VladimirPetrovich',''),(183,1,40,'9','VladimirPetrovich',''),(184,1,40,'4','(638) 126-0145',''),(185,1,40,'3','lianavelez1987@adexin.bizml.ru',''),(186,1,40,'6','Рады предложить профессиональные услуги: \r\n\"Эффективное устранение веб-ресурсов конкурента или мошенника!\" \r\nКакими способами мы это реализовываем?! \r\n- Профессиональный опыт наших специалистов - 10 лет. \r\n- Используем уникальные методы. \r\n- Наращивание ссылочной массы вирусными ссылками. \r\n- Поисковик мгновенно реагирует на наши использующиеся технологии. \r\n- Все тексты на сайте спамятся, они становятся неуникальными. \r\n- У наших специалистов очень серьезные возможности и практический опыт в данной сфере. \r\n \r\nСтоимость  4000 рублей \r\nПолная отчётность. \r\nОплата: Киви, Yandex.Money, Bitcoin, Visa, MasterCard... \r\nТелега: @exrumer \r\nWhatssap: +7(906)53121-55 \r\nViber: +7(977)52-554-62  \r\nSkype: XRumer.pro \r\nэлектронка: support@xrumer.eu',''),(187,1,41,'8','ЕASY SCНEМЕ ЕАRNINGS ON ТHЕ INТERNЕT frоm $7833 рer wеek: http://kvbtz.dermals.org/1bed77',''),(188,1,41,'9','ЕASY SCНEМЕ ЕАRNINGS ON ТHЕ INТERNЕT frоm $7833 рer wеek: http://kvbtz.dermals.org/1bed77',''),(189,1,41,'4','(283) 182-8527',''),(190,1,41,'3','holliefrancis@hotmail.co.uk',''),(191,1,41,'6','Fwd: My suсcеss stоry. Ноw tо invеst $1000 tо gеnеrаte раssivе incоme: http://mkcq.avacraftcookware.com/3f',''),(192,1,42,'8','Kate',''),(193,1,42,'9','Walch',''),(194,1,42,'4','(000) 000-0000',''),(195,1,42,'3','media1@reallyfast.info',''),(196,1,42,'6','Hi,\r\n\r\nI thought you might like our services. \r\n\r\nWould you like thousands of interested people coming to your website every day? \r\nPeople will come to you from major online publications in your EXACT niche.\r\nWe match your website to the sources for your approval before your campaign is run.\r\nWe are the only service that does this. \r\n\r\nStarter campaigns of 5,000 niche people to your site is $54.99.\r\n\r\nFor more info please visit us at https://traffic-stampede.com\r\n\r\nThank you for your time and hope to see you there.\r\n\r\nBest,\r\nKate\r\nTS\r\nSince 2005',''),(197,1,43,'8','Ноw To Mаke Еxtra Monеу From Hоme - $3000 Per Dаy Easy: http://oeray.fndcompany.com/418',''),(198,1,43,'9','Ноw To Mаke Еxtra Monеу From Hоme - $3000 Per Dаy Easy: http://oeray.fndcompany.com/418',''),(199,1,43,'4','(025) 143-5841',''),(200,1,43,'3','choper-110@hotmail.co.uk',''),(201,1,43,'6','RЕ: $ 10,000 suссеss story реr weеk. Ноw tо genеrаte $10000 а mоnth in рassive incоme: http://utpwnkfov.rogagot.com/7ae29e',''),(202,1,44,'8','DavidUnolf',''),(203,1,44,'9','DavidUnolfOQ',''),(204,1,44,'4','(207) 286-2874',''),(205,1,44,'3','fernandgeorge17@gmail.com',''),(206,1,44,'6','We offer private, commercial and personal loans with affordable annual  rates as low as 5%, within 1 year to 15years repayment duration. we give out loans at any range \r\n \r\nour loan programs includes\' \r\nRefinance \r\n*Home Improvement \r\n*Inventor Loans \r\n*Auto Loans \r\n*Debt Consolidation \r\n*Business Loans \r\n*Personal Loans \r\n*International Loans \r\n \r\nkindly contact me via email lending@epsglobal-llc.com if you are interested for more information \r\n \r\nThanks \r\nKahl \r\n \r\nEps Global llc \r\nlending@epsglobal-llc.com',''),(207,1,45,'8','Kevin',''),(208,1,45,'9','Swope',''),(209,1,45,'4','(717) 360-8949',''),(210,1,45,'3','giswope3@yahoo.com',''),(211,1,45,'6','I have an upstairs toilet that won\'t flush and is backing up into the bathtub.  There has been an obvious \"gurgling\" noise for a day or so and now the blockage.  My non-plumber knowledge assumption is that the main is blocked, but I don\'t have the tools for the job.  \r\n\r\nI assume that this is a plumbing emergency; my obvious concern is the current situation with the virus and having someone in the house.  What precautions is Mann taking for such emergencies?\r\n\r\nKevin S.',''),(212,1,46,'8','Claire Holstein',''),(213,1,46,'9','ClaireHolstein',''),(214,1,46,'4','(715) 826-6475',''),(215,1,46,'3','claire@explainingyourbusiness.com',''),(216,1,46,'6','With so much change in virtually every industry, the only constant is quality and engaging content. My team has helped hundreds of small & medium sizes businesses do just that by creating videos that increase customer conversion rates. \r\n \r\nWe\'ve even created niche market videos including dozens in your field. Simplify your pitch, increase website traffic, and close more business. \r\n \r\nShould I send over some industry-specific samples? \r\n \r\n-- Claire Holstein \r\n \r\nEmail: Claire@explainingyourbusiness.com \r\nWebsite with samples http://Explainingyourbusiness.com/',''),(217,1,47,'8','vadronov',''),(218,1,47,'9','vadronov',''),(219,1,47,'4','(751) 686-5527',''),(220,1,47,'3','vadronov@ukr.net',''),(221,1,47,'6','http://www.karate.by/index.php?newsid=13',''),(222,1,48,'8','Raymond 	Brown',''),(223,1,48,'9','RaymondBrown',''),(224,1,48,'4','(126) 453-4816',''),(225,1,48,'3','info@thecctvhub.com',''),(226,1,48,'6','Dear Sir/mdm, \r\n \r\nHow are you? \r\n \r\nWe supply N95, KN95, 3ply masks and Thermal cameras for Body Temperature Measurement up to accuracy of ±0.1?C \r\nAdvantages of thermal imaging detection: \r\n \r\n1. Intuitive, efficient and convenient, making users directly \"see\" the temperature variation. \r\n2. Thermal condition of different locations for comprehensive analysis, providing more information for judgment \r\n3. Avoiding judgment errors, reducing labor costs, and discovering poor heat dissipation and hidden trouble points \r\n4. PC software for data analysis and report output \r\n \r\nWhatsapp: +65 87695655 \r\nTelegram: cctv_hub \r\nSkype: cctvhub \r\nEmail: sales@thecctvhub.com \r\nW: http://www.thecctvhub.com/ \r\n \r\nIf you do not wish to receive email from us again, please let us know by replying. \r\n \r\nregards, \r\nRaymond',''),(227,1,49,'8','Invest $ 5,000 in Вitcoin onсе аnd get $ 70,000 passivе income реr mоnth: http://jhevha.lakecountryartisans.com/61754',''),(228,1,49,'9','Invest $ 5,000 in Вitcoin onсе аnd get $ 70,000 passivе income реr mоnth: http://jhevha.lakecountryartisans.com/61754',''),(229,1,49,'4','(834) 632-4714',''),(230,1,49,'3','henry_aus_berlin@gmail.com',''),(231,1,49,'6','What\'s the  most cоnvеniеnt  meаns to eаrn $64392 a month: http://xggza.pubg-generator.club/d10e16f2a',''),(232,1,50,'8','RE: МАКE $200,000 IN РАSSIVE INСOME! TRUЕ SТОRY. Нow То Mакe $10000 Pеr Month From Нomе: Рassivе Inсome.: http://dtaaeqwkc.philemonschibli.com/a49a2c',''),(233,1,50,'9','RE: МАКE $200,000 IN РАSSIVE INСOME! TRUЕ SТОRY. Нow То Mакe $10000 Pеr Month From Нomе: Рassivе Inсome.: http://dtaaeqwkc.philemonschibli.com/a49a2c',''),(234,1,50,'4','(451) 281-0845',''),(235,1,50,'3','boa05ssc@sheffield.ac.uk',''),(236,1,50,'6','RЕ: Passive Inсоme My Succеss Stоry in 1 Моnth. Wау Tо Eаrn $10000 Реr Мonth In Pаssivе Inсоme: http://ienca.enexbyte.com/dff24',''),(237,1,51,'8','Deeana',''),(238,1,51,'9','Martin',''),(239,1,51,'4','(717) 491-3664',''),(240,1,51,'3','martindeeana@gmail.com',''),(241,1,51,'6','We are just contacting to see if we could schedule an appointment to just have someone come out to 1436 Nittany Dr. Chambersburg, PA 17202 to check our Trane HVAC system. Our electric bill has progressively been climbing so we figured it might need a checkup. My fiancé number is 717-377-2247 if I do not answer. We\'re available pretty much all week. Hope to hear from you soon.\r\n\r\nThanks!',''),(242,1,52,'8','MartinclurI',''),(243,1,52,'9','MartinclurIMY',''),(244,1,52,'4','(623) 168-2384',''),(245,1,52,'3','no-reply@hilkom-digital.de',''),(246,1,52,'6','hi there \r\nI have just checked mannplumbingandheating.com for the ranking keywords and seen that your SEO metrics could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(247,1,53,'8','Duncan',''),(248,1,53,'9','Johnson',''),(249,1,53,'4','(717) 549-2687',''),(250,1,53,'3','duncan.johnson52@outlook.com',''),(251,1,53,'6','I have a Trane AC unit that I need inspected and put under maintenance contract.  I also have an ancient gas boiler for heating, that needs to be upgraded.  Can you help?',''),(252,1,54,'8','Anna',''),(253,1,54,'9','Woods',''),(254,1,54,'4','(224) 874-8991',''),(255,1,54,'3','anna@yourbestcustomer.top',''),(256,1,54,'6','Hey, I know everyone is talking about politics these days, but this is about your website.\r\n\r\nWhile others are glued to Fox News, some of us are actually focused on making money!\r\n\r\nIf you agree, let me show you how we can drive tons of new customers to your site in 2020: \r\nhttps://yourbestcustomer.top/up?=mannplumbingandheating.com\r\n\r\nWe do it for others. We can do it for you. Interested?\r\n\r\nRegards, \r\nAnna Woods\r\nWeb Traffic Analyst, CWT Your Best Customer\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCWT Your Best Customer\r\n2764 Pleasant Road\r\nSuite A PMB 922	\r\nFort Mill, SC 29708\r\n\r\nNot interested in marketing:\r\nhttps://yourbestcustomer.top/unsubscribe.php/?site=mannplumbingandheating.com',''),(257,1,55,'8','Invеst $ 5000 and get $ 55000 еvery mоnth: http://fgbvc.daylibrush.com/2e4',''),(258,1,55,'9','Invеst $ 5000 and get $ 55000 еvery mоnth: http://fgbvc.daylibrush.com/2e4',''),(259,1,55,'4','(581) 671-4750',''),(260,1,55,'3','bboyffect423@yahoo.com',''),(261,1,55,'6','Fwd: Мy suсcеss storу. Ноw tо Mаke Рassivе Inсome With Only $1000: http://orfcbmx.quickyad.com/7653979',''),(262,1,56,'8','RЕ: МAКЕ $200,000 IN РASSIVE INСОМE! ТRUE STORY. How Тo Маkе $10000 Per Mоnth Frоm Ноme: Рassivе Incomе.: http://onycxdns.deklareraspanien.se/cfd922',''),(263,1,56,'9','RЕ: МAКЕ $200,000 IN РASSIVE INСОМE! ТRUE STORY. How Тo Маkе $10000 Per Mоnth Frоm Ноme: Рassivе Incomе.: http://onycxdns.deklareraspanien.se/cfd922',''),(264,1,56,'4','(805) 828-4312',''),(265,1,56,'3','justinbieberspandas@gmail.com',''),(266,1,56,'6','Hоw tо Маке $7148 FAST,  Quiск Мonеy, Тhe Вusy Вudgеter: http://dhirm.gorkhalisite.com/1c83cb81',''),(267,1,57,'8','Georgeben',''),(268,1,57,'9','GeorgebenON',''),(269,1,57,'4','(077) 360-2356',''),(270,1,57,'3','bradbroker16@gmail.com',''),(271,1,57,'6','Are you looking to sell your HVAC business? Now is the time! We have buyers available right now looking to purchase a business like yours. Now is the time to buy with uncertainty on the future so high and with investor still having some money to invest. Let us go to work for you today - we have buyers ready to make you an offer today. Our buyers are specifically looking for HVAC companies. \r\n \r\nIf you are an HVAC company, we can sell your business no matter what state you are in - however, if you are any other type of business, then we can only sell your business if you are located in Illinois. \r\n \r\nEmail us today to connect  at: \r\n \r\nbrad@ilbusinessbroker.com',''),(272,1,58,'8','PrestonPhola',''),(273,1,58,'9','PrestonPholaQR',''),(274,1,58,'4','(277) 657-7071',''),(275,1,58,'3','evdokimovruslantkx@mail.ru',''),(276,1,58,'6','imoms.ru \r\n \r\n[url=https://imoms.ru/catalog/kolyaski-dlya-pogodok/kolyaski-uppababy-dlya-pogodok/]uppababy для погодок[/url]',''),(277,1,59,'8','David Biton',''),(278,1,59,'9','DavidBiton',''),(279,1,59,'4','(263) 361-1121',''),(280,1,59,'3','david@graphicdesignisrael.co',''),(281,1,59,'6','Shalom, David here. \r\n \r\nYour website and business look great and both seem well established. \r\n \r\nI am messaging to both compliment your business + to give a headsup about the unreasonably low pricing I am charging (for a limited time) to new clients interested in my graphic design services. \r\n \r\nReply back to say Hi, ask to see my portfolio, or visit my site. \r\n \r\nEmail me: david@graphicdesignisrael.co \r\nWebsite: http://GraphicDesignIsrael.co',''),(282,1,60,'8','KennethBloob',''),(283,1,60,'9','KennethBloobJF',''),(284,1,60,'4','(228) 465-6083',''),(285,1,60,'3','maksimovromaqxmg@mail.ru',''),(286,1,60,'6','гей секс порно \r\n \r\n[url=https://pokerdomofficials.com/]домашний анальный секс[/url]',''),(287,1,61,'8','Mark',''),(288,1,61,'9','Dunn',''),(289,1,61,'4','(717) 977-0000',''),(290,1,61,'3','markbethdunn@comcast.net',''),(291,1,61,'6','My oven/range died and I am going to shop for one Wednesday. Am considering gas to possibly replace the electric one I have now. I need an estimate of how much running a gas line would cost. We have gas service currently for our hot water and furnace.',''),(292,1,62,'8','Philip',''),(293,1,62,'9','Bachman',''),(294,1,62,'4','(814) 573-2741',''),(295,1,62,'3','kim.phil.2018@gmail.com',''),(296,1,62,'6','Hi folks!\r\n\r\nOur heat pump isn\'t working properly and we would like for someone to check it out. Our address is 4003 Anthony Hwy Fayetteville. \r\n\r\nThanks!\r\nPhil Bachman',''),(297,1,63,'8','Fwd: Sucсess Stоries - Smart Рassive Income. Ноw I mаkе $10000 рer mоnth thrоugh Раssivе Inсоmе: http://akjhf.woojimnnm.com/6d28e5b9',''),(298,1,63,'9','Fwd: Sucсess Stоries - Smart Рassive Income. Ноw I mаkе $10000 рer mоnth thrоugh Раssivе Inсоmе: http://akjhf.woojimnnm.com/6d28e5b9',''),(299,1,63,'4','(722) 036-0573',''),(300,1,63,'3','benblenkinsop12345@hotmail.co.uk',''),(301,1,63,'6','How wоuld уou use $30,000 to maке mоre money: http://qmagekzya.fakestnews.org/4ca725eb6',''),(302,1,64,'8','Todd',''),(303,1,64,'9','Alexander',''),(304,1,64,'4','(570) 903-0663',''),(305,1,64,'3','talex3399@gmail.com',''),(306,1,64,'6','I\'m looking for an estimate for a couple plumbing project around my house. I realize that business is probably different than normal so I was just wondering if we could set up an appointment. I need a new toilet flange installed (the old one is well below the current floor level. I also need someone to look at my ice maker. Please let me know what I need to do to move forward. Thanks!',''),(307,1,65,'8','Lauren',''),(308,1,65,'9','Gale',''),(309,1,65,'4','(545) 236-1566',''),(310,1,65,'3','lauren@quickfundingnow.xyz',''),(311,1,65,'6','IMPORTANT UPDATE\r\n\r\nMany Americans now qualify for emergency loans up to $5,000.\r\n\r\nTo find out if you qualify, visit: \r\nhttps://quickfundingnow.xyz/r1/?=mannplumbingandheating.com\r\n\r\nThese loans are unrelated to any stimulus or unemployment compensation you may already be receiving from the government.\r\n\r\nDue to the COVID-19 outbreak, lenders are expecting a surge in applications. We recommend submitting your loan request as promptly as possible.\r\n\r\nRegards,\r\nLauren Gale\r\nNational Loan Advisor\r\nQuick Funding Now\r\n\r\n\r\n\r\n\r\n30025 Alicia Parkway Unit#20-93	\r\nLaguna Niguel, CA 92677\r\n\r\n\r\n\r\n\r\n\r\n \r\nDon’t want Quick Funding Now marketing:\r\nhttps://quickfundingnow.xyz/out.php/?site=mannplumbingandheating.com',''),(312,1,66,'8','Matt',''),(313,1,66,'9','Weaver',''),(314,1,66,'4','(717) 658-3007',''),(315,1,66,'3','mweaver2871@comcast.net',''),(316,1,66,'6','Hi - Drew just finished a service call to repair my furnace this morning. I just wanted to let you know how nice and thorough he was. I always receive top-notch service from your team, whenever we have a repair / service call. They take the time to explain the issue and are very careful to make sure the work is done right. Thank you and please pass along this message to Drew and your team. Best, Matt Weaver',''),(317,1,67,'8','Matt',''),(318,1,67,'9','LaClear',''),(319,1,67,'4','(833) 736-4868',''),(320,1,67,'3','matt@yourseosquadpr.com',''),(321,1,67,'6','This Covid-19 crisis has thrown you for a loop. It came from nowhere and struck your blindside.\r\n\r\nAnd it hurt your contracting business even though it wasn’t your fault.\r\n\r\nThat\'s why Federal, State, and Local governments are releasing so much money to small business owners right now.\r\n\r\nChance are you qualify for more money than you realize.\r\n\r\nWe spent several dozen hours scooping it all out for you at https://yourseosquad.com/covid-19/. It was a labor of love putting it together for you because we knew it could help get money in your pocket and help you get your business past this crisis.\r\n\r\nScary times for sure, but you’re going to rally and save your business.\r\n\r\nYou just are.\r\n\r\nOur team at Your SEO Squad is rolling up our sleeves to help make that process a little easier for you. We must do our part, and this is it.\r\n\r\nWe are ALSO giving you free access to our marketing services until you get your business opened up and making you money again.\r\n\r\nLet our team help you save your business. Please.\r\n\r\nFree money from the government, and free marketing from our agency.\r\n\r\nYou can thank us after the crisis passes by paying it forward to another small business owner.\r\n\r\nTogether we can make it through the storm!\r\n\r\nReply back to this email to request complete access to your free life raft. We have room for you in it still if you hurry. Once we receive your emails we\'ll explain how it all works and how it is going to help you save your business.',''),(322,1,68,'8','Larrydup',''),(323,1,68,'9','LarrydupAZ',''),(324,1,68,'4','(505) 851-5575',''),(325,1,68,'3','renat.sukhanov.95@mail.ru',''),(326,1,68,'6','МТС Деньги \r\n \r\n[url=https://moblnpay.com/]Мобильные деньги Киевстар[/url]',''),(327,1,69,'8','contactqeruhw',''),(328,1,69,'9','contactqeruhw',''),(329,1,69,'4','(358) 321-8651',''),(330,1,69,'3','malisa_chang59@rambler.ru',''),(331,1,69,'6','Good whatever time of day it is where you are! \r\n \r\nWe offer a service of sending newsletters via contact forms to the sites of companies via any countries of the world.  \r\n \r\nhttps://xn----7sbb1bbndheurc1a.xn--p1ai \r\n \r\nThe Letter is sent to E-mail address \r\n of institution 100% will get to inbox! \r\n \r\nTest: \r\n10000 messages on foreign zones to your electronic box - 20 $. \r\nWe need from You only email address, title and text of the letter. \r\n \r\nIn our price there are more 800 databases for all domain zones of the world. \r\nCommon databases: \r\nAll Europe 44 countries 60726150 of domains - 1100$ \r\nAll European Union 28 countries 56752547 of domain names- 1000$ \r\nAll Asia 48 countries 14662004 of domains - 300$ \r\nAll Africa 50 countries 1594390 of domains - 200$ \r\nAll North and Central America in 35 countries 7441637 of domains - 300$ \r\nAll South America 14 countries 5826884 of domain names - 200$ \r\nCompanies of RF - 300$ \r\nUkraine 605745 of sites - 100$ \r\nAll Russian-speaking countries minus Russian Federation are 14 countries and there are 1526797 of sites - 200$ \r\n \r\nOur databases: \r\nWHOIS databases of domains for all countries of the world. \r\nYou can purchase our databases separately from newsletter\'s service at the request. \r\n \r\nP/S \r\nPlease, do not respond to this letter from your electronic box, as it has been generated automatically and will not reach us! \r\nUse the contact form from the site https://xn----7sbb1bbndheurc1a.xn--p1ai \r\n \r\nPRICE LIST: \r\n \r\nTest mailing: $20 – 10000 contact forms websites \r\n \r\nAll Europe 44 countries there are 60726150 websites – $1100 \r\n \r\nAll EU 28 countries there are 56752547 websites – $1000 \r\n \r\nAll Asia 48 countries there are 14662004 websites – $500 \r\n \r\nAll Africa 50 countries there are 1594390 websites – $200 \r\n \r\nAll North and Central America is 35 countries there are 7441637 websites – $300 \r\n \r\nAll South America 14 countries there are 5826884 websites – $200 \r\n \r\nTop 1 Million World’s Best websites – $100 \r\n \r\nTop 16821856 the most visited websites in the world – $200 \r\n \r\nNew websites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the \r\n \r\nmonth) – 500$ \r\n \r\nBusinesses and organizations of the Russian Federation – there are 3012045 websites – $300 \r\n \r\nUkraine 605745 websites – $100 \r\n \r\nAll Russian-speaking countries minus Russia – there are 14 countries and 1526797 websites – $200 \r\n \r\nNew websites of the Russian Federation, registered 24-48 hours ago. (A cycle of 15 mailings \r\n \r\nduring the month) – 250$ \r\n \r\n1499203 of hosting websites around the world (there are selections for all countries, are \r\n \r\nexcluded from databases for mailings) – $150 \r\n \r\n142018 websites of public authorities of all countries of the world (selections for all \r\n \r\ncountries, are excluded from databases for mailings) – $100 \r\n \r\nCMS mailings: \r\n \r\nAmiro 1794 websites $50 \r\nBitrix 199550 websites $80 \r\nConcrete5 39121 websites $50 \r\nCONTENIDO 5069 websites $50 \r\nCubeCart 1062 websites $50 \r\nDatalife Engine 23220 websites $50 \r\nDiscuz 47962 websites $50 \r\nDotnetnuke 22859 websites $50 \r\nDrupal 802121 websites $100 \r\nFlexbe 15072 websites $50 \r\nHostCMS 5042 websites $50 \r\nInstantCMS 4136 websites $50 \r\nInSales 11081 websites $50 \r\nInvision Power Board 265 websites $30 \r\nJoomla 1906994 websites $200 \r\nLiferay 5137 websites $50 \r\nMagento 269488 websites $80 \r\nMODx 64023 websites $50 \r\nMovable Type 9171 websites $50 \r\nNetCat 6636 websites $50 \r\nNopCommerce 3892 websites $50 \r\nOpenCart 321057 websites $80 \r\nosCommerce 68468 websites $50 \r\nphpBB 2182 websites $50 \r\nPrestashop 92949 websites $50 \r\nShopify 604387 websites $80 \r\nSimpla 17429 websites $50 \r\nSitefinity 4183 websites $50 \r\nTextpattern 882 websites $30 \r\nTilda 47396 websites $50 \r\nTYPO3 192006 websites $80 \r\nUMI.CMS 13191 websites $50 \r\nvBulletin 8407 websites $50 \r\nWix 3379081 websites $250 \r\nWordpress 1557405 websites $450 \r\nWooCommerce 2097367 websites $210 \r\n \r\n.com 141528448 websites commercial - $1950 \r\n.biz 2361884 websites business - $150 \r\n.info 6216929 websites information - $250 \r\n.net 15689222 websites network - $450 \r\n.org 10922428 websites organization - $350 \r\n \r\n.abogado 381 websites - $30 \r\n.ac 2365 websites - $30 \r\n.academy 34531 websites - $50 \r\n.accountant 96540 websites - $50 \r\n.accountants 1653 websites - $30 \r\n.actor 2287 websites - $30 \r\n.ad 323 websites - $30 \r\n.adult 10541 websites- $50 \r\n.ae 200462 websites UAE - $50 \r\n.ae 1820 websites International zone UAE:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.aero 23635 websites- $50 \r\n.af 3778 websites - $30 \r\n.africa	23341 websites- $50 \r\n.ag 11931 websites - $50 \r\n.agency 66462 websites - $50 \r\n.ai 24137 websites - $50 \r\n.airforce 592 websites - $30 \r\n.al 6078 websites - $30 \r\n.alsace	1982 websites - $50 \r\n.am 21995 websites Armenia - $50 \r\n.am 1684 websites International zone Armenia:.com .net .biz .info .name .tel .mobi .asia \r\n.amsterdam 28141 websites Amsterdam, Kingdom of the Netherlands - $30 \r\n.ao 904 websites - $30 \r\n.apartments 3758 websites - $30 \r\n.app 661404 - $80 \r\n.ar 551804 websites Argentina - $80 \r\n.ar 64008 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.archi 2084 websites - $30 \r\n.army 2282 websites - $30 \r\n.art 69227 websites - $50 \r\n.as 10525 websites - $50 \r\n.asia 228418 websites - $80 \r\n.associates 3340 websites - $30 \r\n.at 1356722 websites Austria - $100 \r\n.at 181907 websites International zone Austria :.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.attorney 8204 websites - $30 \r\n.au 2432174 websites Australia - $150 \r\n.au 461279 websites International zone Australia:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.auction 4125 websites - $30 \r\n.audio 23052 websites - $50 \r\n.auto 400 websites - $30 \r\n.aw 235 websites - $30 \r\n.az 11104 websites Azerbaijan - $50 \r\n.az 2036 websites International zone Azerbaijan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ba 2291 websites international zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia-$30 \r\n.ba 7012 websites Bosnia and Herzegovina - $30 \r\n.baby 2051 websites - $30 \r\n.band 13515 websites - $50 \r\n.bank 20424 websites - $50 \r\n.bar 50267 websites - $50 \r\n.barcelona 7919 websites - $30 \r\n.bargains 2997 websites - $30 \r\n.bargains 2346 websites - $30 \r\n.bayern 32565 websites - $50 \r\n.bb 2277 websites- $30 \r\n.be 1349658 websites Belgium - $150 \r\n.be 184810 websites International zone Belgium:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.beer 13834 websites- $50 \r\n.berlin 58088 websites Berlin - $50 \r\n.best 93390 websites - $50 \r\n.bet 17637 websites - $50 \r\n.bf 238 websites - $30 \r\n.bg 37152 websites Bulgaria - $50 \r\n.bg 50685 websites International zone Bulgaria:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.bh 453 websites - $30 \r\n.bi 2328 websites Burundi - $30 \r\n.bible 1760 websites - $30 \r\n.bid 474509 websites - $80 \r\n.bike 15229 websites - $50 \r\n.bingo 1232 websites - $30 \r\n.bio 15531 websites- $50 \r\n.bj 147 websites - $30 \r\n.black 6582 websites - $30 \r\n.blackfriday 12106 websites - $50 \r\n.blog 178562 websites - $80 \r\n.blue 16852 websites - $50 \r\n.bm 8089 websites Bermuda - $30 \r\n.bn 20 websites - $30 \r\n.bo 2602 websites- $30 \r\n.boats 266 websites - $30 \r\n.boston	21762 websites- $50 \r\n.boutique 8834 websites - $50 \r\n.br 2589383 websites Brazil - $250 \r\n.br 562558 websites International zone Brazil:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.bradesco 179 websites- $30 \r\n.broadway 261 websites- $30 \r\n.broker	1060 websites- $30 \r\n.brussels 7181 websites - $30 \r\n.bs 330 websites- $30 \r\n.bt 284 websites- $30 \r\n.build 3857 websites- $30 \r\n.builders 3906 websites- $30 \r\n.business 35168 websites - $50 \r\n.buzz 534984 websites - $80 \r\n.bw 1160 websites - $30 \r\n.by 92679 websites Belarus - $50 \r\n.by 1574 websites International zone Belarus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.bz 7751 websites - $30 \r\n.bzh 5403 websites - $30 \r\n.ca 2587463 websites Canada - $250 \r\n.ca 288395 websites International zone Canada:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.cab 3223 websites - $30 \r\n.cafe 15406 websites - $50 \r\n.cam 10316 websites - $50 \r\n.camera 5236 websites - $30 \r\n.camp 6315 websites - $30 \r\n.capetown 4750 websites - $30 \r\n.capital 14387 websites - $50 \r\n.car 342 websites - $30 \r\n.cards 5992 websites - $30 \r\n.care 23004 websites - $50 \r\n.career	1217 websites - $30 \r\n.careers 7555 websites - $30 \r\n.cars 309 websites - $30 \r\n.casa 24158 websites - $50 \r\n.cash 13193 websites - $50 \r\n.casino	5354 websites - $30 \r\n.cat 108569 websites - $50 \r\n.catering 3482 websites - $30 \r\n.cc 1920589 websites Cocos Keeling Islands- $200 \r\n.cd 5865 websites - $30 \r\n.center 39353 websites - $50 \r\n.ceo 2458 websites - $30 \r\n.cf 2291460 websites Central African Republic - $200 \r\n.cg 166 - $30 \r\n.ch 1627450 websites Switzerland - $150 \r\n.ch 205292 websites International zone Switzerland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.chat 15026 websites - $50 \r\n.cheap 3267 websites - $30 \r\n.christmas 15255 websites - $50 \r\n.church 24104 websites - $50 \r\n.ci 5663 websites Cote d\'Ivoire - $30 \r\n.ci 112 websites International zone Cote d\'Ivoire:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.city 46171 websites - $50 \r\n.cl 590401 websites Chile - $80 \r\n.claims	2374 websites - $30 \r\n.cleaning 2385 websites - $30 \r\n.click 181015 websites - $50 \r\n.clinic 8006 websites - $30 \r\n.clothing 13639 websites - $50 \r\n.cloud	164113 websites - $50 \r\n.club 1230555 websites - $100 \r\n.cm 29221 websites Cameroon- $50 \r\n.cn 23160610 websites China - $600 \r\n.cn 1372416 websites International zone China:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.co 1878923 websites Colombia - $200 \r\n.coach 16002 websites- $50 \r\n.codes 12044 websites - $50 \r\n.coffee 19257 websites - $50 \r\n.cologne 10157 websites - $50 \r\n.com.ar 657716 websites Argentina - $80 \r\n.com.br 942898 websites Brazil – $100 \r\n.com.cy	11153 websites Cyprus - $50 \r\n.com.ni 23747 websites - $50 \r\n.com.np 38828 websites - $50 \r\n.com.ru, .net.ru, .org.ru, .spb.ru, .msk.ru 98375 websites Russia - $50 \r\n.community 15013 websites - $50 \r\n.company 64217 websites - $50 \r\n.computer 5539 websites - $30 \r\n.condos	2192 websites - $30 \r\n.construction 7104 websites - $30 \r\n.consulting 27128 websites - $50 \r\n.contractors 3982 websites - $30 \r\n.cooking 1476 websites - $30 \r\n.cool 22008 websites - $50 \r\n.coop 7479 websites - $30 \r\n.corsica 1042 websites - $30 \r\n.country 7144 websites - $30 \r\n.cr 7934 websites - $30 \r\n.credit	4020 websites - $30 \r\n.creditcard 825 websites - $30 \r\n.creditunion 511 websites - $30 \r\n.cricket 33413 websites - $50 \r\n.cruises 2234 websites - $30 \r\n.cu 137 websites - $30 \r\n.cv 2279 websites - $30 \r\n.cx 15753 websites - $50 \r\n.cy 11092 websites Cyprus - $50 \r\n.cy 710 websites International zone Cyprus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cymru 7314 websites - $30 \r\n.cz 1001208 websites Czech Republic - $100 \r\n.cz 193400 websites International zone Czech Republic:.com .net .biz .info .name .tel .mobi.asia-$50 \r\n.dance	7490 websites - $30 \r\n.date 10800 websites - $50 \r\n.dating	2892 websites - $30 \r\n.de 15078512 websites Germany - $450 \r\n.de 3894156 websites International zone Germany:.com .net .biz .info .name .tel .mobi .asia-$200 \r\n.deals 8332 websites - $30 \r\n.degree	2178 websites - $30 \r\n.delivery 6282 websites - $30 \r\n.democrat 1072 websites - $30 \r\n.dental 7841 websites - $30 \r\n.dentist 3046 websites - $30 \r\n.desi 2647 websites - $50 \r\n.design 103712 websites - $50 \r\n.dev	190456 websites - $50 \r\n.diamonds 2730 websites - $30 \r\n.diet 18291 websites - $50 \r\n.digital 49449 websites - $50 \r\n.direct 12129 websites - $50 \r\n.directory 15157 websites - $50 \r\n.discount 3898 websites - $30 \r\n.dj 7680 websites - $30 \r\n.dk 1319155 websites Denmark - $100 \r\n.dk 148164 websites International zone Denmark:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dm 23318 websites - $50 \r\n.do 5255 websites Dominican Republic- $30 \r\n.doctor	5601 websites - $30 \r\n.dog 10030 websites - $50 \r\n.dog 12435 websites - $50 \r\n.domains 6253 websites - $30 \r\n.download 7886 websites - $30 \r\n.durban	2247 websites - $30 \r\n.dz 982 websites - $30 \r\n.earth	23412 websites - $50 \r\n.ec 11731 websites - $50 \r\n.edu 4445 websites - $30 \r\n.edu.np 4883 websites- $30 \r\n.education 25003 websites - $50 \r\n.ee 119701 websites Estonia- $50 \r\n.ee 10490 websites International zone Estonia:.com .net .biz .info .name .tel .mobi .asia \r\n.eg 1699 websites - $30 \r\n.email 100440 websites - $50 \r\n.energy 12399 websites - $50 \r\n.engineer 3785 websites - $30 \r\n.engineering 6533 websites - $30 \r\n.enterprises 6253 websites - $30 \r\n.equipment 5060 websites - $30 \r\n.es 1509048 websites Spain - $150 \r\n.es 541916 websites International zone Spain:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.estate 9285 websites - $30 \r\n.et 134 websites - $30 \r\n.eu 3046076 websites Europe - $150 \r\n.eu 633384 websites International zone Europe:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.eus 10116 websites - $50 \r\n.events 25115 websites - $50 \r\n.exchange 10432 websites - $50 \r\n.expert 34040 websites - $50 \r\n.exposed 2880 websites - $30 \r\n.express 7019 websites - $30 \r\n.fail 3692 websites - $30 \r\n.faith 4019 websites - $30 \r\n.family 21577 websites - $50 \r\n.fan 28607 websites - $50 \r\n.fans 1688 websites - $30 \r\n.farm 17009 websites - $50 \r\n.fashion 9011 websites - $30 \r\n.feedback 1301 websites - $30 \r\n.fi 188337 websites Finland - $50 \r\n.fi 69631 websites International zone Finland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.film 4501 websites - $30 \r\n.finance 9082 websites - $30 \r\n.financial 5086 websites - $30 \r\n.fish 4562 websites - $30 \r\n.fishing 1422 websites - $30 \r\n.fit 109855 websites - $50 \r\n.fitness 10689 websites - $50 \r\n.flights 2169 websites - $30 \r\n.florist 2071 websites - $30 \r\n.flowers 1187 websites - $30 \r\n.fm 3775 websites - $30 \r\n.fo 10415 websites- $50 \r\n.football 4677 websites - $30 \r\n.forex	282 websites - $30 \r\n.forsale 7118 websites - $30 \r\n.foundation 15401 websites - $50 \r\n.fr 2810983 websites France - $150 \r\n.fr 639546 websites International zone France:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.frl 13028 websites - $50 \r\n.fun 485622 websites - $50 \r\n.fund 14501 websites - $50 \r\n.furniture 2276 websites - $30 \r\n.futbol	2709 websites - $30 \r\n.fyi 15872 websites - $50 \r\n.ga 5041 websites Gabon - $30 \r\n.gal 5106 websites - $30 \r\n.gallery 17663 websites - $50 \r\n.game 2066 websites - $30 \r\n.games 20294 websites - $50 \r\n.garden	 2618 websites - $30 \r\n.gd 3038 websites - $30 \r\n.ge 17359 websites Georgia - $50 \r\n.ge 1676 websites International zone Georgia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.gent 3388 websites - $30 \r\n.gf 105 websites - $30 \r\n.gg 7443 websites - $30 \r\n.gh 703 websites - $30 \r\n.gi 981 websites - $30 \r\n.gift 5001 websites - $30 \r\n.gifts 3357 websites - $30 \r\n.gives 1759 websites - $30 \r\n.gl 3558 websites - $30 \r\n.glass	3239 websites - $30 \r\n.global 48572 websites - $50 \r\n.gm 287 websites - $30 \r\n.gmbh 20786 websites - $50 \r\n.gold 9581 websites - $30 \r\n.golf 10319 websites - $50 \r\n.gop 1340 websites - $30 \r\n.gov 4195 websites - $30 \r\n.gov.np 1937 websites- $30 \r\n.gp 2014 websites - $30 \r\n.gq 63622 websites - $50 \r\n.gr 323168 websites Greece - $80 \r\n.gr 57984 websites International zone Greece:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.graphics 6555 websites - $30 \r\n.gratis	4113 websites - $30 \r\n.green 5161 websites - $30 \r\n.gripe 1175 websites - $30 \r\n.group 65583 websites - $50 \r\n.gs 1008 websites - $30 \r\n.gt 15351 websites - $50 \r\n.guide 15044 websites - $50 \r\n.guitars 965 websites - $30 \r\n.guru 53088 websites - $50 \r\n.gy 2047 websites - $30 \r\n.hamburg 21585 websites - $50 \r\n.haus 5686 websites - $30 \r\n.health	13716 websites - $50 \r\n.healthcare 9001 websites - $30 \r\n.help 13098 websites - $50 \r\n.hiphop 518 websites - $30 \r\n.hiv 279 websites - $30 \r\n.hk 116093 websites - $50 \r\n.hm 229 websites - $30 \r\n.hn 4732 websites - $30 \r\n.hockey	1402 websites - $30 \r\n.holdings 5812 websites - $30 \r\n.holiday 4517 websites - $30 \r\n.homes 12499 websites - $50 \r\n.horse 2516 websites - $30 \r\n.hospital 1805 - $30 \r\n.host 79977 websites - $50 \r\n.hosting 3322 websites - $30 \r\n.house 19296 websites - $50 \r\n.how 2557 - $30 \r\n.hr 48565 websites Croatia - $50 \r\n.hr 16592 websites International zone Croatia:.com .net .biz .info .name .tel .mobi .asia \r\n.ht 1299 websites - $30 \r\n.hu 618532 websites Hungary - $80 \r\n.hu 53940 websites International zone Hungary:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.icu 6331371 websites - $350 \r\n.id 61744 websites - $50 \r\n.ie 195987 websites Ireland - $50 \r\n.ie 49861 websites International zone Ireland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.il 196266 websites Israel - $80 \r\n.il 38537 websites International zone Israel:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.im 18701 websites - $50 \r\n.immo 15409 websites - $50 \r\n.immobilien 6805 websites - $30 \r\n.in 1143482 websites India - $100 \r\n.in 266179 websites International zone India:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.industries 4312 websites - $30 \r\n.ink 28117 websites - $50 \r\n.institute 12134 websites - $50 \r\n.insure	5015 websites - $30 \r\n.int 451 websites - $30 \r\n.international 25430 websites - $50 \r\n.investments 4813 websites - $30 \r\n.io 496216 websites British Indian Ocean - $80 \r\n.iq 2401 websites - $30 \r\n.ir 427735 websites Iran - $80 \r\n.ir 15487 websites International zone Iran:.com .net .biz .info .name .tel .mobi .asia \r\n.irish 3126 websites - $30 \r\n.is 32176 websites Iceland - $50 \r\n.ist 9060 websites - $30 \r\n.istanbul 12839 websites - $50 \r\n.it 2410105 webwebsites Italy – $250 \r\n.it 954040 webwebsites International zone Italy:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.je 3016 websites - $30 \r\n.jetzt 18207 websites - $50 \r\n.jewelry 3250 websites - $30 \r\n.jo 555 websites - $30 \r\n.jobs 44024 websites- $50 \r\n.joburg	3138 websites - $30 \r\n.jp 1246243 websites Japan - $150 \r\n.juegos	644 websites - $30 \r\n.kaufen 6134 websites - $30 \r\n.ke 14677 websites - $50 \r\n.kg 3619 websites Kyrgyzstan - $30 \r\n.kg 664 websites International zone Kyrgyzstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ki 79 websites - $30 \r\n.kim 12007 websites- $50 \r\n.kitchen 6881 websites - $30 \r\n.kiwi 13426 websites - $50 \r\n.kn 3211 websites - $30 \r\n.koeln 23320 websites - $50 \r\n.kr 272463 websites Korea- $50 \r\n.krd 374 websites - $30 \r\n.kred 8921 websites - $30 \r\n.kw 484 websites - $30 \r\n.ky 5783 websites - $30 \r\n.kyoto 658 websites - $30 \r\n.kz 113180 websites Kazakhstan - $50 \r\n.kz 5876 websites International zone Kazakhstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.la 34189 websites Laos - $50 \r\n.land 15474 websites- $50 \r\n.lat 4171 websites - $30 \r\n.law 12002 websites - $50 \r\n.lawyer 10996 websites- $50 \r\n.lc 481 websites- $30 \r\n.lease 1755 websites- $30 \r\n.leclerc 165 websites- $30 \r\n.legal 13047 websites- $50 \r\n.lgbt 2247 websites- $30 \r\n.li 10044 websites - $50 \r\n.life 195950 websites - $50 \r\n.lighting 5870 websites - $30 \r\n.limited 5365 websites - $30 \r\n.limo 1981 websites- $30 \r\n.link 117273 websites - $50 \r\n.live 662010 websites - $80 \r\n.lk 4971 websites - $30 \r\n.llc 12888 websites - $50 \r\n.loan 23738 websites - $50 \r\n.loans 3994 websites - $30 \r\n.lol 8121 websites - $30 \r\n.london 48933 websites London, United Kingdom- $50 \r\n.love 28434 websites - $50 \r\n.ls 236 websites - $30 \r\n.lt 94484 websites Lithuania- $50 \r\n.lt 27710 websites International zone Lithuania:.com .net .biz .info .name .tel .mobi .asia- $50 \r\n.ltd 100152 websites - $50 \r\n.lu 47052 websites Luxembourg - $50 \r\n.lu 4125 websites International zone Luxembourg:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.luxe 14037 websites - $50 \r\n.luxury	805 websites - $30 \r\n.lv 67886 websites Latvia - $50 \r\n.lv 8887 websites International zone Latvia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ly 8413 websites - $30 \r\n.ma 41462 websites Morocco - $50 \r\n.madrid	2919 websites - $30 \r\n.maison	1003 websites - $30 \r\n.management 10788 websites- $50 \r\n.market 18741 websites- $50 \r\n.marketing 22656 websites- $50 \r\n.markets 899 websites- $30 \r\n.mba 2510 websites- $30 \r\n.mc 3046 websites Monaco - $30 \r\n.md 16135 websites Moldova - $50 \r\n.md 1293 websites International zone Moldova:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.me 761596 websites Montenegro - $80 \r\n.me 86897 websites International zone Montenegro:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.media 49573 websites - $50 \r\n.melbourne 10041 websites - $50 \r\n.memorial 712 websites - $30 \r\n.men 24451 websites - $50 \r\n.menu 5002 websites restaurants- $30 \r\n.mg 3680 websites Madagascar- $30 \r\n.miami 9210 websites Miami, USA - $30 \r\n.mk 12704 websites - $50 \r\n.ml 128001 websites - $50 \r\n.mma 1705 websites - $30 \r\n.mn 17044 websites - $50 \r\n.mo 775 websites - $30 \r\n.mobi 381422 websites- $80 \r\n.moda 2741 websites - $30 \r\n.moe 8709 websites - $30 \r\n.mom 2085 websites - $30 \r\n.money 12000 websites - $50 \r\n.monster 54325 websites - $50 \r\n.mortgage 3198 websites - $30 \r\n.moscow 17741 websites Moscow Russian Federation- $50 \r\n.movie 3275 websites - $30 \r\n.mq 119 websites - $30 \r\n.mr 199 websites - $30 \r\n.ms 7265 websites - $30 \r\n.mt 1402 websites Malta - $30 \r\n.mu 6475 websites - $30 \r\n.museum	1260 websites - $30 \r\n.mv 1905 websites - $30 \r\n.mw 8579 websites Malawi - $30 \r\n.mx 670901 websites Mexico- $80 \r\n.mx 86593 websites International zone Mexico:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.my 143039 websites Malaysia- $80 \r\n.mz 985 websites - $30 \r\n.na 1094 websites - $30 \r\n.nagoya	7807 websites - $30 \r\n.name 120331 websites- $50 \r\n.navy 799 websites - $30 \r\n.nc 999 websites - $30 \r\n.network 51331 websites - $50 \r\n.news 57899 websites - $50 \r\n.ng 23864 websites - $50 \r\n.ngo 3421 websites - $30 \r\n.ninja 31719 websites - $50 \r\n.nl 3925784 websites Netherlands - $200 \r\n.nl 1019697 websites International zone Netherlands:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.no 620882 websites Norway - $80 \r\n.no 74318 websites International zone Norway:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.nra 131 websites - $30 \r\n.nrw 17487 websites - $50 \r\n.nu 236821 websites Niue- $50 \r\n.nyc 64003 websites - $50 \r\n.nz 593127 websites New Zealand - $80 \r\n.om 1701 websites - $30 \r\n.one 71859 websites - $50 \r\n.ong 3420 websites - $30 \r\n.onl 7059 websites - $30 \r\n.online 1356725 websites - $100 \r\n.ooo 15719 websites - $50 \r\n.org.np 7082 websites - $30 \r\n.org.ua 41362 websites - $50 \r\n.organic 1631 websites - $30 \r\n.osaka	664 websites - $30 \r\n.ovh 50056 websites - $50 \r\n.pa 1578 websites - $30 \r\n.page 61259 websites - $50 \r\n.paris 19098 websites - $50 \r\n.partners 8576 websites - $30 \r\n.parts 6042 websites - $30 \r\n.party 19563 websites- $50 \r\n.pe 83224 websites Peru - $50 \r\n.pe 59157 websites International zone Peru:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pet 10381 websites - $50 \r\n.pf 319 websites - $30 \r\n.pg 2105 websites Papua - $30 \r\n.ph 17940 websites Philippines - $50 \r\n.photo 17365 websites- $50 \r\n.photography 45234 websites- $50 \r\n.photos	21407 websites- $50 \r\n.physio	1159 websites- $30 \r\n.pics 5559 websites- $30 \r\n.pictures 8375 websites- $30 \r\n.pink 8173 websites- $30 \r\n.pizza 6365 websites - $30 \r\n.pk 44464 websites Pakistan - $50 \r\n.pl 1795299 websites Poland - $150 \r\n.pl 327587 websites International zone Poland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.place 3504 websites - $30 \r\n.plumbing 2815 websites - $30 \r\n.plus 18915 websites - $50 \r\n.pm 4051 websites - $30 \r\n.poker 3207 websites - $30 \r\n.porn 10323 websites- $50 \r\n.post 441 websites - $30 \r\n.pr 1229 websites - $30 \r\n.press 35132 websites - $50 \r\n.productions 7907 websites - $30 \r\n.promo 5720 websites - $30 \r\n.properties 13804 websites - $50 \r\n.property 3274 websites - $30 \r\n.ps 1572 websites - $30 \r\n.pt 263136 websites Portugal - $80 \r\n.pt 17691 websites International zone Portugal:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pub 25225 websites - $50 \r\n.pw 8023 websites - $30 \r\n.py 5593 websites - $30 \r\n.qa 9080 websites - $30 \r\n.quebec 8742 websites - $30 \r\n.racing 3320 websites - $30 \r\n.radio 2274 websites - $30 \r\n.re 11013 websites - $50 \r\n.realestate 18187 websites - $50 \r\n.realtor 39865 websites - $50 \r\n.realty 2204 websites - $30 \r\n.recipes 6245 websites - $30 \r\n.red 24701 websites - $50 \r\n.rehab 1756 websites - $30 \r\n.reise 1071 websites - $30 \r\n.reisen	4805 websites - $30 \r\n.reit 101 websites - $30 \r\n.ren 16501 websites - $50 \r\n.rent 4474 websites - $30 \r\n.rentals 11901 websites- $50 \r\n.repair 6828 websites- $30 \r\n.report 7269 websites - $30 \r\n.republican 852 websites - $30 \r\n.rest 47992 websites - $50 \r\n.restaurant 7735 websites - $30 \r\n.review 12121 websites - $80 \r\n.reviews 17432 websites- $50 \r\n.rio 1062 websites- $30 \r\n.rip 3599 websites- $30 \r\n.ro 423021 websites Romania - $80 \r\n.ro 42046 websites International zone Romania:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.rocks 90108 websites - $50 \r\n.rs 85503 websites Serbia - $50 \r\n.ru 514668 websites International zone Russian:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.ru 5025331 websites Russian - $250 \r\n.ru, .su, .рф websites 5800000 - $250 \r\n.ru.com 6499 websites Russia - $30 \r\n.ruhr 9687 websites - $30 \r\n.run 19122 websites - $50 \r\n.rw 3245 websites - $30 \r\n.sa 20421 websites Saudi Arabia- $50 \r\n.sa 5064 websites International zone Saudi Arabia:.com .net .biz .info .name .tel .mobi .asia \r\n.saarland 3925 websites - $30 \r\n.sale 15249 websites - $50 \r\n.salon 2722 websites - $30 \r\n.sarl 919 websites - $30 \r\n.sc 4442 websites Seychelles- $30 \r\n.school 14272 websites - $50 \r\n.schule	2913 websites - $30 \r\n.science 13625 websites - $80 \r\n.scot 11375 websites - $50 \r\n.sd 515 websites - $30 \r\n.se 1383322 websites Sweden - $150 \r\n.se 293316 websites International zone Sweden:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.seat 688 websites - $30 \r\n.security 287 websites - $30 \r\n.services 50298 websites - $50 \r\n.sex 7751 websites - $30 \r\n.sexy 5756 websites - $30 \r\n.sg 150351 websites Republic Of Singapore - $50 \r\n.sh 2706 websites - $30 \r\n.shiksha 911 websites - $30 \r\n.shoes 4676 websites - $30 \r\n.shop 631693 websites - $80 \r\n.shopping 6337 websites - $30 \r\n.show 12092 websites - $50 \r\n.si 39749 websites Slovenia- $50 \r\n.si 12879 websites International zone Slovenia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.singles 3589 websites - $30 \r\n.site 1855897 websites - $150 \r\n.sk 301001 websites Slovakia- $80 \r\n.sk 31572 websites International zone Slovakia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ski 5530 websites - $30 \r\n.sl 1504 websites - $30 \r\n.sm 8897 websites - $30 \r\n.sn 4465 websites Senegal - $30 \r\n.sn 344 websites International zone Senegal:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.so 9703 websites - $30 \r\n.soccer	2933 websites - $30 \r\n.social 23263 websites - $50 \r\n.software 16006 websites - $50 \r\n.solar 6575 websites - $30 \r\n.solutions 78770 websites - $50 \r\n.soy 1405 websites - $30 \r\n.space 409707 websites - $80 \r\n.sport 8578 websites - $30 \r\n.sr 580 - $30 \r\n.srl 5591 - $30 \r\n.st 8041 websites - $30 \r\n.storage 411 - $30 \r\n.store 328721 websites - $50 \r\n.stream 12901 websites - $80 \r\n.studio 53390 websites - $50 \r\n.study	5136 websites - $30 \r\n.style 11421 websites - $50 \r\n.su 110538 websites Russian- $50 \r\n.sucks 7329 websites - $30 \r\n.supplies 3079 websites - $30 \r\n.supply	5280 websites - $30 \r\n.support 23377 websites - $50 \r\n.surf 7373 websites - $30 \r\n.surgery 1778 websites - $30 \r\n.sv 8432 websites Salvador- $30 \r\n.swiss 17623 websites - $50 \r\n.sx 2901 websites - $30 \r\n.sy 2663 websites - $30 \r\n.sydney 10073 websites - $50 \r\n.systems 29044 websites - $50 \r\n.sz 321 websites - $30 \r\n.taipei	5664 websites - $30 \r\n.tattoo 7394 websites- $30 \r\n.tax 7388 websites - $30 \r\n.taxi 6034 websites - $30 \r\n.tc 16384 websites Turks and Caicos Islands- $50 \r\n.team 27421 websites- $50 \r\n.tech 276164 websites - $50 \r\n.technology 31533 websites- $50 \r\n.tel 90552 websites- $50 \r\n.tennis	1804 websites - $30 \r\n.tf 19841 websites - $50 \r\n.tg 1230 websites - $30 \r\n.th 22368 websites Kingdom Of Thailand- $50 \r\n.theater 1253 websites - $30 \r\n.tickets 1941 websites - $30 \r\n.tienda	1902 websites - $30 \r\n.tips 29380 websites- $50 \r\n.tires 941 websites - $30 \r\n.tirol 5472 websites - $30 \r\n.tj 6874 websites Tajikistan- $30 \r\n.tj 34 websites International zone Tajikistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tk 20085806 websites Tokelau - $500 \r\n.tl 2748 websites - $30 \r\n.tm 6395 websites Turkmenistan- $30 \r\n.tm 44 websites International zone Turkmenistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tn 16345 websites - $50 \r\n.to 16987 websites Tonga- $50 \r\n.today 81155 websites - $50 \r\n.tokyo 166544 websites - $50 \r\n.tools 13341 websites - $50 \r\n.top 3609373 websites - $250 \r\n.tours 10771 websites - $50 \r\n.town 4104 websites - $30 \r\n.toys 4566 websites - $30 \r\n.tr 243347 websites Turkey - $80 \r\n.tr 138818 International zone Turkey:.com .net .biz .info .name .tel .mobi .asia -$50 \r\n.trade 16130 websites - $50 \r\n.trading 1150 websites - $30 \r\n.training 19811 websites - $50 \r\n.travel 20461 websites - $50 \r\n.tt 535 websites - $30 \r\n.tube 3252 websites - $30 \r\n.tv 559502 websites Tuvalu - $80 \r\n.tw 982620 websites Taiwan - $100 \r\n.tz 4708 websites - $30 \r\n.ua 553216 websites Ukraina - $80 \r\n.ua 117701 websites International zone Ukraine:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ua, .com.ua, .kiev.ua 	193080 websites - $50 \r\n.ug 2561 websites Uganda - $30 \r\n.uk 4606907 websites United Kingdom - $250 \r\n.uk 3304606 websites International zone United Kingdom:.com .net .biz .info .name .tel .mobi.asia-$150 \r\n.university 6821 websites - $30 \r\n.uno 18694 websites - $50 \r\n.us 3139563 websites USA - $200 \r\n.us 578927 websites International zone USA:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.uy 15571 websites Uruguay - $50 \r\n.uz 38357 websites Uzbekistan - $50 \r\n.uz  365 websites International zone Uzbekistan:.com .net .biz .info .name .tel .mobi .asia \r\n.vacations 3826 websites - $50 \r\n.vc 18641 websites - $50 \r\n.ve 14015 websites Venezuela - $50 \r\n.vegas 17708 websites Las Vegas NV United States of America - $50 \r\n.ventures 13870 websites - $50 \r\n.versicherung 2005 websites - $30 \r\n.vet 7060 websites - $30 \r\n.vg 8389 site - $50 \r\n.vi 109 site - $30 \r\n.viajes	1065 site - $30 \r\n.video 21392 websites- $50 \r\n.villas	11791 site - $50 \r\n.vin 5494 websites - $30 \r\n.vip 1324303 websites - $100 \r\n.vision 7120 websites - $30 \r\n.vlaanderen 6014 websites - $30 \r\n.vn 436005 websites Vietnam - $80 \r\n.vn 161855 websites International zone Vietnam:.com .net .biz .info .name .tel .mobi .asia- 50 \r\n.vodka 1410 websites - $30 \r\n.vote 2316 websites - $30 \r\n.voto 3180 websites - $30 \r\n.voyage	2663 websites - $30 \r\n.vu 1051 websites - $30 \r\n.wales 12863 websites - $50 \r\n.wang 1352025 websites - $100 \r\n.watch 9902 websites - $30 \r\n.webcam	17340 websites - $50 \r\n.website 308840 websites -$50 \r\n.wedding 20162 websites - $50 \r\n.wf 1133 websites - $30 \r\n.wien 14413 websites - $50 \r\n.wiki 18129 websites wikis - $50 \r\n.win 73425 websites - $50 \r\n.wine 14831 websites - $50 \r\n.work 608563 websites - $80 \r\n.works 20702 websites - $50 \r\n.world 134234 websites - $50 \r\n.ws 99308 websites Samoa- $80 \r\n.wtf 17638 websites - $50 \r\n.xin 56857 websites - $50 \r\n.xn--3ds443g 26521 websites - $50 \r\n.xn--55qx5d 36965 websites - $50 \r\n.xn--6qq986b3xl 16188 websites - $50 \r\n.xn--czr694b 19910 websites - $50 \r\n.xn--czru2d 21621 websites - $50 \r\n.xn--fiq228c5hs 12145 websites - $50 \r\n.xn--io0a7i 24704 websites - $50 \r\n.xn--j6w193g 31764 websites - $50 \r\n.xn--kput3i 33006 websites - $50 \r\n.xn--mgbaam7a8h	2038 websites - $30 \r\n.xn--mgberp4a5d4ar 2534 websites - $30 \r\n.xn--mk1bu44c 6001 websites - $30 \r\n.xn--rhqv96g 7723 websites - $30 \r\n.xn--ses554g 126268 websites - $80 \r\n.xn--tckwe 6197 websites - $30 \r\n.xn--vuq861b 19706 websites - $50 \r\n.xxx 119879 websites- $50 \r\n.xyz 2650949 websites - $250 \r\n.yachts	254 websites - $30 \r\n.ye 18 websites - $30 \r\n.yoga 11563 websites - $50 \r\n.yokohama 8140 websites - $30 \r\n.yt 2004 websites - $30 \r\n.za 986900 websites South Africa - $100 \r\n.zm 508 websites - $30 \r\n.zone 26798 websites - $50 \r\n.бг (.xn--90ae) 3470 websites - $30 \r\n.дети 169 websites - $30 \r\n.москва (.xn--80adxhks) 19582 websites Moscow - $50 \r\n.онлайн	3403 websites - $30 \r\n.орг 1160 websites - $30 \r\n.рус (.xn--p1acf) 110789 websites - $50 \r\n.рф (.xn--p1ai) 869759 websites Russia - $80 \r\n.сайт 1005 websites - $30 \r\n.укр (.xn--j1amh) 10563 websites- $50 \r\n.بازار	550 websites - $30 \r\n.شبكة	834 websites - $30 \r\n.موقع	479 websites - $30 \r\n.संगठन	 106 websites - $30 \r\n.みんな  946 websites - $30 \r\n.コム    6533 websites - $30 \r\n.世界   4172 websites - $30 \r\n.公司   46162 websites - $50 \r\n.商城   6906 websites - $30 \r\n.商标   9866 websites - $30 \r\n.我爱你 15466 websites - $50 \r\n.手机   31544 websites - $50 \r\n.机构   244 websites - $30 \r\n.游戏   162 websites - $30 \r\n.移动   1152 websites - $30 \r\n.网店   3710 websites - $30 \r\n.网络   30809 websites - $50 \r\n.닷컴   5938 websites - $30',''),(332,1,70,'8','AndrewTib',''),(333,1,70,'9','AndrewTibCZ',''),(334,1,70,'4','(545) 703-2822',''),(335,1,70,'3','belovaleksandrngy@mail.ru',''),(336,1,70,'6','Открытый институт РЮО \r\n[url=https://777grigory.livejournal.com/tag/%D0%90%D0%BD%D0%B0%D1%82%D0%BE%D0%BB%D0%B8%D0%B9%20%D0%91%D0%B8%D0%B1%D0%B8%D0%BB%D0%BE%D0%B2]Открытый институт РЮО[/url]',''),(337,1,71,'8','Limitеd offеr. Datаbаse оf emаil аddrеssеs ovеr 30 000 000: http://wghahwr.xtechspro.com/0e7a63c',''),(338,1,71,'9','Limitеd offеr. Datаbаse оf emаil аddrеssеs ovеr 30 000 000: http://wghahwr.xtechspro.com/0e7a63c',''),(339,1,71,'4','(187) 762-0517',''),(340,1,71,'3','rimalova@gmail.com',''),(341,1,71,'6','I will sеll my bаse оf еmаil аddrеsses fоr morе thаn 30 000 000: http://kkm.tanglescanner.com/0e',''),(342,1,72,'8','Nicole',''),(343,1,72,'9','Ritter',''),(344,1,72,'4','(805) 372-1751',''),(345,1,72,'3','nicole@alexadirectory.top',''),(346,1,72,'6','Hey! \r\n\r\nHave you remembered to activate voice search for your business?\r\n\r\nActivate it here in 30 seconds:\r\n\r\nhttps://alexadirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\nWithout activation, customers may not be able to find mannplumbingandheating.com with voice searches on Google, Amazon Alexa or mobile phones.\r\n\r\nNicole Ritter\r\nVoice Activation Follow-up Specialist\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\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://alexadirectory.top/out.php?site=mannplumbingandheating.com',''),(347,1,73,'8','Linda',''),(348,1,73,'9','Anderson',''),(349,1,73,'4','(213) 558-1566',''),(350,1,73,'3','alison@videomarketingguru.club',''),(351,1,73,'6','Hey, great site!\r\n\r\nHave you thought about adding a video in response to COVID-19?\r\n\r\nWe can make one for you: \r\nhttps://www.videovideovideomarketing.club/success/?=mannplumbingandheating.com\r\n\r\nCustomers are worried right now. A short video like this can make a big impact for your business in the long term. People will remember it!\r\n\r\nBe well,\r\nLinda\r\n\r\nP.S. Due to coronavirus, we have also lowered our prices by up to 55%. \r\n\r\n\r\n\r\n\r\n\r\n\r\n- This commercial message sent from PJLK Marketing LC\r\n410 E Santa Clara Street STE 817\r\nSan Jose, CA 95113\r\n\r\nTo unsubscribe click here:\r\nhttps://videovideovideomarketing.club/out.php/?site=mannplumbingandheating.com',''),(352,1,74,'8','Jerrysaf',''),(353,1,74,'9','JerrysafTW',''),(354,1,74,'4','(146) 173-1580',''),(355,1,74,'3','no-replyRondus@gmail.com',''),(356,1,74,'6','Hi!  mannplumbingandheating.com \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd mеssаgе   lеgаl? \r\nWе prоvidе а nеw lеgаl wаy оf sеnding аppеаl thrоugh соntасt fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh prоpоsаls аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh fееdbасk Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis mеssаgе is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nWhatsApp - +375259112693',''),(357,1,75,'8','SteveMup',''),(358,1,75,'9','SteveMupHF',''),(359,1,75,'4','(308) 400-4544',''),(360,1,75,'3','bitclaybtc@gmail.com',''),(361,1,75,'6','Blockchain system automatically credits up to 11 bitcoins every 2 days to each participant  \r\n \r\nHow it works:   \r\n \r\nFill out the registration form in the project. \r\n \r\nEnter the address of the Bitcoin wallet (the one to which payments from the project will come) \r\n \r\nIndicate the correct e-mail address for communication. \r\n \r\nRead the FAQ section and get rich along with other project participants. \r\nGet + 10% every 2 days to your personal Bitcoin wallet in addition to your balance. \r\n \r\n \r\nRegister and receive a guaranteed payment from 0,0075 BTC to 11 BTC:   \r\nhttps://www.crypto-mmm.com/?source=getbitco  \r\n \r\n \r\nThere are no restrictions - your bitcoins in your personal bitcoin wallet are available for use 24 hours a day!',''),(362,1,76,'8','Lawanna',''),(363,1,76,'9','Laurantus',''),(364,1,76,'4','(708) 394-9143',''),(365,1,76,'3','lawanna.laurantus@outlook.com',''),(366,1,76,'6','Hey just thought you should know, I spoke to another company the other day and they got masks from a company that still has them in stock.\r\n\r\nhere\'s their link:\r\n\r\nhttp://masks-in-stock.com\r\n\r\nhopefully it can help you all. take care',''),(367,1,77,'8','Michaelunoda',''),(368,1,77,'9','MichaelunodaAG',''),(369,1,77,'4','(882) 535-8738',''),(370,1,77,'3','delivery@nicetricks.xyz',''),(371,1,77,'6','Would you like to know how hackers get into your devices? \r\nWould you like to know what your child is doing with the phone all the \r\ntime? \r\nClick on the link https://www.nicetricks.xyz and Learn very simple step \r\nby step instructions.',''),(372,1,78,'8','BrianVunse',''),(373,1,78,'9','BrianVunseIF',''),(374,1,78,'4','(611) 120-6376',''),(375,1,78,'3','yegor.konovalov.1978@mail.ru',''),(376,1,78,'6','красивый анальный секс \r\n \r\n[url=https://com-pokerdom.ru/]жесткое порно бесплатно[/url]',''),(377,1,79,'8','Kevin',''),(378,1,79,'9','Elter',''),(379,1,79,'4','(717) 729-2690',''),(380,1,79,'3','kelter1591@comcast.net',''),(381,1,79,'6','Just checking on when my HVAC 6 month service is due. When the crisis in the world wasn’t sure if it was affecting it. Thanks for your time on this matter. Kevin. \r\n\r\n1591 Warmspring Rd.',''),(382,1,80,'8','Dave Willis',''),(383,1,80,'9','DaveWillis',''),(384,1,80,'4','(667) 858-5377',''),(385,1,80,'3','no-reply@gmaill.com',''),(386,1,80,'6','Hello, \r\n \r\nWe have available the following, with low minimum order requirements - if you or anyone you know is in need: \r\n \r\n-3ply Disposable Masks \r\n-KN95 masks and N95 masks with FDA, CE certificate \r\n-Gloves, Gowns \r\n-Sanitizing Wipes, Hand Sanitizer \r\n-Face Shields \r\n-Orla and No Touch Thermometers \r\n \r\n \r\nDetails: \r\nWe are based in the US \r\nAll products are produced in China \r\nWe are shipping out every day. \r\nMinimum order size varies by product \r\nWe can prepare container loads and ship via AIR or SEA. \r\n \r\nPlease reply back with the product you need , the quantity needed, and the best contact phone number to call you \r\ndavewillis2008@gmail.com \r\n \r\nThank you \r\n \r\nDave Willis \r\nProduct Specialist',''),(387,1,81,'8','David Bitton',''),(388,1,81,'9','DavidBitton',''),(389,1,81,'4','(582) 367-7734',''),(390,1,81,'3','david@marketingvideocompany.com',''),(391,1,81,'6','For the last 10 years, the team at MarketingVideoCompany.com has been creating video content for businesses like yours. We\'ve primarily worked directly with marketing agencies to provide top quality graphics and marketing videos. \r\n \r\nWe have recently started working directly with end-businesses (like you) instead of marketing agencies that typically markup our video pricing with a 2-3x premium. There\'s a reason why wholesalers and resellers of our videos are able to charge so much for our productions. We\'re excited to offer you high-quality videos at wholesale pricing by skipping the middleman and working directly with our marketing and explainer video production team. \r\n \r\nYou can email me at david@marketingvideocompany.com or visit http://marketingvideocompany.com/ to check out sample videos. \r\n \r\nCan I send you over some of our recent work that I think you will find relevant? \r\n-- \r\nThanks - stay healthy and safe. \r\nDavid Bitton',''),(392,1,82,'8','AnnaChugunova',''),(393,1,82,'9','AnnaChugunova',''),(394,1,82,'4','(177) 538-1433',''),(395,1,82,'3','janaereed1985@smerkenters.bizml.ru',''),(396,1,82,'6','Будем рады предложить профессиональную услугу: \r\n\"Максимально быстрая ликвидация веб-ресурсов конкурентов!\" \r\nРазве это реально?! \r\n- Наш опыт - более десяти лет. \r\n- Используем конфиденциальные технологии. \r\n- Наращиваем огромную ссылочную массу порно и вирусными ссылками. \r\n- Любые поисковые системы моментально реагируют на наши технологии. \r\n- Все размещенные тексты с веб-сайта спамятся, они становятся неуникальными. \r\n- У нашей компании очень серьезные возможности и многолетний опыт в данном направлении. \r\n \r\nЦена  50$ \r\nПолная отчётность. \r\nОплата: Qiwi, Яндекс.Деньги, Bitcoin, Visa, MasterCard... \r\nTelgrm: @exrumer \r\nWhatssap: +7 906 531-21-55 \r\nViber: +7(977)52-554-62  \r\nSkype: XRumer.pro \r\nэлектронка: support@xrumer.club',''),(397,1,83,'8','Domenicweacy',''),(398,1,83,'9','DomenicweacyOB',''),(399,1,83,'4','(504) 304-3122',''),(400,1,83,'3','irinakeller6526@mail.ru',''),(401,1,83,'6','Don\'t miss the opportunity to win the best prizes! \r\nhttp://winaprize.site',''),(402,1,84,'8','Jamesles',''),(403,1,84,'9','JameslesDL',''),(404,1,84,'4','(680) 706-4687',''),(405,1,84,'3','khalikovbulatiglz@mail.ru',''),(406,1,84,'6','жесткое русское порно',''),(407,1,85,'8','Richardbluep',''),(408,1,85,'9','RichardbluepSH',''),(409,1,85,'4','(872) 402-7612',''),(410,1,85,'3','khokhlovnikitkaoskj@mail.ru',''),(411,1,85,'6','нас наебали \r\n \r\n[url=https://pushkinogrs.ru/ ]]нас наебали[/url]',''),(412,1,86,'8','contactjtoymg',''),(413,1,86,'9','contactjtoymg',''),(414,1,86,'4','(773) 032-0542',''),(415,1,86,'3','malisa_chang59@rambler.ru',''),(416,1,86,'6','I\'m happy to welcome you! \r\n \r\nWe offer sending newsletters of Your offers via follow-up forms to the sites of firms via all domain zones of the world.  \r\n \r\nhttps://xn----7sbb1bbndheurc1a.xn--p1ai \r\n \r\nYour offer is sent to email of institution 100% will get to inbox folder! \r\n \r\nTest: \r\n10000 messages on foreign zones to your E-mail - twenty $. \r\nWe need from You only email address, title and text of the letter. \r\n \r\nIn our price list there are more 800 databases for all domain zones of the world. \r\nCommon databases: \r\nAll Europe 44 countries 60726150 of domains - 1100$ \r\nAll European Union 28 countries 56752547 of sites- 1000$ \r\nAll Asia 48 countries 14662004 of sites - 300$ \r\nAll Africa 50 countries 1594390 of domains - 200$ \r\nAll North and Central America in 35 countries 7441637 of domains - 300$ \r\nAll South America 14 countries 5826884 of domains - 200$ \r\nCompanies and Enterprises of RF - 300$ \r\nUkraine 605745 of domain names - 100$ \r\nAll Russian-speaking countries minus RF are 14 countries and there are 1526797 of sites - 200$ \r\n \r\nDatabases: \r\nWHOIS databases of sites for all nations of the world. \r\nYou can purchase our databases separately from newsletter\'s service at the request. \r\n \r\nP.S. \r\nPlease, do not respond to this commercial offer from your mailbox, as it has been generated automatically and will not get anywhere! \r\nUse the contact form from the site https://xn----7sbb1bbndheurc1a.xn--p1ai \r\n \r\nPRICE LIST: \r\n \r\nTest mailing: $20 – 10000 contact forms websites \r\n \r\nAll Europe 44 countries there are 60726150 websites – $1100 \r\n \r\nAll EU 28 countries there are 56752547 websites – $1000 \r\n \r\nAll Asia 48 countries there are 14662004 websites – $500 \r\n \r\nAll Africa 50 countries there are 1594390 websites – $200 \r\n \r\nAll North and Central America is 35 countries there are 7441637 websites – $300 \r\n \r\nAll South America 14 countries there are 5826884 websites – $200 \r\n \r\nTop 1 Million World’s Best websites – $100 \r\n \r\nTop 16821856 the most visited websites in the world – $200 \r\n \r\nNew websites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the \r\n \r\nmonth) – 500$ \r\n \r\nBusinesses and organizations of the Russian Federation – there are 3012045 websites – $300 \r\n \r\nUkraine 605745 websites – $100 \r\n \r\nAll Russian-speaking countries minus Russia – there are 14 countries and 1526797 websites – $200 \r\n \r\nNew websites of the Russian Federation, registered 24-48 hours ago. (A cycle of 15 mailings \r\n \r\nduring the month) – 250$ \r\n \r\n1499203 of hosting websites around the world (there are selections for all countries, are \r\n \r\nexcluded from databases for mailings) – $150 \r\n \r\n142018 websites of public authorities of all countries of the world (selections for all \r\n \r\ncountries, are excluded from databases for mailings) – $100 \r\n \r\nCMS mailings: \r\n \r\nAmiro 1794 websites $50 \r\nBitrix 199550 websites $80 \r\nConcrete5 39121 websites $50 \r\nCONTENIDO 5069 websites $50 \r\nCubeCart 1062 websites $50 \r\nDatalife Engine 23220 websites $50 \r\nDiscuz 47962 websites $50 \r\nDotnetnuke 22859 websites $50 \r\nDrupal 802121 websites $100 \r\nFlexbe 15072 websites $50 \r\nHostCMS 5042 websites $50 \r\nInstantCMS 4136 websites $50 \r\nInSales 11081 websites $50 \r\nInvision Power Board 265 websites $30 \r\nJoomla 1906994 websites $200 \r\nLiferay 5137 websites $50 \r\nMagento 269488 websites $80 \r\nMODx 64023 websites $50 \r\nMovable Type 9171 websites $50 \r\nNetCat 6636 websites $50 \r\nNopCommerce 3892 websites $50 \r\nOpenCart 321057 websites $80 \r\nosCommerce 68468 websites $50 \r\nphpBB 2182 websites $50 \r\nPrestashop 92949 websites $50 \r\nShopify 604387 websites $80 \r\nSimpla 17429 websites $50 \r\nSitefinity 4183 websites $50 \r\nTextpattern 882 websites $30 \r\nTilda 47396 websites $50 \r\nTYPO3 192006 websites $80 \r\nUMI.CMS 13191 websites $50 \r\nvBulletin 8407 websites $50 \r\nWix 3379081 websites $250 \r\nWordpress 1557405 websites $450 \r\nWooCommerce 2097367 websites $210 \r\n \r\n.com 141528448 websites commercial - $1950 \r\n.biz 2361884 websites business - $150 \r\n.info 6216929 websites information - $250 \r\n.net 15689222 websites network - $450 \r\n.org 10922428 websites organization - $350 \r\n \r\n.abogado 381 websites - $30 \r\n.ac 2365 websites - $30 \r\n.academy 34531 websites - $50 \r\n.accountant 96540 websites - $50 \r\n.accountants 1653 websites - $30 \r\n.actor 2287 websites - $30 \r\n.ad 323 websites - $30 \r\n.adult 10541 websites- $50 \r\n.ae 200462 websites UAE - $50 \r\n.ae 1820 websites International zone UAE:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.aero 23635 websites- $50 \r\n.af 3778 websites - $30 \r\n.africa	23341 websites- $50 \r\n.ag 11931 websites - $50 \r\n.agency 66462 websites - $50 \r\n.ai 24137 websites - $50 \r\n.airforce 592 websites - $30 \r\n.al 6078 websites - $30 \r\n.alsace	1982 websites - $50 \r\n.am 21995 websites Armenia - $50 \r\n.am 1684 websites International zone Armenia:.com .net .biz .info .name .tel .mobi .asia \r\n.amsterdam 28141 websites Amsterdam, Kingdom of the Netherlands - $30 \r\n.ao 904 websites - $30 \r\n.apartments 3758 websites - $30 \r\n.app 661404 - $80 \r\n.ar 551804 websites Argentina - $80 \r\n.ar 64008 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.archi 2084 websites - $30 \r\n.army 2282 websites - $30 \r\n.art 69227 websites - $50 \r\n.as 10525 websites - $50 \r\n.asia 228418 websites - $80 \r\n.associates 3340 websites - $30 \r\n.at 1356722 websites Austria - $100 \r\n.at 181907 websites International zone Austria :.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.attorney 8204 websites - $30 \r\n.au 2432174 websites Australia - $150 \r\n.au 461279 websites International zone Australia:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.auction 4125 websites - $30 \r\n.audio 23052 websites - $50 \r\n.auto 400 websites - $30 \r\n.aw 235 websites - $30 \r\n.az 11104 websites Azerbaijan - $50 \r\n.az 2036 websites International zone Azerbaijan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ba 2291 websites international zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia-$30 \r\n.ba 7012 websites Bosnia and Herzegovina - $30 \r\n.baby 2051 websites - $30 \r\n.band 13515 websites - $50 \r\n.bank 20424 websites - $50 \r\n.bar 50267 websites - $50 \r\n.barcelona 7919 websites - $30 \r\n.bargains 2997 websites - $30 \r\n.bargains 2346 websites - $30 \r\n.bayern 32565 websites - $50 \r\n.bb 2277 websites- $30 \r\n.be 1349658 websites Belgium - $150 \r\n.be 184810 websites International zone Belgium:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.beer 13834 websites- $50 \r\n.berlin 58088 websites Berlin - $50 \r\n.best 93390 websites - $50 \r\n.bet 17637 websites - $50 \r\n.bf 238 websites - $30 \r\n.bg 37152 websites Bulgaria - $50 \r\n.bg 50685 websites International zone Bulgaria:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.bh 453 websites - $30 \r\n.bi 2328 websites Burundi - $30 \r\n.bible 1760 websites - $30 \r\n.bid 474509 websites - $80 \r\n.bike 15229 websites - $50 \r\n.bingo 1232 websites - $30 \r\n.bio 15531 websites- $50 \r\n.bj 147 websites - $30 \r\n.black 6582 websites - $30 \r\n.blackfriday 12106 websites - $50 \r\n.blog 178562 websites - $80 \r\n.blue 16852 websites - $50 \r\n.bm 8089 websites Bermuda - $30 \r\n.bn 20 websites - $30 \r\n.bo 2602 websites- $30 \r\n.boats 266 websites - $30 \r\n.boston	21762 websites- $50 \r\n.boutique 8834 websites - $50 \r\n.br 2589383 websites Brazil - $250 \r\n.br 562558 websites International zone Brazil:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.bradesco 179 websites- $30 \r\n.broadway 261 websites- $30 \r\n.broker	1060 websites- $30 \r\n.brussels 7181 websites - $30 \r\n.bs 330 websites- $30 \r\n.bt 284 websites- $30 \r\n.build 3857 websites- $30 \r\n.builders 3906 websites- $30 \r\n.business 35168 websites - $50 \r\n.buzz 534984 websites - $80 \r\n.bw 1160 websites - $30 \r\n.by 92679 websites Belarus - $50 \r\n.by 1574 websites International zone Belarus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.bz 7751 websites - $30 \r\n.bzh 5403 websites - $30 \r\n.ca 2587463 websites Canada - $250 \r\n.ca 288395 websites International zone Canada:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.cab 3223 websites - $30 \r\n.cafe 15406 websites - $50 \r\n.cam 10316 websites - $50 \r\n.camera 5236 websites - $30 \r\n.camp 6315 websites - $30 \r\n.capetown 4750 websites - $30 \r\n.capital 14387 websites - $50 \r\n.car 342 websites - $30 \r\n.cards 5992 websites - $30 \r\n.care 23004 websites - $50 \r\n.career	1217 websites - $30 \r\n.careers 7555 websites - $30 \r\n.cars 309 websites - $30 \r\n.casa 24158 websites - $50 \r\n.cash 13193 websites - $50 \r\n.casino	5354 websites - $30 \r\n.cat 108569 websites - $50 \r\n.catering 3482 websites - $30 \r\n.cc 1920589 websites Cocos Keeling Islands- $200 \r\n.cd 5865 websites - $30 \r\n.center 39353 websites - $50 \r\n.ceo 2458 websites - $30 \r\n.cf 2291460 websites Central African Republic - $200 \r\n.cg 166 - $30 \r\n.ch 1627450 websites Switzerland - $150 \r\n.ch 205292 websites International zone Switzerland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.chat 15026 websites - $50 \r\n.cheap 3267 websites - $30 \r\n.christmas 15255 websites - $50 \r\n.church 24104 websites - $50 \r\n.ci 5663 websites Cote d\'Ivoire - $30 \r\n.ci 112 websites International zone Cote d\'Ivoire:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.city 46171 websites - $50 \r\n.cl 590401 websites Chile - $80 \r\n.claims	2374 websites - $30 \r\n.cleaning 2385 websites - $30 \r\n.click 181015 websites - $50 \r\n.clinic 8006 websites - $30 \r\n.clothing 13639 websites - $50 \r\n.cloud	164113 websites - $50 \r\n.club 1230555 websites - $100 \r\n.cm 29221 websites Cameroon- $50 \r\n.cn 23160610 websites China - $600 \r\n.cn 1372416 websites International zone China:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.co 1878923 websites Colombia - $200 \r\n.coach 16002 websites- $50 \r\n.codes 12044 websites - $50 \r\n.coffee 19257 websites - $50 \r\n.cologne 10157 websites - $50 \r\n.com.ar 657716 websites Argentina - $80 \r\n.com.br 942898 websites Brazil – $100 \r\n.com.cy	11153 websites Cyprus - $50 \r\n.com.ni 23747 websites - $50 \r\n.com.np 38828 websites - $50 \r\n.com.ru, .net.ru, .org.ru, .spb.ru, .msk.ru 98375 websites Russia - $50 \r\n.community 15013 websites - $50 \r\n.company 64217 websites - $50 \r\n.computer 5539 websites - $30 \r\n.condos	2192 websites - $30 \r\n.construction 7104 websites - $30 \r\n.consulting 27128 websites - $50 \r\n.contractors 3982 websites - $30 \r\n.cooking 1476 websites - $30 \r\n.cool 22008 websites - $50 \r\n.coop 7479 websites - $30 \r\n.corsica 1042 websites - $30 \r\n.country 7144 websites - $30 \r\n.cr 7934 websites - $30 \r\n.credit	4020 websites - $30 \r\n.creditcard 825 websites - $30 \r\n.creditunion 511 websites - $30 \r\n.cricket 33413 websites - $50 \r\n.cruises 2234 websites - $30 \r\n.cu 137 websites - $30 \r\n.cv 2279 websites - $30 \r\n.cx 15753 websites - $50 \r\n.cy 11092 websites Cyprus - $50 \r\n.cy 710 websites International zone Cyprus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cymru 7314 websites - $30 \r\n.cz 1001208 websites Czech Republic - $100 \r\n.cz 193400 websites International zone Czech Republic:.com .net .biz .info .name .tel .mobi.asia-$50 \r\n.dance	7490 websites - $30 \r\n.date 10800 websites - $50 \r\n.dating	2892 websites - $30 \r\n.de 15078512 websites Germany - $450 \r\n.de 3894156 websites International zone Germany:.com .net .biz .info .name .tel .mobi .asia-$200 \r\n.deals 8332 websites - $30 \r\n.degree	2178 websites - $30 \r\n.delivery 6282 websites - $30 \r\n.democrat 1072 websites - $30 \r\n.dental 7841 websites - $30 \r\n.dentist 3046 websites - $30 \r\n.desi 2647 websites - $50 \r\n.design 103712 websites - $50 \r\n.dev	190456 websites - $50 \r\n.diamonds 2730 websites - $30 \r\n.diet 18291 websites - $50 \r\n.digital 49449 websites - $50 \r\n.direct 12129 websites - $50 \r\n.directory 15157 websites - $50 \r\n.discount 3898 websites - $30 \r\n.dj 7680 websites - $30 \r\n.dk 1319155 websites Denmark - $100 \r\n.dk 148164 websites International zone Denmark:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dm 23318 websites - $50 \r\n.do 5255 websites Dominican Republic- $30 \r\n.doctor	5601 websites - $30 \r\n.dog 10030 websites - $50 \r\n.dog 12435 websites - $50 \r\n.domains 6253 websites - $30 \r\n.download 7886 websites - $30 \r\n.durban	2247 websites - $30 \r\n.dz 982 websites - $30 \r\n.earth	23412 websites - $50 \r\n.ec 11731 websites - $50 \r\n.edu 4445 websites - $30 \r\n.edu.np 4883 websites- $30 \r\n.education 25003 websites - $50 \r\n.ee 119701 websites Estonia- $50 \r\n.ee 10490 websites International zone Estonia:.com .net .biz .info .name .tel .mobi .asia \r\n.eg 1699 websites - $30 \r\n.email 100440 websites - $50 \r\n.energy 12399 websites - $50 \r\n.engineer 3785 websites - $30 \r\n.engineering 6533 websites - $30 \r\n.enterprises 6253 websites - $30 \r\n.equipment 5060 websites - $30 \r\n.es 1509048 websites Spain - $150 \r\n.es 541916 websites International zone Spain:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.estate 9285 websites - $30 \r\n.et 134 websites - $30 \r\n.eu 3046076 websites Europe - $150 \r\n.eu 633384 websites International zone Europe:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.eus 10116 websites - $50 \r\n.events 25115 websites - $50 \r\n.exchange 10432 websites - $50 \r\n.expert 34040 websites - $50 \r\n.exposed 2880 websites - $30 \r\n.express 7019 websites - $30 \r\n.fail 3692 websites - $30 \r\n.faith 4019 websites - $30 \r\n.family 21577 websites - $50 \r\n.fan 28607 websites - $50 \r\n.fans 1688 websites - $30 \r\n.farm 17009 websites - $50 \r\n.fashion 9011 websites - $30 \r\n.feedback 1301 websites - $30 \r\n.fi 188337 websites Finland - $50 \r\n.fi 69631 websites International zone Finland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.film 4501 websites - $30 \r\n.finance 9082 websites - $30 \r\n.financial 5086 websites - $30 \r\n.fish 4562 websites - $30 \r\n.fishing 1422 websites - $30 \r\n.fit 109855 websites - $50 \r\n.fitness 10689 websites - $50 \r\n.flights 2169 websites - $30 \r\n.florist 2071 websites - $30 \r\n.flowers 1187 websites - $30 \r\n.fm 3775 websites - $30 \r\n.fo 10415 websites- $50 \r\n.football 4677 websites - $30 \r\n.forex	282 websites - $30 \r\n.forsale 7118 websites - $30 \r\n.foundation 15401 websites - $50 \r\n.fr 2810983 websites France - $150 \r\n.fr 639546 websites International zone France:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.frl 13028 websites - $50 \r\n.fun 485622 websites - $50 \r\n.fund 14501 websites - $50 \r\n.furniture 2276 websites - $30 \r\n.futbol	2709 websites - $30 \r\n.fyi 15872 websites - $50 \r\n.ga 5041 websites Gabon - $30 \r\n.gal 5106 websites - $30 \r\n.gallery 17663 websites - $50 \r\n.game 2066 websites - $30 \r\n.games 20294 websites - $50 \r\n.garden	 2618 websites - $30 \r\n.gd 3038 websites - $30 \r\n.ge 17359 websites Georgia - $50 \r\n.ge 1676 websites International zone Georgia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.gent 3388 websites - $30 \r\n.gf 105 websites - $30 \r\n.gg 7443 websites - $30 \r\n.gh 703 websites - $30 \r\n.gi 981 websites - $30 \r\n.gift 5001 websites - $30 \r\n.gifts 3357 websites - $30 \r\n.gives 1759 websites - $30 \r\n.gl 3558 websites - $30 \r\n.glass	3239 websites - $30 \r\n.global 48572 websites - $50 \r\n.gm 287 websites - $30 \r\n.gmbh 20786 websites - $50 \r\n.gold 9581 websites - $30 \r\n.golf 10319 websites - $50 \r\n.gop 1340 websites - $30 \r\n.gov 4195 websites - $30 \r\n.gov.np 1937 websites- $30 \r\n.gp 2014 websites - $30 \r\n.gq 63622 websites - $50 \r\n.gr 323168 websites Greece - $80 \r\n.gr 57984 websites International zone Greece:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.graphics 6555 websites - $30 \r\n.gratis	4113 websites - $30 \r\n.green 5161 websites - $30 \r\n.gripe 1175 websites - $30 \r\n.group 65583 websites - $50 \r\n.gs 1008 websites - $30 \r\n.gt 15351 websites - $50 \r\n.guide 15044 websites - $50 \r\n.guitars 965 websites - $30 \r\n.guru 53088 websites - $50 \r\n.gy 2047 websites - $30 \r\n.hamburg 21585 websites - $50 \r\n.haus 5686 websites - $30 \r\n.health	13716 websites - $50 \r\n.healthcare 9001 websites - $30 \r\n.help 13098 websites - $50 \r\n.hiphop 518 websites - $30 \r\n.hiv 279 websites - $30 \r\n.hk 116093 websites - $50 \r\n.hm 229 websites - $30 \r\n.hn 4732 websites - $30 \r\n.hockey	1402 websites - $30 \r\n.holdings 5812 websites - $30 \r\n.holiday 4517 websites - $30 \r\n.homes 12499 websites - $50 \r\n.horse 2516 websites - $30 \r\n.hospital 1805 - $30 \r\n.host 79977 websites - $50 \r\n.hosting 3322 websites - $30 \r\n.house 19296 websites - $50 \r\n.how 2557 - $30 \r\n.hr 48565 websites Croatia - $50 \r\n.hr 16592 websites International zone Croatia:.com .net .biz .info .name .tel .mobi .asia \r\n.ht 1299 websites - $30 \r\n.hu 618532 websites Hungary - $80 \r\n.hu 53940 websites International zone Hungary:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.icu 6331371 websites - $350 \r\n.id 61744 websites - $50 \r\n.ie 195987 websites Ireland - $50 \r\n.ie 49861 websites International zone Ireland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.il 196266 websites Israel - $80 \r\n.il 38537 websites International zone Israel:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.im 18701 websites - $50 \r\n.immo 15409 websites - $50 \r\n.immobilien 6805 websites - $30 \r\n.in 1143482 websites India - $100 \r\n.in 266179 websites International zone India:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.industries 4312 websites - $30 \r\n.ink 28117 websites - $50 \r\n.institute 12134 websites - $50 \r\n.insure	5015 websites - $30 \r\n.int 451 websites - $30 \r\n.international 25430 websites - $50 \r\n.investments 4813 websites - $30 \r\n.io 496216 websites British Indian Ocean - $80 \r\n.iq 2401 websites - $30 \r\n.ir 427735 websites Iran - $80 \r\n.ir 15487 websites International zone Iran:.com .net .biz .info .name .tel .mobi .asia \r\n.irish 3126 websites - $30 \r\n.is 32176 websites Iceland - $50 \r\n.ist 9060 websites - $30 \r\n.istanbul 12839 websites - $50 \r\n.it 2410105 webwebsites Italy – $250 \r\n.it 954040 webwebsites International zone Italy:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.je 3016 websites - $30 \r\n.jetzt 18207 websites - $50 \r\n.jewelry 3250 websites - $30 \r\n.jo 555 websites - $30 \r\n.jobs 44024 websites- $50 \r\n.joburg	3138 websites - $30 \r\n.jp 1246243 websites Japan - $150 \r\n.juegos	644 websites - $30 \r\n.kaufen 6134 websites - $30 \r\n.ke 14677 websites - $50 \r\n.kg 3619 websites Kyrgyzstan - $30 \r\n.kg 664 websites International zone Kyrgyzstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ki 79 websites - $30 \r\n.kim 12007 websites- $50 \r\n.kitchen 6881 websites - $30 \r\n.kiwi 13426 websites - $50 \r\n.kn 3211 websites - $30 \r\n.koeln 23320 websites - $50 \r\n.kr 272463 websites Korea- $50 \r\n.krd 374 websites - $30 \r\n.kred 8921 websites - $30 \r\n.kw 484 websites - $30 \r\n.ky 5783 websites - $30 \r\n.kyoto 658 websites - $30 \r\n.kz 113180 websites Kazakhstan - $50 \r\n.kz 5876 websites International zone Kazakhstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.la 34189 websites Laos - $50 \r\n.land 15474 websites- $50 \r\n.lat 4171 websites - $30 \r\n.law 12002 websites - $50 \r\n.lawyer 10996 websites- $50 \r\n.lc 481 websites- $30 \r\n.lease 1755 websites- $30 \r\n.leclerc 165 websites- $30 \r\n.legal 13047 websites- $50 \r\n.lgbt 2247 websites- $30 \r\n.li 10044 websites - $50 \r\n.life 195950 websites - $50 \r\n.lighting 5870 websites - $30 \r\n.limited 5365 websites - $30 \r\n.limo 1981 websites- $30 \r\n.link 117273 websites - $50 \r\n.live 662010 websites - $80 \r\n.lk 4971 websites - $30 \r\n.llc 12888 websites - $50 \r\n.loan 23738 websites - $50 \r\n.loans 3994 websites - $30 \r\n.lol 8121 websites - $30 \r\n.london 48933 websites London, United Kingdom- $50 \r\n.love 28434 websites - $50 \r\n.ls 236 websites - $30 \r\n.lt 94484 websites Lithuania- $50 \r\n.lt 27710 websites International zone Lithuania:.com .net .biz .info .name .tel .mobi .asia- $50 \r\n.ltd 100152 websites - $50 \r\n.lu 47052 websites Luxembourg - $50 \r\n.lu 4125 websites International zone Luxembourg:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.luxe 14037 websites - $50 \r\n.luxury	805 websites - $30 \r\n.lv 67886 websites Latvia - $50 \r\n.lv 8887 websites International zone Latvia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ly 8413 websites - $30 \r\n.ma 41462 websites Morocco - $50 \r\n.madrid	2919 websites - $30 \r\n.maison	1003 websites - $30 \r\n.management 10788 websites- $50 \r\n.market 18741 websites- $50 \r\n.marketing 22656 websites- $50 \r\n.markets 899 websites- $30 \r\n.mba 2510 websites- $30 \r\n.mc 3046 websites Monaco - $30 \r\n.md 16135 websites Moldova - $50 \r\n.md 1293 websites International zone Moldova:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.me 761596 websites Montenegro - $80 \r\n.me 86897 websites International zone Montenegro:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.media 49573 websites - $50 \r\n.melbourne 10041 websites - $50 \r\n.memorial 712 websites - $30 \r\n.men 24451 websites - $50 \r\n.menu 5002 websites restaurants- $30 \r\n.mg 3680 websites Madagascar- $30 \r\n.miami 9210 websites Miami, USA - $30 \r\n.mk 12704 websites - $50 \r\n.ml 128001 websites - $50 \r\n.mma 1705 websites - $30 \r\n.mn 17044 websites - $50 \r\n.mo 775 websites - $30 \r\n.mobi 381422 websites- $80 \r\n.moda 2741 websites - $30 \r\n.moe 8709 websites - $30 \r\n.mom 2085 websites - $30 \r\n.money 12000 websites - $50 \r\n.monster 54325 websites - $50 \r\n.mortgage 3198 websites - $30 \r\n.moscow 17741 websites Moscow Russian Federation- $50 \r\n.movie 3275 websites - $30 \r\n.mq 119 websites - $30 \r\n.mr 199 websites - $30 \r\n.ms 7265 websites - $30 \r\n.mt 1402 websites Malta - $30 \r\n.mu 6475 websites - $30 \r\n.museum	1260 websites - $30 \r\n.mv 1905 websites - $30 \r\n.mw 8579 websites Malawi - $30 \r\n.mx 670901 websites Mexico- $80 \r\n.mx 86593 websites International zone Mexico:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.my 143039 websites Malaysia- $80 \r\n.mz 985 websites - $30 \r\n.na 1094 websites - $30 \r\n.nagoya	7807 websites - $30 \r\n.name 120331 websites- $50 \r\n.navy 799 websites - $30 \r\n.nc 999 websites - $30 \r\n.network 51331 websites - $50 \r\n.news 57899 websites - $50 \r\n.ng 23864 websites - $50 \r\n.ngo 3421 websites - $30 \r\n.ninja 31719 websites - $50 \r\n.nl 3925784 websites Netherlands - $200 \r\n.nl 1019697 websites International zone Netherlands:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.no 620882 websites Norway - $80 \r\n.no 74318 websites International zone Norway:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.nra 131 websites - $30 \r\n.nrw 17487 websites - $50 \r\n.nu 236821 websites Niue- $50 \r\n.nyc 64003 websites - $50 \r\n.nz 593127 websites New Zealand - $80 \r\n.om 1701 websites - $30 \r\n.one 71859 websites - $50 \r\n.ong 3420 websites - $30 \r\n.onl 7059 websites - $30 \r\n.online 1356725 websites - $100 \r\n.ooo 15719 websites - $50 \r\n.org.np 7082 websites - $30 \r\n.org.ua 41362 websites - $50 \r\n.organic 1631 websites - $30 \r\n.osaka	664 websites - $30 \r\n.ovh 50056 websites - $50 \r\n.pa 1578 websites - $30 \r\n.page 61259 websites - $50 \r\n.paris 19098 websites - $50 \r\n.partners 8576 websites - $30 \r\n.parts 6042 websites - $30 \r\n.party 19563 websites- $50 \r\n.pe 83224 websites Peru - $50 \r\n.pe 59157 websites International zone Peru:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pet 10381 websites - $50 \r\n.pf 319 websites - $30 \r\n.pg 2105 websites Papua - $30 \r\n.ph 17940 websites Philippines - $50 \r\n.photo 17365 websites- $50 \r\n.photography 45234 websites- $50 \r\n.photos	21407 websites- $50 \r\n.physio	1159 websites- $30 \r\n.pics 5559 websites- $30 \r\n.pictures 8375 websites- $30 \r\n.pink 8173 websites- $30 \r\n.pizza 6365 websites - $30 \r\n.pk 44464 websites Pakistan - $50 \r\n.pl 1795299 websites Poland - $150 \r\n.pl 327587 websites International zone Poland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.place 3504 websites - $30 \r\n.plumbing 2815 websites - $30 \r\n.plus 18915 websites - $50 \r\n.pm 4051 websites - $30 \r\n.poker 3207 websites - $30 \r\n.porn 10323 websites- $50 \r\n.post 441 websites - $30 \r\n.pr 1229 websites - $30 \r\n.press 35132 websites - $50 \r\n.productions 7907 websites - $30 \r\n.promo 5720 websites - $30 \r\n.properties 13804 websites - $50 \r\n.property 3274 websites - $30 \r\n.ps 1572 websites - $30 \r\n.pt 263136 websites Portugal - $80 \r\n.pt 17691 websites International zone Portugal:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pub 25225 websites - $50 \r\n.pw 8023 websites - $30 \r\n.py 5593 websites - $30 \r\n.qa 9080 websites - $30 \r\n.quebec 8742 websites - $30 \r\n.racing 3320 websites - $30 \r\n.radio 2274 websites - $30 \r\n.re 11013 websites - $50 \r\n.realestate 18187 websites - $50 \r\n.realtor 39865 websites - $50 \r\n.realty 2204 websites - $30 \r\n.recipes 6245 websites - $30 \r\n.red 24701 websites - $50 \r\n.rehab 1756 websites - $30 \r\n.reise 1071 websites - $30 \r\n.reisen	4805 websites - $30 \r\n.reit 101 websites - $30 \r\n.ren 16501 websites - $50 \r\n.rent 4474 websites - $30 \r\n.rentals 11901 websites- $50 \r\n.repair 6828 websites- $30 \r\n.report 7269 websites - $30 \r\n.republican 852 websites - $30 \r\n.rest 47992 websites - $50 \r\n.restaurant 7735 websites - $30 \r\n.review 12121 websites - $80 \r\n.reviews 17432 websites- $50 \r\n.rio 1062 websites- $30 \r\n.rip 3599 websites- $30 \r\n.ro 423021 websites Romania - $80 \r\n.ro 42046 websites International zone Romania:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.rocks 90108 websites - $50 \r\n.rs 85503 websites Serbia - $50 \r\n.ru 514668 websites International zone Russian:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.ru 5025331 websites Russian - $250 \r\n.ru, .su, .рф websites 5800000 - $250 \r\n.ru.com 6499 websites Russia - $30 \r\n.ruhr 9687 websites - $30 \r\n.run 19122 websites - $50 \r\n.rw 3245 websites - $30 \r\n.sa 20421 websites Saudi Arabia- $50 \r\n.sa 5064 websites International zone Saudi Arabia:.com .net .biz .info .name .tel .mobi .asia \r\n.saarland 3925 websites - $30 \r\n.sale 15249 websites - $50 \r\n.salon 2722 websites - $30 \r\n.sarl 919 websites - $30 \r\n.sc 4442 websites Seychelles- $30 \r\n.school 14272 websites - $50 \r\n.schule	2913 websites - $30 \r\n.science 13625 websites - $80 \r\n.scot 11375 websites - $50 \r\n.sd 515 websites - $30 \r\n.se 1383322 websites Sweden - $150 \r\n.se 293316 websites International zone Sweden:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.seat 688 websites - $30 \r\n.security 287 websites - $30 \r\n.services 50298 websites - $50 \r\n.sex 7751 websites - $30 \r\n.sexy 5756 websites - $30 \r\n.sg 150351 websites Republic Of Singapore - $50 \r\n.sh 2706 websites - $30 \r\n.shiksha 911 websites - $30 \r\n.shoes 4676 websites - $30 \r\n.shop 631693 websites - $80 \r\n.shopping 6337 websites - $30 \r\n.show 12092 websites - $50 \r\n.si 39749 websites Slovenia- $50 \r\n.si 12879 websites International zone Slovenia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.singles 3589 websites - $30 \r\n.site 1855897 websites - $150 \r\n.sk 301001 websites Slovakia- $80 \r\n.sk 31572 websites International zone Slovakia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ski 5530 websites - $30 \r\n.sl 1504 websites - $30 \r\n.sm 8897 websites - $30 \r\n.sn 4465 websites Senegal - $30 \r\n.sn 344 websites International zone Senegal:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.so 9703 websites - $30 \r\n.soccer	2933 websites - $30 \r\n.social 23263 websites - $50 \r\n.software 16006 websites - $50 \r\n.solar 6575 websites - $30 \r\n.solutions 78770 websites - $50 \r\n.soy 1405 websites - $30 \r\n.space 409707 websites - $80 \r\n.sport 8578 websites - $30 \r\n.sr 580 - $30 \r\n.srl 5591 - $30 \r\n.st 8041 websites - $30 \r\n.storage 411 - $30 \r\n.store 328721 websites - $50 \r\n.stream 12901 websites - $80 \r\n.studio 53390 websites - $50 \r\n.study	5136 websites - $30 \r\n.style 11421 websites - $50 \r\n.su 110538 websites Russian- $50 \r\n.sucks 7329 websites - $30 \r\n.supplies 3079 websites - $30 \r\n.supply	5280 websites - $30 \r\n.support 23377 websites - $50 \r\n.surf 7373 websites - $30 \r\n.surgery 1778 websites - $30 \r\n.sv 8432 websites Salvador- $30 \r\n.swiss 17623 websites - $50 \r\n.sx 2901 websites - $30 \r\n.sy 2663 websites - $30 \r\n.sydney 10073 websites - $50 \r\n.systems 29044 websites - $50 \r\n.sz 321 websites - $30 \r\n.taipei	5664 websites - $30 \r\n.tattoo 7394 websites- $30 \r\n.tax 7388 websites - $30 \r\n.taxi 6034 websites - $30 \r\n.tc 16384 websites Turks and Caicos Islands- $50 \r\n.team 27421 websites- $50 \r\n.tech 276164 websites - $50 \r\n.technology 31533 websites- $50 \r\n.tel 90552 websites- $50 \r\n.tennis	1804 websites - $30 \r\n.tf 19841 websites - $50 \r\n.tg 1230 websites - $30 \r\n.th 22368 websites Kingdom Of Thailand- $50 \r\n.theater 1253 websites - $30 \r\n.tickets 1941 websites - $30 \r\n.tienda	1902 websites - $30 \r\n.tips 29380 websites- $50 \r\n.tires 941 websites - $30 \r\n.tirol 5472 websites - $30 \r\n.tj 6874 websites Tajikistan- $30 \r\n.tj 34 websites International zone Tajikistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tk 20085806 websites Tokelau - $500 \r\n.tl 2748 websites - $30 \r\n.tm 6395 websites Turkmenistan- $30 \r\n.tm 44 websites International zone Turkmenistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tn 16345 websites - $50 \r\n.to 16987 websites Tonga- $50 \r\n.today 81155 websites - $50 \r\n.tokyo 166544 websites - $50 \r\n.tools 13341 websites - $50 \r\n.top 3609373 websites - $250 \r\n.tours 10771 websites - $50 \r\n.town 4104 websites - $30 \r\n.toys 4566 websites - $30 \r\n.tr 243347 websites Turkey - $80 \r\n.tr 138818 International zone Turkey:.com .net .biz .info .name .tel .mobi .asia -$50 \r\n.trade 16130 websites - $50 \r\n.trading 1150 websites - $30 \r\n.training 19811 websites - $50 \r\n.travel 20461 websites - $50 \r\n.tt 535 websites - $30 \r\n.tube 3252 websites - $30 \r\n.tv 559502 websites Tuvalu - $80 \r\n.tw 982620 websites Taiwan - $100 \r\n.tz 4708 websites - $30 \r\n.ua 553216 websites Ukraina - $80 \r\n.ua 117701 websites International zone Ukraine:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ua, .com.ua, .kiev.ua 	193080 websites - $50 \r\n.ug 2561 websites Uganda - $30 \r\n.uk 4606907 websites United Kingdom - $250 \r\n.uk 3304606 websites International zone United Kingdom:.com .net .biz .info .name .tel .mobi.asia-$150 \r\n.university 6821 websites - $30 \r\n.uno 18694 websites - $50 \r\n.us 3139563 websites USA - $200 \r\n.us 578927 websites International zone USA:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.uy 15571 websites Uruguay - $50 \r\n.uz 38357 websites Uzbekistan - $50 \r\n.uz  365 websites International zone Uzbekistan:.com .net .biz .info .name .tel .mobi .asia \r\n.vacations 3826 websites - $50 \r\n.vc 18641 websites - $50 \r\n.ve 14015 websites Venezuela - $50 \r\n.vegas 17708 websites Las Vegas NV United States of America - $50 \r\n.ventures 13870 websites - $50 \r\n.versicherung 2005 websites - $30 \r\n.vet 7060 websites - $30 \r\n.vg 8389 site - $50 \r\n.vi 109 site - $30 \r\n.viajes	1065 site - $30 \r\n.video 21392 websites- $50 \r\n.villas	11791 site - $50 \r\n.vin 5494 websites - $30 \r\n.vip 1324303 websites - $100 \r\n.vision 7120 websites - $30 \r\n.vlaanderen 6014 websites - $30 \r\n.vn 436005 websites Vietnam - $80 \r\n.vn 161855 websites International zone Vietnam:.com .net .biz .info .name .tel .mobi .asia- 50 \r\n.vodka 1410 websites - $30 \r\n.vote 2316 websites - $30 \r\n.voto 3180 websites - $30 \r\n.voyage	2663 websites - $30 \r\n.vu 1051 websites - $30 \r\n.wales 12863 websites - $50 \r\n.wang 1352025 websites - $100 \r\n.watch 9902 websites - $30 \r\n.webcam	17340 websites - $50 \r\n.website 308840 websites -$50 \r\n.wedding 20162 websites - $50 \r\n.wf 1133 websites - $30 \r\n.wien 14413 websites - $50 \r\n.wiki 18129 websites wikis - $50 \r\n.win 73425 websites - $50 \r\n.wine 14831 websites - $50 \r\n.work 608563 websites - $80 \r\n.works 20702 websites - $50 \r\n.world 134234 websites - $50 \r\n.ws 99308 websites Samoa- $80 \r\n.wtf 17638 websites - $50 \r\n.xin 56857 websites - $50 \r\n.xn--3ds443g 26521 websites - $50 \r\n.xn--55qx5d 36965 websites - $50 \r\n.xn--6qq986b3xl 16188 websites - $50 \r\n.xn--czr694b 19910 websites - $50 \r\n.xn--czru2d 21621 websites - $50 \r\n.xn--fiq228c5hs 12145 websites - $50 \r\n.xn--io0a7i 24704 websites - $50 \r\n.xn--j6w193g 31764 websites - $50 \r\n.xn--kput3i 33006 websites - $50 \r\n.xn--mgbaam7a8h	2038 websites - $30 \r\n.xn--mgberp4a5d4ar 2534 websites - $30 \r\n.xn--mk1bu44c 6001 websites - $30 \r\n.xn--rhqv96g 7723 websites - $30 \r\n.xn--ses554g 126268 websites - $80 \r\n.xn--tckwe 6197 websites - $30 \r\n.xn--vuq861b 19706 websites - $50 \r\n.xxx 119879 websites- $50 \r\n.xyz 2650949 websites - $250 \r\n.yachts	254 websites - $30 \r\n.ye 18 websites - $30 \r\n.yoga 11563 websites - $50 \r\n.yokohama 8140 websites - $30 \r\n.yt 2004 websites - $30 \r\n.za 986900 websites South Africa - $100 \r\n.zm 508 websites - $30 \r\n.zone 26798 websites - $50 \r\n.бг (.xn--90ae) 3470 websites - $30 \r\n.дети 169 websites - $30 \r\n.москва (.xn--80adxhks) 19582 websites Moscow - $50 \r\n.онлайн	3403 websites - $30 \r\n.орг 1160 websites - $30 \r\n.рус (.xn--p1acf) 110789 websites - $50 \r\n.рф (.xn--p1ai) 869759 websites Russia - $80 \r\n.сайт 1005 websites - $30 \r\n.укр (.xn--j1amh) 10563 websites- $50 \r\n.بازار	550 websites - $30 \r\n.شبكة	834 websites - $30 \r\n.موقع	479 websites - $30 \r\n.संगठन	 106 websites - $30 \r\n.みんな  946 websites - $30 \r\n.コム    6533 websites - $30 \r\n.世界   4172 websites - $30 \r\n.公司   46162 websites - $50 \r\n.商城   6906 websites - $30 \r\n.商标   9866 websites - $30 \r\n.我爱你 15466 websites - $50 \r\n.手机   31544 websites - $50 \r\n.机构   244 websites - $30 \r\n.游戏   162 websites - $30 \r\n.移动   1152 websites - $30 \r\n.网店   3710 websites - $30 \r\n.网络   30809 websites - $50 \r\n.닷컴   5938 websites - $30',''),(417,1,87,'8','Нow to invеst in Вitсоin $ 7836 - get a return оf uр tо 5931%: http://gejp.whosway.com/11',''),(418,1,87,'9','Нow to invеst in Вitсоin $ 7836 - get a return оf uр tо 5931%: http://gejp.whosway.com/11',''),(419,1,87,'4','(303) 233-2523',''),(420,1,87,'3','maicolcar1995@hotmail.com',''),(421,1,87,'6','Hоw tо Mакe $8446 FАSТ,  Quiсk  Loаn, The Вusy Вudgetеr: http://hnn.whosway.com/06',''),(422,1,88,'8','DouglasWAIPT',''),(423,1,88,'9','DouglasWAIPTOW',''),(424,1,88,'4','(781) 316-4027',''),(425,1,88,'3','hostwebis.com@gmail.com',''),(426,1,88,'6','In this period that no one was expecting, we want to leave you an offer. \r\n \r\nNo Hidden Cost, No Tax Extra, Final checkout price $1 \r\nAdvanced Shared Web Hosting Package for 6 months, check offer details at https://www.HostWebis.com/shared-hosting \r\n \r\nWith 22 years of expertise in Web Hosting industry HostWebis provides services at affordable prices. \r\n \r\nInterested in this offer? Utilize coupon code 6month1eur on check out. \r\nOrder link: https://www.hostwebis.com/billing/cart.php?a=add&pid=2',''),(427,1,89,'8','Антикризисный маркетинг',''),(428,1,89,'9','Антикризисный маркетинг',''),(429,1,89,'4','(121) 733-3312',''),(430,1,89,'3','arkhipovpavelciqp@mail.ru',''),(431,1,89,'6','Антикризисный маркетинг \r\nЗдравствуйте, предлагаю вам попробовать новый антикризисный инструмент рекламы. \r\n \r\nМассово отправим ваше предложение или сайт с услугами, B2b товарами по базам сайтов коммерческих организаций, которые имеют открытую форму обратной связи. Более 20 рабочих баз. Выберите подходящую. \r\n \r\nМетод массовых рассылок основанный для проекта НЕ является вредоносным и/или запрещенным российским законодательством. \r\n \r\nВся подробная информация на сайте https://oktrust.ru/ \r\nДля консультаций пишите на почту oktrust.ru@gmail.com',''),(432,1,90,'8','Matthew',''),(433,1,90,'9','Bush',''),(434,1,90,'4','(177) 352-2074',''),(435,1,90,'3','matthewbush683@yahoo.com',''),(436,1,90,'6','Looking to replace my water heater possibly go with a tankless on-demand water system. Been in my townhouse for nearly 15 years now and my current water heater I believe is starting to leak from the bottom so it is something I would be looking to do in the near future',''),(437,1,91,'8','Victoria',''),(438,1,91,'9','Cullison',''),(439,1,91,'4','(717) 357-9337',''),(440,1,91,'3','vikkii21@yahoo.com',''),(441,1,91,'6','We are currently trying to find someone to replace a bathtub faucet which we are currently using vice grips to turn the water on and off. And also a stand up shower head and knobs. The previous plumber repaired them but they were not done correctly and now we need them replaced. I know with the current situation a lot of places are only doing emergency cases but we have had to use the vice grips so much Im afraid it will break off and then we will have a bigger issue. If someone could please email me and let me know an estimate of what that would cost, if it all has to be paid at once, and if your company would be able to replace them soon. Thank you for your assistance.',''),(442,1,92,'8','Verla',''),(443,1,92,'9','Lucier',''),(444,1,92,'4','(641) 741-6842',''),(445,1,92,'3','lucier.verla@msn.com',''),(446,1,92,'6','Hi, I was just taking a look at your website and submitted this message via your contact form. The \"contact us\" page on your site sends you messages like this to your email account which is why you\'re reading my message right now right? That\'s the most important achievement with any type of online ad, getting people to actually READ your message and this is exactly what you\'re doing now! If you have an advertisement you would like to promote to tons of websites via their contact forms in the U.S. or anywhere in the world let me know, I can even focus on specific niches and my charges are super reasonable. Send a reply to: Phungcorsi@gmail.com',''),(447,1,93,'8','Kelly',''),(448,1,93,'9','Bloom',''),(449,1,93,'4','(326) 421-2566',''),(450,1,93,'3','kelly@facemasksdirect.xyz',''),(451,1,93,'6','Hi,\r\nDo your employees have face masks?\r\nWe find local moms and seamstresses that are making reusable masks for local businesses and the community. \r\nJust tell us how many you might need and we will match you with someone that can make the life saving masks you need.\r\nGo here:\r\nhttps://facemasksdirect.xyz/best-grade/?=mannplumbingandheating.com\r\n \r\nProceeds from every order help support local hospitals and food bank distribution!\r\n\r\nThank you for your support!\r\nKelly Bloom\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\n964 E Badillo Street Unit 2055\r\nCovina, CA 91724\r\n\r\n\r\n\r\nDon’t need masks?  Avoid future messages here:\r\nhttps://facemasksdirect.xyz/out.php?site=mannplumbingandheating.com',''),(452,1,94,'8','Sebastian',''),(453,1,94,'9','Valmont',''),(454,1,94,'4','(917) 464-3739',''),(455,1,94,'3','sebastian@excelestimation.net',''),(456,1,94,'6','Hi,\r\n\r\nIt\'s Sebastian from Excel Estimation,LLC\r\n\r\nWe specialize in preparing cost estimates, material takeoffs and material lists for every construction trade One of our development estimators will evaluate from the outlines, every one of the materials and accessories required for your trades. It will be in Microsoft Excel, in the format you need, so you can send it out to bid quickly.\r\n \r\nWe give takeoffs and estimates to builders who fabricate a couple of homes a year and developers that assemble a hundred homes per year.\r\n \r\nWe have customers that have some expertise in light commercial development, for example, office, retail, and strict structures.  We perform various construction estimating services for these contractors.\r\n \r\nNeed an freelance estimator? We are here to enable you to out.\r\n \r\nSimply send over the arrangement of plans so we can give you quote on that.\r\nMuch appreciated.',''),(457,1,95,'8','MartinclurI',''),(458,1,95,'9','MartinclurIMY',''),(459,1,95,'4','(018) 188-1081',''),(460,1,95,'3','no-reply@hilkom-digital.de',''),(461,1,95,'6','hi there \r\nI have just checked mannplumbingandheating.com for the ranking keywords and seen that your SEO metrics could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(462,1,96,'8','Leonarddut',''),(463,1,96,'9','LeonarddutVG',''),(464,1,96,'4','(131) 341-8816',''),(465,1,96,'3','supernaturaltruthfromheaven@gmail.com',''),(466,1,96,'6','Global Pestilence, Financial Meltdown, Weather Disasters, Nations Prepping For War, Famine and more. Doesn’t that sound Tribulational? The Last Days are here, and since you bought the Rapture lie, you’re caught by surprise. \r\nWhat the Bible really teaches about Prophecy, and the deception that has left you unprepared for what is now happening. We have print and video on what is occurring, but we only want to hear from sincere Christians who are clustering underground. To hear more send your name, and postal mailing address, and we’ll mail you the location our underground websites. \r\nSupernaturaltruthfromheaven@gmail.com',''),(467,1,97,'8','Denny',''),(468,1,97,'9','Sirbaugh',''),(469,1,97,'4','(717) 352-8065',''),(470,1,97,'3','Cdsirbaugh@comcast.net',''),(471,1,97,'6','You have agreed to pick up my new hot water tank at Lowe’s and perform the install at 6835 St. Anne’s Drive Fayetteville. Lowe’s just called to say that the water heater will arrive their store on May 19. They cannot commit to the time of day. So, let’s agree to do the install on 20 May. As discussed with Shane, I would like an aluminum pan placed under the tank. Thank you.\r\n\r\nDenny Sirbaugh',''),(472,1,98,'8','Sех dаting оnline with рhоtо. Is frее: https://cutt.us/wJGxn',''),(473,1,98,'9','Sех dаting оnline with рhоtо. Is frее: https://cutt.us/wJGxn',''),(474,1,98,'4','(554) 126-2021',''),(475,1,98,'3','jdramrz@gmail.com',''),(476,1,98,'6','Adult american dating frее оnlinе usa: https://cutt.us/vMFAI',''),(477,1,99,'8','Susienob',''),(478,1,99,'9','Susienob',''),(479,1,99,'4','(100) 056-2842',''),(480,1,99,'3','Olivia.Harang89840@gmx.com',''),(481,1,99,'6','Hello! It\'s time for a piece of news. Don\'t miss the opportunity to win the best prizes! \r\nhttp://winaprize.site',''),(482,1,100,'8','Jenny Wilson',''),(483,1,100,'9','JennyWilson',''),(484,1,100,'4','(527) 544-7432',''),(485,1,100,'3','jenny@justemailmarketing.com',''),(486,1,100,'6','Sending emails to millions of prospective clients may seem easy, but getting through filters and actually getting your message inboxed by decision-makers is a lot harder than it looks. \r\n \r\nMy team has mastered getting the “inbox” of key managers and would gladly help you with sales and lead prospecting. \r\n \r\nCheck out my site JustEmailMarketing.co to learn more, or just reply back to this email and I will share some of our more affordable plans that virtually guarantee new leads from your target niche clientele. \r\n \r\nLead Generation and Sales Prospecting has never been easier! \r\n \r\nThanks. \r\n \r\nJenny Wilson \r\njenny@justemailmarketing.co \r\nhttp://JustEmailMarketing.co',''),(487,1,101,'8','Dating for sex | Greаt Britаin: https://v.ht/vhlZI',''),(488,1,101,'9','Dating for sex | Greаt Britаin: https://v.ht/vhlZI',''),(489,1,101,'4','(585) 208-0510',''),(490,1,101,'3','jujuduffey@yahoo.co.uk',''),(491,1,101,'6','Аdult 1 dаting аpp: https://cutt.us/lhFPE',''),(492,1,102,'8','Jane',''),(493,1,102,'9','Lepore',''),(494,1,102,'4','(813) 598-9598',''),(495,1,102,'3','Jane@ohio-masks.com',''),(496,1,102,'6','Hi! I\'m just reaching to local companies to see if you guys are all set for Masks? We currently have masks in stock and shipping within 24-48 hours from Ohio.  Would love to earn your business. No minimum order. Our website is http://ohio-masks.com  to learn more or place an order. Thank you so much! :) - Jane',''),(497,1,103,'8','Denylvka',''),(498,1,103,'9','DenylsdmWP',''),(499,1,103,'4','(136) 578-3025',''),(500,1,103,'3','an.tonovvitaliy.9.44@gmail.com',''),(501,1,103,'6','Здравствуйте товарищи \r\nНаша организация мы занимаем первое место по качеству и цене производства аква продукции в Харькове. Вас может заинтерсовать: \r\n[url=https://drive.google.com/file/d/1mq1pFhgixRuaotmr5A5IAQ0czSfRG--d/view?usp=sharing]обзор продукции[/url] – сделаете Ваше помещение уютнее и привлекательнее, создаст теплую релаксирующую обстановку.',''),(502,1,104,'8','Joseph',''),(503,1,104,'9','Stewart',''),(504,1,104,'4','(240) 217-5280',''),(505,1,104,'3','josephstewart4980@gmail.com',''),(506,1,104,'6','we have a trans gas furnace it kicks on and doesnt know when to shut off. Its not getting anything from them thermostat',''),(507,1,105,'8','Alex',''),(508,1,105,'9','Cohen',''),(509,1,105,'4','(646) 597-9025',''),(510,1,105,'3','a.cohen@explainervideoguys.com',''),(511,1,105,'6','I reached out several months ago about how explainer videos help and the unique issues they solve.\r\nMy team has created thousands of marketing videos including dozens in your field.\r\n\r\nAs you know, Google is constantly changing its SEO algorithm. The only thing that has remained consistent is that adding an explainer video increases website rank and most importantly keeps customers on your page for longer, increasing conversions ratios.\r\n\r\nSimplify your pitch, increase website traffic, and close more business.\r\nShould I send over some industry-specific samples?\r\n\r\n\r\n-- Alex Cohen\r\n\r\nEmail: a.cohen@explainervideoguys.com\r\nWebsite: http://explainervideoguys.com',''),(512,1,106,'8','Sarah',''),(513,1,106,'9','Engram',''),(514,1,106,'4','(512) 555-0181',''),(515,1,106,'3','sarah@designsmirk.com',''),(516,1,106,'6','Hello,\r\n\r\nI am trying to get in touch with the staff member that oversees your website. Can you point me in the right direction?\r\n\r\nThanks!',''),(517,1,107,'8','How to Тurn $30,000 intо $128,000: http://gg.gg/idyvx',''),(518,1,107,'9','How to Тurn $30,000 intо $128,000: http://gg.gg/idyvx',''),(519,1,107,'4','(516) 214-7060',''),(520,1,107,'3','lorenxx@hotmail.co.uk',''),(521,1,107,'6','Нow to mаке $ 8599 per daу: https://onlineuniversalwork.com/2d2fh',''),(522,1,108,'8','Linda',''),(523,1,108,'9','Anderson',''),(524,1,108,'4','(213) 558-1566',''),(525,1,108,'3','alison@videomarketingguru.club',''),(526,1,108,'6','Hey, great site!\r\n\r\nHave you thought about adding a video in response to COVID-19?\r\n\r\nWe can make one for you: \r\nhttps://www.videovideovideomarketing.club/success/?=mannplumbingandheating.com\r\n\r\nCustomers are worried right now. A short video like this can make a big impact for your business in the long term. People will remember it!\r\n\r\nBe well,\r\nLinda\r\n\r\nP.S. Due to coronavirus, we have also lowered our prices by up to 55%. \r\n\r\n\r\n\r\n\r\n\r\n\r\n- This commercial message sent from PJLK Marketing LC\r\n410 E Santa Clara Street STE 817\r\nSan Jose, CA 95113\r\n\r\nTo unsubscribe click here:\r\nhttps://videovideovideomarketing.club/out.php/?site=mannplumbingandheating.com',''),(527,1,109,'8','Kevin',''),(528,1,109,'9','Burnside',''),(529,1,109,'4','(717) 579-6246',''),(530,1,109,'3','ka.burnside@outlook.com',''),(531,1,109,'6','Good Morning! I was wondering if you guys work on Fujitsu Halcyon heat pumps. Model number is AOU12RLFC, serial is LNN 007720. We are receiving an error on our thermostat that reads \"00:A1\", which I believe indicates a freon leak? \r\n\r\nI would greatly appreciate it if someone would mind coming out to take a look! Our address is 7850 Lincoln Way East, Fayetteville, PA. Thank you!!',''),(532,1,110,'8','Amanda',''),(533,1,110,'9','King',''),(534,1,110,'4','(213) 558-6633',''),(535,1,110,'3','amanda.king@bestchat.top',''),(536,1,110,'6','Hello, \r\n\r\nI hope you\'re doing well and staying safe.  We realize the current environment has made it difficult to make ends meet, and we are seeing companies rapidly move online to better service their customers.  As experts in the customer service space, we work with businesses to help install Live Chat software and offer it completely free for six months. \r\n\r\nYou\'ll be able to live chat with your customers, display important messages on your website via \"in-app\" popups, and send automated emails for a much improved customer experience. \r\n\r\nInterested in learning more?  Get your 6 months free here:\r\n\r\nhttps://www.bestchat.top/fast/?=mannplumbingandheating.com\r\n\r\n\r\n\r\nAmanda\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n30025 Alicia Pkwy        Unit#2078        \r\nLaguna Niguel        CA        92677\r\n\r\n\r\n\r\nDont want to increase sales?  Avoid future marketing here:\r\nhttps://bestchat.top/out.php/?site=mannplumbingandheating.com',''),(537,1,111,'8','Steve French',''),(538,1,111,'9','SteveFrench',''),(539,1,111,'4','(368) 182-8866',''),(540,1,111,'3','s.french@drivetheleads.com',''),(541,1,111,'6','Impressive site. No doubt your clients appreciate your services and the time invested in your digital presence. I did however notice your business does not have a very strong LinkedIn presence. \r\n \r\nAs you know, LinkedIn is the number one business social network and the best tool for networking and business growth. \r\n \r\nMy company Drivetheleads.com uses LinkedIn networking exclusively for growth hacking on behalf of clients. The targeting is simply amazing. \r\n \r\nCan we schedule a quick demo or I can shoot you over an explainer video that reviews how my team can easily help expand your client base in a super affordable way? \r\n \r\nThanks. \r\nSteve French \r\ns.french@drivetheleads.com \r\nhttp://www.drivetheleads.com',''),(542,1,112,'8','Find уоurself a girl fоr thе night in уour сitу Саnadа: http://freeurlredirect.com/sexdating427147',''),(543,1,112,'9','Find уоurself a girl fоr thе night in уour сitу Саnadа: http://freeurlredirect.com/sexdating427147',''),(544,1,112,'4','(411) 613-6527',''),(545,1,112,'3','muhammadfaththoriq@gmail.com',''),(546,1,112,'6','Sex dаting оnline with рhoto. Is frее: https://cordly.pw/fhzwxV',''),(547,1,113,'8','Scott',''),(548,1,113,'9','Calaman',''),(549,1,113,'4','(717) 385-3646',''),(550,1,113,'3','scalaman43@gmail.com',''),(551,1,113,'6','My AC may need charged but its definitely not cooling. In fact the temp rises with the AC on. Please call me to set up an appointment ASAP. Thank you\r\n\r\nScott',''),(552,1,114,'8','Eli',''),(553,1,114,'9','Waters',''),(554,1,114,'4','(646) 597-9025',''),(555,1,114,'3','eli@marketingvideocompany.com',''),(556,1,114,'6','I reached out several months ago about how explainer videos help and the unique issues they solve.\r\nMy team has created thousands of marketing videos including dozens in your field.\r\n\r\nAs you know, Google is constantly changing its SEO algorithm. The only thing that has remained consistent is that adding an explainer video increases website rank and most importantly keeps customers on your page for longer, increasing conversions ratios.\r\n\r\nSimplify your pitch, increase website traffic, and close more business.\r\nShould I send over some industry-specific samples?\r\n\r\nEmail me back for some samples. Eli@marketingvideocompany.com\r\n\r\n-- Eli Waters\r\n\r\nEmail: Eli@marketingvideocompany.com\r\nWebsite: http://marketingvideocompany.com',''),(557,1,115,'8','clare',''),(558,1,115,'9','elder',''),(559,1,115,'4','(717) 496-6577',''),(560,1,115,'3','lucky@innernet.net',''),(561,1,115,'6','Hello,\r\nI would like to replace my kitchen sink faucet.  I found several at Lowe\'s (online), but am unsure if what I want, will fit my sink.\r\nCould you please advise me?  \r\n\r\nThank You,\r\n\r\nClare',''),(562,1,116,'8','MikeclurI',''),(563,1,116,'9','MikeclurIXI',''),(564,1,116,'4','(145) 785-4202',''),(565,1,116,'3','no-reply@hilkom-digital.de',''),(566,1,116,'6','hi there \r\nI have just checked mannplumbingandheating.com for the ranking keywords and seen that your SEO metrics could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(567,1,117,'8','Colleen',''),(568,1,117,'9','Wick',''),(569,1,117,'4','(416) 522-7935',''),(570,1,117,'3','colleen.wick@hotmail.com',''),(571,1,117,'6','Are you looking for new content for your website? Postwriters is an article panel where you can order as many articles as you want and recieve them in only hours. No other service delivers faster. Track and manage all of your orders from your dashboard, and order as many articles with as many keywords as you want! You will be blown away by PostWriters! Try it now for only $1! http://postwriters.com/',''),(572,1,118,'8','Harvey',''),(573,1,118,'9','Beck',''),(574,1,118,'4','(717) 860-7842',''),(575,1,118,'3','harvardq@gmail.com',''),(576,1,118,'6','969 Houser RD\r\nFayetteville, PA 17222\r\n\r\nI have a very slow draining and gurgling kitchen sink, now my sink in the bathroom is starting to gurgle I have tried putting a snake down the vent and all drain lines with no success. \r\nCare to have a look?\r\nI work in Greencastle so I need 30 min. to get there. Above number is my Cel.',''),(577,1,119,'8','clare',''),(578,1,119,'9','elder',''),(579,1,119,'4','(717) 496-6577',''),(580,1,119,'3','lucky@innernet.net',''),(581,1,119,'6','I sent you a message a couple of hours ago, about replacing my kitchen faucet.....I just wanted to add, I would hire you to replace it.  Just wanted to make that clear.',''),(582,1,120,'8','Uriel',''),(583,1,120,'9','Esparza',''),(584,1,120,'4','(717) 414-8894',''),(585,1,120,'3','lorince68@yahoo.com',''),(586,1,120,'6','Hello, I am checking on the status of my replacement gas water heater. Choice had given me this claim number; 85796937. Please let me know when you can come to replace it. The service address is 510 Brumbaugh in Chambersburg. Thanks! Uriel Esparza',''),(587,1,121,'8','MelvinFruby',''),(588,1,121,'9','MelvinFrubyDM',''),(589,1,121,'4','(653) 684-7857',''),(590,1,121,'3','atrixxtrix@gmail.com',''),(591,1,121,'6','Dear Sir/mdm, \r\n \r\nHow are you? \r\n \r\nWe supply medical products: \r\n \r\nMedical masks \r\n3M 1860, 9502, 9501 \r\n3ply medical, KN95 FFP2, FFP3, N95 masks \r\nFace shield \r\nDisposable nitrile/latex gloves \r\nIsolation/surgical gown \r\nProtective PPE/Overalls \r\nIR non-contact thermometers \r\nCrystal tomato \r\n \r\nHuman body thermal cameras \r\nfor Body Temperature Measurement up to accuracy of ±0.1?C \r\n \r\nWhatsapp: +65 87695655 \r\nTelegram: cctv_hub \r\nSkype: cctvhub \r\nEmail: sales@thecctvhub.com \r\nW: http://www.thecctvhub.com/ \r\n \r\nIf you do not wish to receive email from us again, please let us know by replying. \r\n \r\nregards, \r\nCCTV HUB',''),(592,1,122,'8','Meet seхy girls in yоur city Саnаda: http://b1.nz//116652',''),(593,1,122,'9','Meet seхy girls in yоur city Саnаda: http://b1.nz//116652',''),(594,1,122,'4','(577) 388-6187',''),(595,1,122,'3','phajon@live.co.uk',''),(596,1,122,'6','Sеxy girls fоr thе night in your town AU: http://tks.website/u5Y',''),(597,1,123,'8','Sales @',''),(598,1,123,'9','Eyeglass Supply',''),(599,1,123,'4','(631) 930-5144',''),(600,1,123,'3','ppe@eyeglasssupplystore.com',''),(601,1,123,'6','Attention Business Managers,\r\n\r\nAs an essential equipment supplier, we wanted to let you know that we have Isopropyl Alcohol, Masks, Shields, Gloves and Hand Sanitizer in stock and shipping within 24 hours.\r\n\r\nSee our link here:  https://eyeglasssupplystore.com/product-category/personal-protective-equipment/business-protection-packages/\r\n\r\nUse the coupon code: PPEGROUP for 15% off your first order.\r\n\r\nYou can call us or email us any questions you may have.  We have sold over 22,000 satisfied customers including many USPS offices, the US Coast Guard, and many others.  We are working hard to provide needed materials and equipment to businesses of all sizes.  Thank you for your consideration.\r\n\r\nSincerely,\r\n\r\nThe Eyeglass Supply Store Team',''),(602,1,124,'8','cheap cialis',''),(603,1,124,'9','cialis costTI',''),(604,1,124,'4','(878) 188-3528',''),(605,1,124,'3','bewaar@cbd-7.com',''),(606,1,124,'6','powered by fireboard cialis\r\n  cialis from canada pharmacy knowledge base\r\n <a href=\"http://cialisbng.com\">cialis vs viagra\r\n</a> - cialis how long to work\r\n cialis for women cancer contact us',''),(607,1,125,'8','Sex dating in Australia | Girls fоr sex in Аustrаlia: http://gg.gg/isjg7',''),(608,1,125,'9','Sex dating in Australia | Girls fоr sex in Аustrаlia: http://gg.gg/isjg7',''),(609,1,125,'4','(681) 504-0702',''),(610,1,125,'3','rayzon@bk.ru',''),(611,1,125,'6','Аdult оnline dаting mobile numbers: http://gg.gg/iqnha',''),(612,1,126,'8','CharlieKit',''),(613,1,126,'9','CharlieKitQZ',''),(614,1,126,'4','(451) 730-1022',''),(615,1,126,'3','ivanovartempzf@mail.ru',''),(616,1,126,'6','Как перекинуть с Киевстар на карту \r\n \r\n[url=https://money.kyivstar.ua/ru/catalog/mobile]снять деньги с мобильного[/url]',''),(617,1,127,'8','Dale Borderstien',''),(618,1,127,'9','DaleBorderstien',''),(619,1,127,'4','(822) 366-7231',''),(620,1,127,'3','dale@explainingyourbusiness.com',''),(621,1,127,'6','Thanks for checking my msg. \r\n \r\nWith the American economy finally stabilizing, businesses are aiming to return to pre-Corona market positions. \r\n \r\nIf you are reopening after the pandemic and are interested in sprucing up your prospecting and marketing - why not add video assets to your business? \r\n \r\nMy team is offering a \"Back 2 Market\" special with affordable options on getting started with basic and advanced explainer videos. \r\n \r\nMy team, with offices in Israel & California, has helped many small businesses re-enter the scene with new marketing tools for their company. We\'ve even created explainer videos in your industry & field. \r\n \r\nThere is still some time left in 2020 to turn this pandemic filled year around! \r\n \r\nHow about I send over a couple industry-specific explainer samples? \r\n \r\n-- Dale Borderstien \r\ndale@explainingyourbusiness.com \r\nMy Website: http://Explainingyourbusiness.com',''),(622,1,128,'8','Charlesnurry',''),(623,1,128,'9','CharlesnurryUZ',''),(624,1,128,'4','(740) 220-1583',''),(625,1,128,'3','0419410773@t-online.de',''),(626,1,128,'6','Bеar Grillz hаt wahrend der Quarantane Zugаng zum Onlinе-Einkоmmenssуstem gеwahrt! \r\nLеtztе Wochе hat Bear Grillz eine neue \"Luсke\" angекundigt, die Siе zu Наusе nutzеn кonnen, um finаnzielle Stаbilitat zu еrreiсhеn! \r\nEr erlaubte sеinen Mitаrbеitern, diese einmаlige Gelеgеnheit zu nutzen, bis die Quarаntanе endete. \r\nhttp://acjnkql.testharsheey.club/68ad60 \r\n\"Ich habe dieses Jаhr uber 6,4 Мilliоnеn mit einer Online-Рlattfоrm vеrdiеnt! Und jetzt ist diеs meinе Hаuptеinnаhmequelle!\" \r\nAls bеkаnnt wurde, um wеlche Plattform еs sich handelte, коnntеn Тausendе von Вriten mеhr vеrdiеnen аls ... \" \r\nhttp://igg.gadgetspybd.com/2fcfeea',''),(627,1,129,'8','CharlieKit',''),(628,1,129,'9','CharlieKitQZ',''),(629,1,129,'4','(015) 543-8252',''),(630,1,129,'3','ivanovartempzf@mail.ru',''),(631,1,129,'6','можно ли вывести деньги с киевстар \r\n \r\n[url=https://psm7.com/money-transfer]снять деньги с телефона[/url]',''),(632,1,130,'8','Annavathe',''),(633,1,130,'9','AnnavatheQM',''),(634,1,130,'4','(073) 007-5052',''),(635,1,130,'3','annamaster19921@gmail.com',''),(636,1,130,'6','Hello  neighbor \r\nI saw  you moving  around my house. And I like what I see ;).  Do you would like to meet?  See my pictures here: \r\n \r\nhttps://flipme.link/pmam2q\r\n \r\n \r\nIm home alone,  whenever you like. \r\n \r\nLet me Know If you are ready for it \r\n \r\n- Anna',''),(637,1,131,'8','Sarah',''),(638,1,131,'9','Mitchell',''),(639,1,131,'4','(000) 000-0000',''),(640,1,131,'3','readybusiness@tutanota.com',''),(641,1,131,'6','Hi,\r\n\r\nWe are the supplier of the best turnkey business websites.\r\n\r\nAbout our business websites for sale:\r\nHigh Demand - These are digital services that all website owners need.\r\nNothing to Ship - like most online businesses.\r\n\r\nEasy to run, newbie friendly with high profit margins. Everything is outsourced.\r\nYou keep all of the profit. We are the designers this is all we do.\r\n\r\nEach of our business websites come complete with: \r\nSuppliers to outsource your sales, free hosting permanantly, \r\ndomain and social media marketing materials.\r\n\r\nThank you for your time and hope to see you on our site.\r\n\r\nBest,\r\nSarah\r\nhttps://topdigitalbusinesses.com',''),(642,1,132,'8','Sarah',''),(643,1,132,'9','Mitchell',''),(644,1,132,'4','(000) 000-0000',''),(645,1,132,'3','newbiz.1@outlook.com',''),(646,1,132,'6','Hi,\r\n\r\nWe are the supplier of the best turnkey business websites.\r\n\r\nAbout our business websites for sale:\r\nHigh Demand - These are digital services that all website owners need.\r\nNothing to Ship - like most online businesses.\r\n\r\nEasy to run, newbie friendly with high profit margins. Everything is outsourced.\r\nYou keep all of the profit. We are the designers this is all we do.\r\n\r\nEach of our business websites come complete with: \r\nSuppliers to outsource your sales, free hosting permanantly, \r\ndomain and social media marketing materials.\r\n\r\nThank you for your time and hope to see you on our site.\r\n\r\nBest,\r\nSarah\r\nhttps://topdigitalbusinesses.com',''),(647,1,133,'8','robert',''),(648,1,133,'9','hancock',''),(649,1,133,'4','(717) 261-9864',''),(650,1,133,'3','bhancock@usa.com',''),(651,1,133,'6','Hello, i have a couple of plumbing problems that need fixing. Exterior faucet not working properly, and need bathroom faucet replaced, Thank you, R. Hancock.',''),(652,1,134,'8','Mike',''),(653,1,134,'9','Saffern',''),(654,1,134,'4','(917) 722-5127',''),(655,1,134,'3','mike@graphicdesignerisrael.online',''),(656,1,134,'6','Your website and business look great and both seem well established but I could help you with designing new elements for your website which will make it more presentable. \r\n\r\nI am messaging you today to compliment your business + to give you a heads up about the unreasonably low pricing I am charging (for a limited time) to new clients interested in my graphic design services.\r\n\r\nReply back to say Hi, ask to see my portfolio, or check out my site.\r\n\r\n-- Mike Saffern\r\n\r\nEmail: mike@graphicdesignerisrael.online\r\nWebsite: http://graphicdesignerisrael.online',''),(657,1,135,'8','Annvathe',''),(658,1,135,'9','AnnvatheQR',''),(659,1,135,'4','(627) 420-8525',''),(660,1,135,'3','annamaster1992211@gmail.com',''),(661,1,135,'6','Hi my friend \r\nI saw  you walking  around my home. You looks nice ;).  Should we meet?  See my Profile here: \r\n \r\nhttps://flipme.link/U3n2Vz\r\n \r\n \r\nIm living alone, You can spend nice time. \r\n \r\nLet me Know If you are ready for it \r\n \r\n- Anna',''),(662,1,136,'8','Paul',''),(663,1,136,'9','Keefer',''),(664,1,136,'4','(443) 406-5128',''),(665,1,136,'3','thewilliamsportbandit@yahoo.com',''),(666,1,136,'6','I’d like to have someone take a look at my Trane unit. It’s not cooling like it normally does. Thanks!',''),(667,1,137,'8','Katrina',''),(668,1,137,'9','Kensinger',''),(669,1,137,'4','(717) 830-7067',''),(670,1,137,'3','Trinie0606@yahoo.com',''),(671,1,137,'6','A/c not working properly. Will not get cold like before. Noticed water around base furnace. Please help!',''),(672,1,138,'8','Annvathe',''),(673,1,138,'9','AnnvatheQR',''),(674,1,138,'4','(068) 460-0402',''),(675,1,138,'3','annamaster1992211@gmail.com',''),(676,1,138,'6','Hi  neighbor \r\nI see you walking  around my home. You looks nice ;). Shall we meet soon? See my Profile here: \r\n \r\nhttps://cutt.ly/XyBQ8LN \r\n \r\nIm tired of living alone, You can spend nice time. \r\n \r\nLet me Know If you like it \r\n \r\n- Anna',''),(677,1,139,'8','Prince Taylor',''),(678,1,139,'9','PrinceTaylor',''),(679,1,139,'4','(603) 643-4757',''),(680,1,139,'3','prance.gold.arbitrage@gmail.com',''),(681,1,139,'6','Hi! \r\nI\'m Prince Taylor. \r\n \r\nI contacted you with an invitation for investment program witch you will definitely win. \r\n \r\nThe winning project I\'m here to invite you is called \"Prance Gold Arbitrage (PGA)\". \r\n \r\nPGA is a proprietary system that creates profits between cryptocurrency exchanges through an automated trading program. \r\n \r\nThe absolute winning mechanism \"PGA\" gave everyone the opportunity to invest in there systems for a limited time. \r\n \r\nYou have chance to join from only $ 1000 and your assets grow with automated transactions every day! \r\n \r\nInvestors who participated in this program are doubling their assets in just a few months. \r\nBelieve or not is your choice. \r\nBut don\'t miss it, because it\'s your last chance. \r\nSign up for free now! \r\n \r\nRegister Invitation code \r\nhttps://portal.prancegoldholdings.com/signup?ref=prince \r\n \r\nAbout us \r\nhttps://www.dropbox.com/s/0h2sjrmk7brhzce/PGA_EN_cmp.pdf?dl=0 \r\n \r\nPGA Plans \r\nhttps://www.dropbox.com/s/lmwgolvjdde3g8n/plans_en_cmp.pdf?dl=0 \r\n \r\nMovie \r\nhttps://www.youtube.com/watch?v=9054gGRtjX8',''),(682,1,140,'8','Girls fоr seх in your сitу | USA: http://mychat.fun/datingsexygirls354347',''),(683,1,140,'9','Girls fоr seх in your сitу | USA: http://mychat.fun/datingsexygirls354347',''),(684,1,140,'4','(806) 118-5353',''),(685,1,140,'3','wdyepez1986@hotmail.com',''),(686,1,140,'6','Adult native american dаting оnline: http://alsi.ga/datingsexygirls942535',''),(687,1,141,'8','patty',''),(688,1,141,'9','cool',''),(689,1,141,'4','(717) 414-1861',''),(690,1,141,'3','pac_426@hotmail.com',''),(691,1,141,'6','do you do financing to get a new ac unit mine is going bad',''),(692,1,142,'8','Eve',''),(693,1,142,'9','Brooks',''),(694,1,142,'4','(646) 597-9024',''),(695,1,142,'3','eve@explainthebusiness.com',''),(696,1,142,'6','I have written content specific to your industry in order to produce a professional explainer video. \r\nOur process is so easy I can explain in under 10 minutes and, when implemented, it can get your business its next 100 clients/customers.\r\n\r\nI recently used this strategy with a client who is in the same industry as you, breaking down their pitch in fun, engaging, and oftentimes animated video formats that almost tripled their monthly sales rates.\r\n\r\nIn the meantime, I have some sample explainer videos that were made specifically for your industry...\r\nShould I send them over?\r\n\r\n\r\n-- Eve Brooks\r\n\r\nEmail: eve@explainthebusiness.com\r\nWebsite: http://explainthebusiness.com',''),(697,1,143,'8','Harvey',''),(698,1,143,'9','Beck',''),(699,1,143,'4','(717) 860-7842',''),(700,1,143,'3','harvardq@gmail.com',''),(701,1,143,'6','I apologize, I forgot to write down who left me a message yesterday.\r\nDo you have a model number of the urinal that you would like to putting in?\r\nI just looked at some on line, have you ever dealt with the water-less ones? The one I was looking at was around the same price.',''),(702,1,144,'8','robert',''),(703,1,144,'9','hancock',''),(704,1,144,'4','(717) 261-9864',''),(705,1,144,'3','bhancock@usa.com',''),(706,1,144,'6','Bathroom sink hot water faucet leaks, kitchen sink hot water is starting to leak, and exterior faucet needs checking, hard to get water to turn off. Thank you in advance for your response!',''),(707,1,145,'8','David',''),(708,1,145,'9','Stern',''),(709,1,145,'4','(646) 597-9025',''),(710,1,145,'3','david@explainervid.online',''),(711,1,145,'6','I have written content specific to your industry in order to produce a professional explainer video. \r\nOur process is so easy I can explain in under 10 minutes and, when implemented, it can get your business its next 100 clients/customers.\r\n\r\nI recently used this strategy with a client who is in the same industry as you, breaking down their pitch in fun, engaging, and oftentimes animated video formats that almost tripled their monthly sales rates.\r\n\r\nIn the meantime, I have some sample explainer videos that were made specifically for your industry...\r\nShould I send them over?\r\n\r\n-- David Stern\r\n\r\nEmail: david@explainervid.online\r\nWebsite: http://explainervid.online',''),(712,1,146,'8','Nicole',''),(713,1,146,'9','Ritter',''),(714,1,146,'4','(805) 372-1751',''),(715,1,146,'3','nicole@alexadirectory.top',''),(716,1,146,'6','Hey! \r\n\r\nHave you remembered to activate voice search for your business?\r\n\r\nActivate it here in 30 seconds:\r\n\r\nhttps://alexadirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\nWithout activation, customers may not be able to find mannplumbingandheating.com with voice searches on Google, Amazon Alexa or mobile phones.\r\n\r\nNicole Ritter\r\nVoice Activation Follow-up Specialist\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\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://alexadirectory.top/out.php?site=mannplumbingandheating.com',''),(717,1,147,'8','Seху girls for the night in your tоwn Cаnаda: http://gx.nz//266121',''),(718,1,147,'9','Seху girls for the night in your tоwn Cаnаda: http://gx.nz//266121',''),(719,1,147,'4','(274) 584-6374',''),(720,1,147,'3','jamielacsamana@hotmail.co.uk',''),(721,1,147,'6','Dating site fоr sex with girls in Gеrmаnу: http://gongpo.moum.kr/adultdating926426',''),(722,1,148,'8','Richard',''),(723,1,148,'9','Schaffer',''),(724,1,148,'4','(215) 330-4914',''),(725,1,148,'3','rich@best10award.com',''),(726,1,148,'6','Hi Mann Plumbing And Heating,\r\n\r\nMy name is Rich and I\'m emailing you to let you know that you\'ve been selected for the 2020 Best Fayetteville Plumber Award!\r\n\r\nFor the next year you\'ll be promoted on BestPlumberAwards.com so anyone searching for a plumber in the Fayetteville area will find you. There is only one winner in each city. You\'ll also get a badge for your website, social media graphics, a certificate for the office, press release, and more.\r\n\r\nThe next step is for you to claim the award which you can do here: www.bestplumberawards.com/congrats\r\n\r\nLet me know when you claim it so that I can get everything over to you,\r\n\r\nRich Schaffer\r\nAwards Specialist',''),(727,1,149,'8','Kennethfrisa',''),(728,1,149,'9','KennethfrisaLD',''),(729,1,149,'4','(270) 853-4716',''),(730,1,149,'3','t.denis2112999@yandex.ru',''),(731,1,149,'6','Es fallt mir schwer, es zu glаubеn. \r\nVоr еinеr Wochе war ich einе gеwohnliсhe Mutter von drеi kleinen Kindern аus einеr kleinen Stadt. \r\nhttp://freeurlredirect.com/earnbitcoin115683 \r\nJеtzt verdienе ich mеhr аls 5.000 Dоllаr рro Tag und hаbе еin Lеben, das ich mir immer gеwunscht habе. Viеlеn Dаnk! \r\nhttp://slink.pl/48845',''),(732,1,150,'8','Daryl',''),(733,1,150,'9','Cook',''),(734,1,150,'4','(717) 372-3401',''),(735,1,150,'3','darylc415@gmail.com',''),(736,1,150,'6','I would like an estimate on a gas water heater installation.',''),(737,1,151,'8','Mike Jones',''),(738,1,151,'9','MikeJones',''),(739,1,151,'4','(676) 558-5257',''),(740,1,151,'3','no-reply@monkeydigital.co',''),(741,1,151,'6','hi there \r\n \r\nAfter checking your mannplumbingandheating.com, I`ve noticed that the SEO trend has dropped in the past several weeks \r\n \r\nIn order to fix this trend, just follow these simple steps: \r\n \r\n1. Disavow all UGC links that point to mannplumbingandheating.com (we can help for free) \r\n2. Build non-ugc links \r\n \r\nnon-UGC links. FIX your ranks with us today \r\nhttps://www.monkeydigital.co/product/non-ugc-backlinks/ \r\n \r\nthank you \r\nMike \r\nsupport@monkeydigital.co',''),(742,1,152,'8','Tim',''),(743,1,152,'9','Davis',''),(744,1,152,'4','(717) 385-5735',''),(745,1,152,'3','Davistim@msn.com',''),(746,1,152,'6','Greetings.  I have a 50 gal 4500 watt water heater that is leaking at the top and the side and would like to discuss options for repair or replacement.',''),(747,1,153,'8','Jesusfub',''),(748,1,153,'9','JesusfubOJ',''),(749,1,153,'4','(330) 584-8500',''),(750,1,153,'3','jordan-neipp@web.de',''),(751,1,153,'6','Iсh hattе Prоbleme, еinen regularen Jоb zu haltеn, bis ich in dеn Bitсoin-Cоdе eingеfuhrt wurde. \r\nIn zwеi Woсhen habе ich mеhr Geld vеrdiеnt, аls iсh nоrmаlеrwеise mit einеm normаlеn Koсhfеld vеrdiеne. \r\nhttps://darknesstr.com/makemorebitcoin685900 \r\nIch bin frоh, Tеil dеr Bitсоin-Cоdе-Cоmmunity zu sеin. \r\nIhr sеid die Bеstеn und dank еuch kаnn ich еndlich mehr Zеit mit mеiner Fаmiliе verbringеn, ohne mir Sorgen um diе Bеzаhlung vоn Rechnungen mасhеn zu mussеn! \r\nhttps://go.managedhosting.de/earnbitcoin665673',''),(752,1,154,'8','Eric',''),(753,1,154,'9','Jones',''),(754,1,154,'4','(416) 385-3200',''),(755,1,154,'3','eric@talkwithwebvisitor.com',''),(756,1,154,'6','Hello, my name’s Eric and I just ran across your website at mannplumbingandheating.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://www.talkwithwebvisitor.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitor.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitor.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(757,1,155,'8','David',''),(758,1,155,'9','Stern',''),(759,1,155,'4','(646) 597-9025',''),(760,1,155,'3','david@explainervid.online',''),(761,1,155,'6','I have written content specific to your industry in order to produce a professional explainer video. \r\nOur process is so easy I can explain in under 10 minutes and, when implemented, it can get your business its next 100 clients/customers.\r\n\r\nI recently used this strategy with a client who is in the same industry as you, breaking down their pitch in fun, engaging, and oftentimes animated video formats that almost tripled their monthly sales rates.\r\n\r\nIn the meantime, I have some sample explainer videos that were made specifically for your industry...\r\nShould I send them over?\r\n\r\n-- David Stern\r\n\r\nEmail: david@explainervid.online\r\nWebsite: http://explainervid.online',''),(762,1,156,'8','Harry',''),(763,1,156,'9','Coleman',''),(764,1,156,'4','(646) 597-9025',''),(765,1,156,'3','harry@drivetheleads.com',''),(766,1,156,'6','Fact: millions of business owners and key decision makers are using LinkedIn as their sole platform for social media. After a quick glance at your team\'s LinkedIn profiles, I believe I can help spruce up and generate some new biz.\r\n\r\nMy company Drivetheleads.com uses LinkedIn networking exclusively for growth hacking on behalf of clients. The targeting is simply amazing.\r\n\r\nOur plans are affordable and fully transparent and have successfully generated thousands of appointments, leads, and new biz opportunities for our clients.\r\n\r\nAre you currently taking on new clients?\r\n\r\n\r\nThanks.\r\nHarry Coleman\r\nharry@drivetheleads.com\r\nhttp://www.drivetheleads.com',''),(767,1,157,'8','Sarahexank',''),(768,1,157,'9','SarahexankUQ',''),(769,1,157,'4','(514) 047-4502',''),(770,1,157,'3','maiilerinvestorsx@gmx.com',''),(771,1,157,'6','Hello \r\n \r\nIm looking for investor for my email marketing business. \r\nI own 270 million email database with 92% valid emails. Im looking for investor who invest in server infrastructure to send it. Im planning to run infrastructure to send like 10 million emails per day on daily basis, and increase every week by add more servers. \r\nPotential earnings are $100-$200 depend on country per million sended messages \r\nI have knowledge about email marketing and team which is needed to handle whitelisting. \r\n \r\nInvestment: $2000 on first run, after you see results you can invest more. \r\nYou control all investment, all servers, software will be with your access. \r\n \r\nIf you are interested about partnership please send email on: \r\nmailermasters@gmail.com',''),(772,1,158,'8','AaronGeowl',''),(773,1,158,'9','AaronGeowlWF',''),(774,1,158,'4','(780) 517-5251',''),(775,1,158,'3','webgeeksgroup@gmail.com',''),(776,1,158,'6','Hi, I stumbled onto your site yesterday and love the design (I\'ve been making websites since 2005). What platform is it made with?  \r\n \r\nThe only thing I noticed was that you appeared a bit low on search results and the home page took a bit long to load for me. \r\n \r\nI\'ve recently joined a private group for serious website owners. They send free periodic tips to get your site ranking better and improve overall performance. This includes tips, growth hacks, and \"secret stuff\". \r\n \r\nBasically, a free consulting service. \r\n \r\nIt really helped me improve the site I manage. \r\n \r\nIf you\'d like to join, I\'m sure they\'d love to have another passionate website owner in the group:  \r\n \r\nJOIN HERE: \r\n \r\nhttps://mailchi.mp/6db3130aa225/webgeek1 \r\n \r\nIf you\'re not interested, no worries, best of luck on your site! \r\n \r\nAaron',''),(777,1,159,'8','[OМG] PROFIT in under 60 seconds: http://joov.net/wegk54',''),(778,1,159,'9','[OМG] PROFIT in under 60 seconds: http://joov.net/wegk54',''),(779,1,159,'4','(281) 771-6287',''),(780,1,159,'3','lekinson73@yahoo.co.uk',''),(781,1,159,'6','Invеst $ 6413 in Сrуptосurrency onсe and gеt $ 93642 pаssivе inсomе рer month: http://slink.pl/49111',''),(782,1,160,'8','Jared',''),(783,1,160,'9','Wallen',''),(784,1,160,'4','(818) 308-5653',''),(785,1,160,'3','jrdwallen@gmail.com',''),(786,1,160,'6','Hi,\r\nMy name is Mr. Jared Wallen and I would like to know if you can help me Order some ; \r\n10.0 kW, 208VAC, Horizontal  3 Phase Unit heater.\r\nKindly reply me with the price and availability.\r\n\r\nThank you.\r\nJared .',''),(787,1,161,'8','Aneta Arthur',''),(788,1,161,'9','AnetaArthur',''),(789,1,161,'4','(175) 554-6041',''),(790,1,161,'3','arthur@choose2help.org',''),(791,1,161,'6','Hello, \r\n \r\nMy son born January 5th 2020 requires a serious head surgery due to the fusion of the cranial suture (craniosynostosis). I cannot afford to pay for the series of costly medical expenses. We only have 6 weeks to get everything organized before he undergoes the surgery. I have no other option but to ask you to help me help my son. We are gathering the funds through a verified charity: \r\n \r\nhttps://choose2help.org/arthur.html \r\n \r\n \r\nThank you for your support. Aneta.',''),(792,1,162,'8','Rachel',''),(793,1,162,'9','Florent',''),(794,1,162,'4','(326) 421-1751',''),(795,1,162,'3','rachel.florent@videomarketingnow.xyz',''),(796,1,162,'6','Hey, \r\n\r\nYou have a lot going on right now, but maybe we can help?\r\n\r\nWe make professional videos for businesses to put on their websites.\r\n\r\nSee examples of what we can do for you:\r\nhttps://www.videomarketingnow.xyz/success/?=mannplumbingandheating.com\r\n\r\nThese videos are helping businesses GROW right now, at a time when they need it most.\r\n\r\nRachel Florent\r\nCustom Video Specialist\r\n\r\n\r\n\r\n\r\n\r\n410 Santa Clara St. East, Unit 817	\r\nSan Jose,	CA 95113\r\n \r\nNo more video marketing:\r\nhttps://thevideonetwork.top/out.php/?site=mannplumbingandheating.com',''),(797,1,163,'8','The best girls fоr seх in your town AU: http://gmy.su/:G0lnb',''),(798,1,163,'9','The best girls fоr seх in your town AU: http://gmy.su/:G0lnb',''),(799,1,163,'4','(756) 148-7875',''),(800,1,163,'3','shanshan_westham@hotmail.co.uk',''),(801,1,163,'6','Adult #1 frее dаting aрp: https://links.wtf/P9cB \r\nDating site for seх with girls frоm the USA: https://links.wtf/5tRu \r\nАdult best саnаdian frеe dаting sitеs: http://gmy.su/:ZCinb \r\nSеху girls for thе night in yоur tоwn USA: http://gmy.su/:aqlnb \r\nDаting sitе for sex with girls in Аustralia: https://1borsa.com/sexdatinggirls816273',''),(802,1,164,'8','Kelly',''),(803,1,164,'9','Scott',''),(804,1,164,'4','(000) 000-0000',''),(805,1,164,'3','social@reallyfast.info',''),(806,1,164,'6','Hi,\r\n\r\nWe are one of the largest suppliers of social media marketing services.\r\n\r\nWould you like a huge amount of Facebook, Twitter, Instagram and Youtube\r\nlikes, shares, subscribers, followers and views fast? \r\nBoost your social presence today - 24 hour turnaround.\r\n\r\nWe look forward to skyrocketing your social media.\r\n\r\nKind Regards,\r\nKelly\r\nhttps://social-media-blast.com',''),(807,1,165,'8','Heatherfearm',''),(808,1,165,'9','HeatherfearmVI',''),(809,1,165,'4','(101) 652-2536',''),(810,1,165,'3','atrixxtrix@gmail.com',''),(811,1,165,'6','Dear Sir/mdm, \r\n \r\nHow are you? \r\n \r\nWe supply medical products: \r\n \r\nMedical masks \r\nDrager, makrite, honeywell N95 \r\n3M N95 1860, 9502, 9501, 8210 \r\n3ply medical, KN95, FFP2, FFP3, N95 masks \r\nFace shield \r\nNitrile/vinyl/latex gloves \r\nIsolation/surgical gown \r\nProtective PPE/Overalls \r\nIR non-contact thermometers/oral thermometers \r\nsanitizer dispenser \r\nCrystal tomato \r\n \r\nHuman body thermal cameras \r\nfor Body Temperature Measurement up to accuracy of ±0.1?C \r\n \r\nWhatsapp: +65 87695655 \r\nTelegram: cctv_hub \r\nSkype: cctvhub \r\nEmail: sales@thecctvhub.com \r\nW: http://www.thecctvhub.com/ \r\n \r\nIf you do not wish to receive email from us again, please let us know by replying. \r\n \r\nregards, \r\nCCTV HUB',''),(812,1,166,'8','Lauren',''),(813,1,166,'9','Gale',''),(814,1,166,'4','(545) 236-1566',''),(815,1,166,'3','lauren@quickfundingnow.xyz',''),(816,1,166,'6','IMPORTANT UPDATE\r\n\r\nMany Americans now qualify for emergency loans up to $5,000.\r\n\r\nTo find out if you qualify, visit: \r\nhttps://quickfundingnow.xyz/r1/?=mannplumbingandheating.com\r\n\r\nThese loans are unrelated to any stimulus or unemployment compensation you may already be receiving from the government.\r\n\r\nDue to the COVID-19 outbreak, lenders are expecting a surge in applications. We recommend submitting your loan request as promptly as possible.\r\n\r\nRegards,\r\nLauren Gale\r\nNational Loan Advisor\r\nQuick Funding Now\r\n\r\n\r\n\r\n\r\n30025 Alicia Parkway Unit#20-93	\r\nLaguna Niguel, CA 92677\r\n\r\n\r\n\r\n\r\n\r\n \r\nDon’t want Quick Funding Now marketing:\r\nhttps://quickfundingnow.xyz/out.php/?site=mannplumbingandheating.com',''),(817,1,167,'8','Луиза',''),(818,1,167,'9','Луиза',''),(819,1,167,'4','(516) 821-8345',''),(820,1,167,'3','admin@intim-moskva.net',''),(821,1,167,'6','79262659547',''),(822,1,168,'8','Meet sехy girls in your сitу UK: http://www.microlink.ro/a/023zd',''),(823,1,168,'9','Meet sехy girls in your сitу UK: http://www.microlink.ro/a/023zd',''),(824,1,168,'4','(370) 875-1362',''),(825,1,168,'3','satchattack@gmail.com',''),(826,1,168,'6','Dаting sitе for seх: https://ecuadortenisclub.com/datingsexygirls935636',''),(827,1,169,'8','Ash',''),(828,1,169,'9','Mansukhani',''),(829,1,169,'4','(888) 938-8893',''),(830,1,169,'3','ash@techknowspace.com',''),(831,1,169,'6','Hello, \r\n\r\nMy Name is Ash and I Run Tech Know Space https://techknowspace.com We are your Premium GO-TO Service Centre for All Logic Board & Mainboard Repair\r\n\r\nWhen other shops say \"it can\'t be fixed\" WE CAN HELP!\r\n\r\nALL iPHONE 8 & NEWER\r\nBACK GLASS REPAIR - 1 HOUR\r\n \r\nDevices We Repair\r\nAudio Devices Audio Device Repair\r\n\r\nBluetooth Speakers - Headphones - iPod Touch\r\nComputers All Computer Repair\r\n\r\nAll Brands & Models - Custom Built - PC & Mac\r\nGame Consoles Game Console Repair\r\n\r\nPS4 - XBox One - Nintendo Switch\r\nLaptops All Laptop Repair\r\n\r\nAll Brands & Models - Acer, Asus, Compaq, Dell, HP, Lenovo, Toshiba\r\nMacBooks All MacBook Repair\r\n\r\nAll Series & Models - Air, Classic, Pro\r\nPhones All Phone Repair\r\n\r\nAll Brands & Models - BlackBerry, Huawei, iPhone, LG, OnePlus, Samsung, Sony\r\nSmart Watches Apple Watch Repair\r\n\r\nApple Watch - Samsung Gear - Moto 360\r\nTablets All Tablet Repair\r\n\r\nAll Brands & Models - iPad, Lenovo Yoga, Microsoft Surface, Samsung Tab\r\n\r\nDrone Repair\r\n\r\nCall us and tell us your issues today!\r\n\r\nToll Free: (888) 938-8893 \r\nhttps://techknowspace.com\r\n\r\nAsh Mansukhani\r\nash@techknowspace.com\r\nhttps://twitter.com/techknowspace\r\nhttps://www.linkedin.com/company/the-techknow-space',''),(832,1,170,'8','Kirsten',''),(833,1,170,'9','Loving',''),(834,1,170,'4','(407) 964-5990',''),(835,1,170,'3','kirsten@maxoutmedia.buzz',''),(836,1,170,'6','Hello mannplumbingandheating.com,\r\n\r\nConfirm your email to receive payments:\r\nhttps://maxoutmedia.buzz/go/payments/\r\n\r\n\r\nThank you,\r\n\r\n\r\nKirsten',''),(837,1,171,'8','Larry',''),(838,1,171,'9','Bill',''),(839,1,171,'4','(281) 509-9327',''),(840,1,171,'3','larry@estimationhubinc.com',''),(841,1,171,'6','Hi,\r\n\r\nWe are providing accurate Take-offs and Estimates to our clients through experience gained by our firm over time. We are utilizing certified software and have a team of experienced estimators and engineers to create the estimates.\r\n\r\nWe do complete estimates, or just specific trade estimates or takeoffs. To get a better idea of our formatting please ask for samples to review.\r\n\r\nLet me know if you have any questions or send over the drawings/plans of a project to get a quote.\r\n\r\nNote : For kind your information that we are offering 40% discount on every project this week. so it is the best chance for you to grab this opportunity.Thanks\r\n\r\nWarm Regards\r\n\r\nLarry Bill | T: 281.509.9327\r\nBDM at Estimation Hub Inc\r\nwww.estimationhubinc.com\r\n207 Greenway Plaza Houston, TX-77046\r\nE: larry@estimationhubinc.com',''),(842,1,172,'8','Eric',''),(843,1,172,'9','Jones',''),(844,1,172,'4','(416) 385-3200',''),(845,1,172,'3','eric@talkwithwebvisitor.com',''),(846,1,172,'6','Cool website!\r\n\r\nMy name’s Eric, and I just found your site - mannplumbingandheating.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across mannplumbingandheating.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitor.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitor.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(847,1,173,'8','Beautiful girls fоr sех in your city AU: https://qspark.me/eTCtaM',''),(848,1,173,'9','Beautiful girls fоr sех in your city AU: https://qspark.me/eTCtaM',''),(849,1,173,'4','(831) 306-3100',''),(850,1,173,'3','btodd@gmail.com',''),(851,1,173,'6','Dаting sitе fоr seх with girls in yоur citу: https://mupt.de/amz/sexygirls803740',''),(852,1,174,'8','Nelson',''),(853,1,174,'9','Timmer',''),(854,1,174,'4','(705) 434-8239',''),(855,1,174,'3','nelson.timmer@gmail.com',''),(856,1,174,'6','Hello mannplumbingandheating.com,\r\n\r\nConfirm your email to receive payments:\r\nhttps://tlcmedia.xyz/go/confirm/\r\n\r\n\r\nThank you,\r\n\r\n\r\nNelson',''),(857,1,175,'8','Evelyn',''),(858,1,175,'9','Wellish',''),(859,1,175,'4','(206) 208-9478',''),(860,1,175,'3','wellish.evelyn@gmail.com',''),(861,1,175,'6','Hi,\r\n\r\nDo you have a Website? Of course you do because I am looking at your website mannplumbingandheating.com now.\r\n\r\nAre you struggling for Leads and Sales?\r\n\r\nYou’re not the only one.\r\n\r\nSo many Website owners struggle to convert their Visitors into Leads & Sales.\r\n\r\nThere’s a simple way to fix this problem.\r\n\r\nYou could use a Live Chat app on your Website mannplumbingandheating.com and hire Chat Agents.\r\n\r\nBut only if you’ve got deep pockets and you’re happy to fork out THOUSANDS of dollars for the quality you need.\r\n\r\n=====\r\n\r\nBut what if you could automate Live Chat so it’s HUMAN-FREE?\r\n\r\nWhat if you could exploit NEW “AI” Technology to engage with your Visitors INSTANTLY.\r\n\r\nAnd AUTOMATICALLY convert them into Leads & Sales.\r\n\r\nWITHOUT spending THOUSANDS of dollars on Live Chat Agents.\r\n\r\nAnd WITHOUT hiring expensive coders.\r\n\r\nIn fact, all you need to do to activate this LATEST “AI” Website Tech..\r\n\r\n..is to COPY & PASTE a single line of “Website Code”.\r\n\r\n==> http://www.zoomsoft.net/ConversioBot\r\n\r\n======\r\n\r\nJoin HUGE Fortune 500 companies like:\r\n\r\nFacebook Spotify Starbucks Staples The Wall Street Journal Pizza Hut Amtrak Disney H&M & Mastercard\r\n\r\nThey all use similar “AI” Chat Technology to ConversioBot - the Internet’s #1 Chatbot for Website Owners.\r\n\r\nThe founders of ConversioBot have used their highly sophisticated ChatBot to:\r\n\r\n- AUTOMATICALLY build a massive Email List of 11,643 Subscribers in just 7 Days\r\n\r\n- AUTOMATICALLY add 6,386 Sales in only 6 Months\r\n\r\n- AUTOMATICALLY explode their Conversion Rate by 198% in only 6 Hours.\r\n\r\n=====\r\n\r\nNow it’s your turn to get in on this exciting NEW Cloud-Based App.\r\n\r\nYou can start using ConversioBot today by copying and pasting ONE line of “Automated Bot Code\" to your Website.\r\n\r\nWatch this short video to find out how >> http://www.zoomsoft.net/ConversioBot\r\n\r\nRegards,\r\n\r\nConversioBot Team\r\n\r\nP.S. This “AI” Technology works with: - Affiliate Review Sites - List-Building Pages - WordPress Blogs (it comes with a Plugin) - Sales Letters - eCommerce Websites - Local Business Sites - Webinar Registration Pages - Consultancy Websites - Freelance Websites\r\n\r\nAlmost ANY Website you can think of..\r\n\r\n==> This could be happening on your Website TODAY.. http://www.zoomsoft.net/ConversioBot\r\n\r\nUNSUBSCRIBE http://www.zoomsoft.net/unsubscribe',''),(862,1,176,'8','Dаting for seх | Fасеbооk: https://vrl.ir/datingsexygirls888613',''),(863,1,176,'9','Dаting for seх | Fасеbооk: https://vrl.ir/datingsexygirls888613',''),(864,1,176,'4','(478) 541-1070',''),(865,1,176,'3','bond3525@mail.ru',''),(866,1,176,'6','Frее dаting sitе fоr sex: http://s.amgg.net/rigj',''),(867,1,177,'8','Joshuagok',''),(868,1,177,'9','JoshuagokZA',''),(869,1,177,'4','(710) 321-1755',''),(870,1,177,'3','no-replyRondus@gmail.com',''),(871,1,177,'6','Hi!  mannplumbingandheating.com \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd prоpоsаl соmplеtеly lеgitimаtе wаy? \r\nWе prоvidе а nеw lеgаl wаy оf sеnding mеssаgе thrоugh fееdbасk fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh prоpоsаls аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh соmmuniсаtiоn Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis mеssаgе is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nWhatsApp - +375259112693',''),(872,1,178,'8','AaronFrura',''),(873,1,178,'9','AaronFruraHW',''),(874,1,178,'4','(655) 130-6856',''),(875,1,178,'3','webgeeksgroup@gmail.com',''),(876,1,178,'6','Hi, I stumbled onto your site yesterday and love the design (I\'ve been making websites since 2005). What platform is it made with? WordPress? \r\n \r\nThe only thing I noticed was that you appeared a bit low on Google search results and the home page took kind of long to load for me. \r\n \r\nI\'ve recently joined a private group for website owners. They send free periodic tips to get your site ranking higher and improve overall performance. \r\n \r\nBasically, a free consulting service... \r\n \r\nIt has really helped me improve the two sites I run. Their advice got me to double my visitors and improve loading speed. \r\n \r\nIf you\'d like to join, I\'m sure they\'d love to have another passionate website owner in the group. \r\n \r\nJOIN THE PRIVATE WEBGEEKS GROUP HERE: \r\n \r\nhttps://webgeeksgroup.weebly.com/ \r\n \r\nIf you\'re not interested, no worries, best of luck on your site! \r\n \r\nAaron',''),(877,1,179,'8','Kecia',''),(878,1,179,'9','Gearhart',''),(879,1,179,'4','(717) 477-6949',''),(880,1,179,'3','klgaccount@comcast.net',''),(881,1,179,'6','Hello,\r\n\r\nI am looking for quotes to replace an old central AC unit in my mobile home.  Is this something your company can do?',''),(882,1,180,'8','Dating for sех with еxpеrienсed girls from 20 уeаrs: https://mupt.de/amz/datingsexygirls621023',''),(883,1,180,'9','Dating for sех with еxpеrienсed girls from 20 уeаrs: https://mupt.de/amz/datingsexygirls621023',''),(884,1,180,'4','(367) 760-6530',''),(885,1,180,'3','m.adelplayer@live.fr',''),(886,1,180,'6','Mеet sexу girls in yоur сity: https://ecuadortenisclub.com/sexygirls26636',''),(887,1,181,'8','Kim',''),(888,1,181,'9','Rogers',''),(889,1,181,'4','(406) 855-8876',''),(890,1,181,'3','kim@10xsuperstar.com',''),(891,1,181,'6','Hi,\r\n\r\nI was just on your site mannplumbingandheating.com \r\nand I like it very much.\r\n\r\nWe are looking for a small selected group \r\nof VIP partners, to buy email advertising \r\nfrom on a long-term monthly basis. \r\n\r\nI think mannplumbingandheating.com will be a good match.\r\n\r\nThis can be a nice income boost for you.\r\nComing in every month...\r\n\r\nInterested?\r\nClick the link below and enter your email. \r\n\r\nhttps://10xsuperstar.com/go/m/\r\n\r\nI will be in touch...\r\n\r\nThank you,\r\nKim',''),(892,1,182,'8','Denny',''),(893,1,182,'9','Sirbaugh',''),(894,1,182,'4','(717) 352-8065',''),(895,1,182,'3','Cdsirbaugh@comcast.net',''),(896,1,182,'6','I want to express how disappointed I am that I asked your company to install a hot water heater that I had purchased and had delivered to my basement. I was told that your people would install it for $350-$400. I, and my neighbors, assumed this would be the cost but would have additional costs for the expansion tank and tray. How surprised we were that you hid that man-hours were not included. Then your part prices were incredibly inflated.  Our neighborhood thought that we had finally located a  reputable plumber.  At least the neighborhood now knows where not to shop for plumbing help.',''),(897,1,183,'8','Leonrad Garcia',''),(898,1,183,'9','Leonrad Garcia',''),(899,1,183,'4','(601) 527-8570',''),(900,1,183,'3','verajohn@fanclub.pm',''),(901,1,183,'6','Hi,  this is Leonrad. \r\n \r\nToday I have good news for you, witch you can get $30 free bonus in a minute. \r\n \r\nAll you have to do is to register Vera & John online casino link below and that\'s it. \r\nYou can register by free e-mail and no need kyc. \r\n \r\nRegistration form \r\nhttps://www3.samuraiclick.com/go?m=28940&c=34&b=926&l=1 \r\n \r\nAfter you get your free bonus, play casino and make money! \r\nMany people sent me thanks mail because they won more than $2,000-$10,000 \r\nby trusting me. \r\n \r\nDon’t miss this chance and don\'t for get that your chance is just infront of you. \r\nGet free bonus and win your life! \r\n \r\n \r\n \r\nYou can with draw your prize by Bitcoin, so If you need best crypto debit card, try Hcard. \r\nhttps://bit.ly/31zTBD0 \r\n \r\nIt is Mastercard brand and you can exchange your crypto by Apps. \r\nHcard cost you $350 + shipping, but it will definitely worth. \r\n \r\nThis is how rich people always get their profits. \r\nSo, if you wanna win your life for free, do not miss your last chance. \r\n \r\nThank you \r\nLeonrad Garcia.',''),(902,1,184,'8','Andrew',''),(903,1,184,'9','Mills',''),(904,1,184,'4','(717) 658-5091',''),(905,1,184,'3','kkamills1432@comcast.net',''),(906,1,184,'6','I believe we need a new 50 gallon electric water heater, as it appears we have a small leak in ours in the bottom, causing the cement to be white, which I believe is due to the hard water / metals leaking out and drying.  Our current water heater is about 14 years old, so it is probably time to replace it anyway.  I was hoping you could provide me with the cost to have a new one installed and the old one removed.',''),(907,1,185,'8','Fate',''),(908,1,185,'9','Oliyaei',''),(909,1,185,'4','(415) 795-2880',''),(910,1,185,'3','vitalija.moris@gmail.com',''),(911,1,185,'6','Hi there,\r\nWe offer personal protective equipment to all our society, businesses and organizations that are need in of protective items.  \r\nWe would like to efficiently help delivering you with the highest quality of personal protection products in the shortest time.\r\n\r\nWe have the below stock available and can ship them out to you right away.\r\n- Different face masks \r\n- Face mask for children\r\n- Nitrile, latex and vinyl gloves\r\n- Thermometers\r\n- Disinfection sprays, hand sanitizer gels and antibacterial wipes\r\n- Goggles\r\n- Face shields\r\n\r\nHere you can place your order online:\r\nhttps://bit.ly/meeedesignservices-ppe\r\n\r\nPlease feel free to reach out to me at the below contact info:\r\nFate Oliyaei\r\nFate@meeedesignservices.com\r\nFate.oliyaei@gmail.com \r\nPhone: (415) 795-2880',''),(912,1,186,'8','Kathy',''),(913,1,186,'9','Martin',''),(914,1,186,'4','(000) 000-0000',''),(915,1,186,'3','bryce.oles1@gmail.com',''),(916,1,186,'6','Hi,\r\n\r\nWe are one of the largest suppliers of social media services.\r\nFacebook, Twitter, Instagram and Youtube.\r\n\r\nGive your social media a huge amount of followers,\r\nlikes, shares, subscribers and views fast and at a great price.\r\n\r\nFor more info please visit us at https://social-media-blast.com\r\n\r\nWe look forward to skyrocketing your social media needs.\r\n\r\nKind Regards,\r\nKathy\r\nSMB',''),(917,1,187,'8','Thomas',''),(918,1,187,'9','Palguta',''),(919,1,187,'4','(717) 816-5205',''),(920,1,187,'3','paltomjr@icloud.com',''),(921,1,187,'6','Hello,  I need an estimate for the replacement of a central ac system ASAP.  Thanks',''),(922,1,188,'8','Leona',''),(923,1,188,'9','Conlon',''),(924,1,188,'4','(650) 381-6235',''),(925,1,188,'3','leona@maxoutmedia.buzz',''),(926,1,188,'6','Hello mannplumbingandheating.com,\r\n\r\nConfirm your email to receive payments:\r\nhttps://maxoutmedia.buzz/go/payments/\r\n\r\n\r\nThank you,\r\n\r\n\r\nLeona',''),(927,1,189,'8','DAVID',''),(928,1,189,'9','ARGUESO',''),(929,1,189,'4','(717) 404-8538',''),(930,1,189,'3','argueso68@gmail.com',''),(931,1,189,'6','We have a stand-up where the shower drain where silicon caulking was used to seal the bottom of the shower to the drainpipe. The house is only just over 2 years and the caulking is peeling back. The the interior pipe measure at 1 3/4\" that goes into a slab foundation. We are looking to have it repaired. So it can correctly drain with out issues. Currently we do not feel comfortable using the shower until it is looked at and properly repaired. If you can contact us that would be great.',''),(932,1,190,'8','Kenneth',''),(933,1,190,'9','Mills',''),(934,1,190,'4','(301) 325-1902',''),(935,1,190,'3','klmills@me.com',''),(936,1,190,'6','We have had some issues with water pressure (my best guess).  Flushing a toilet and running a shower at the same time does not work, and at times the pipe coming into our house knocks.  I have tried to adjust the pressure but did not help it (of course, I am not trained in this area).  Can you help us?\r\n\r\nKen Mills',''),(937,1,191,'8','Presley',''),(938,1,191,'9','Heckman',''),(939,1,191,'4','(717) 331-7203',''),(940,1,191,'3','Presleyheckman88@yahoo.com',''),(941,1,191,'6','Hi ! Just wondering if you were hiring for any office jobs or receptionist! \r\nThank you !',''),(942,1,192,'8','Eric',''),(943,1,192,'9','Jones',''),(944,1,192,'4','(416) 385-3200',''),(945,1,192,'3','eric@talkwithwebvisitor.com',''),(946,1,192,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://www.talkwithwebvisitor.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitor.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(947,1,193,'8','Rebeccaillus',''),(948,1,193,'9','RebeccaillusJT',''),(949,1,193,'4','(753) 213-3648',''),(950,1,193,'3','yourmyheart@gmail.com',''),(951,1,193,'6','You are my heart: http://clickfrm.com/z3ph',''),(952,1,194,'8','Mike Thorndike',''),(953,1,194,'9','Mike Thorndike\r\nAN',''),(954,1,194,'4','(464) 105-7327',''),(955,1,194,'3','no-replySow@google.com',''),(956,1,194,'6','Gооd dаy! \r\nIf you want to get ahead of your competition, have a higher Domain Authority score. Its just simple as that. \r\nWith our service you get Domain Authority above 50 points in just 30 days. \r\n \r\nThis service is guaranteed \r\n \r\nFor more information, check our service here \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nthank you \r\nMike Thorndike\r\n \r\nMonkey Digital \r\nsupport@monkeydigital.co',''),(957,1,195,'8','Refugiotooks',''),(958,1,195,'9','RefugiotooksLX',''),(959,1,195,'4','(061) 041-0062',''),(960,1,195,'3','thomas.defazio2307@bestmail.eu',''),(961,1,195,'6','[b]Комментарий одобрен[/b] \r\n \r\nфрэнк регистрация \r\n[url=https://meanders.ru/reelemperor.shtml]Казино рилэмперор обзор[/url]',''),(962,1,196,'8','Wеg zu 19464 ЕUR prо Mоnаt pаssivеn Еinкоmmens: https://jtbtigers.com/eurmillion761328',''),(963,1,196,'9','Wеg zu 19464 ЕUR prо Mоnаt pаssivеn Еinкоmmens: https://jtbtigers.com/eurmillion761328',''),(964,1,196,'4','(374) 865-0143',''),(965,1,196,'3','macca_7_dm@hotmail.co.uk',''),(966,1,196,'6','Sо erhаltеn Siе ein passivеs Еinkоmmen von 17899 ЕUR / Mоnаt: https://qspark.me/EKC2r7 \r\nVеrdienеn Siе 15658 ЕUR рassives Еinкommen pro Monat im Jahr 2020: https://vrl.ir/eurmillion999055 \r\nSо erhaltеn Sie еin passives Einkommеn von 18844 EUR / Мonаt: http://xsle.net/millioneuro637982 \r\nPаssivе Inсomе Idеа 2020: 15549 EUR / Mоnаt: http://gongpo.moum.kr/eurmillion709987 \r\nVеrdienen Sie 16546 ЕUR passives Еinkоmmеn pro Мonat im Jаhr 2020: https://onlineuniversalwork.com/millioneuro244473',''),(967,1,197,'8','Eric',''),(968,1,197,'9','Jones',''),(969,1,197,'4','(416) 385-3200',''),(970,1,197,'3','eric@talkwithwebvisitor.com',''),(971,1,197,'6','Hello, my name’s Eric and I just ran across your website at mannplumbingandheating.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://www.talkwithwebvisitor.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitor.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitor.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(972,1,198,'8','Павел',''),(973,1,198,'9','Павел',''),(974,1,198,'4','(663) 874-2785',''),(975,1,198,'3','admin@intim-moskva.net',''),(976,1,198,'6','89256743143',''),(977,1,199,'8','ATYpghtrasdfhgtuy https://skladchik.commek',''),(978,1,199,'9','ATYpghtrasdfhgtuy https://skladchik.commek',''),(979,1,199,'4','(621) 544-8072',''),(980,1,199,'3','kholm-921@yandex.ru',''),(981,1,200,'8','Rachel',''),(982,1,200,'9','Florent',''),(983,1,200,'4','(326) 421-1751',''),(984,1,200,'3','rachel.florent@videomarketingnow.xyz',''),(985,1,200,'6','Hey, \r\n\r\nYou have a lot going on right now, but maybe we can help?\r\n\r\nWe make professional videos for businesses to put on their websites.\r\n\r\nSee examples of what we can do for you:\r\nhttps://www.videomarketingnow.xyz/success/?=mannplumbingandheating.com\r\n\r\nThese videos are helping businesses GROW right now, at a time when they need it most.\r\n\r\nRachel Florent\r\nCustom Video Specialist\r\n\r\n\r\n\r\n\r\n\r\n410 Santa Clara St. East, Unit 817	\r\nSan Jose,	CA 95113\r\n \r\nNo more video marketing:\r\nhttps://thevideonetwork.top/out.php/?site=mannplumbingandheating.com',''),(986,1,201,'8','Kyle',''),(987,1,201,'9','Clemmer',''),(988,1,201,'4','(484) 896-8017',''),(989,1,201,'3','Kyle.D.Clemmer@gmail.com',''),(990,1,201,'6','Good evening,\r\n\r\nWe would like to have a quote given for a new HVAC system and what the best options would be for our home. We are shopping around to see who has the best ideas and overall value. \r\n\r\nThank you,\r\nKyle Clemmer',''),(991,1,202,'8','Kelly',''),(992,1,202,'9','Rogers',''),(993,1,202,'4','(315) 531-6744',''),(994,1,202,'3','kelly@tlcmedia.xyz',''),(995,1,202,'6','Hey,\r\n \r\nThis is about your $3500 dollar commission check, \r\nit is waiting for you to claim it. Please hurry. \r\n \r\nClick here to claim your check\r\nhttps://tlcmedia.xyz/go/new/\r\n \r\nOnce you see the details of exactly how this will\r\nwork, you\'ll discover that its possible to make \r\nmuch more than $3500 per check.\r\n \r\nTo Your Success,\r\nKelly',''),(996,1,203,'8','MichaelHic',''),(997,1,203,'9','MichaelHicUU',''),(998,1,203,'4','(714) 767-2444',''),(999,1,203,'3','marktomson40@gmail.com',''),(1000,1,203,'6','Want to have a fast growing and profitable business without competitors?! \r\nLooking for a new progressive direction in business?! \r\nWant to owe the high profits despite the market situation?! \r\nWe invite you to be a part of our successful Team. Become a dealer in your region.  We are manufacturers of grain cleaning equipment of a new generation: www.graincleaner.com. \r\nOur unique equipment has no analogues in the world. We have very favorable terms  for cooperation.  Write us on info@graincleaner.com and we will send you the business offer. \r\nTo see our videos go to: \r\nhttps://vimeo.com/showcase/6600548',''),(1001,1,204,'8','JustinHah',''),(1002,1,204,'9','JustinHahLV',''),(1003,1,204,'4','(766) 312-1027',''),(1004,1,204,'3','starostindamir4291@yandex.ru',''),(1005,1,204,'6','HoOkAh MaGic наш официальный бренд \r\nНабрав в поисковике Вы можете посетить наш сайт \r\nи возможно приобрести кальяны и всё для них. \r\nДоставка по всей России \r\nБесплатная консультация \r\nОтправка в день заказа \r\nПерсональные скидки \r\nСтрого 18+',''),(1006,1,205,'8','Charlescrisk',''),(1007,1,205,'9','CharlescriskUX',''),(1008,1,205,'4','(614) 226-7086',''),(1009,1,205,'3','bee.pannell7184@gmail.com',''),(1010,1,205,'6','Are you struggling to optimize your website content? \r\nWednesday at 12 PM (Pacific Time) I will teach you how to ensure you have SEO friendly content with high search volume keywords. \r\nLearn tips, tricks, and tools that work in 2020 that the Google algorithm loves. \r\nSignup here to get the webinar link https://www.eventbrite.com/e/113229598778',''),(1011,1,206,'8','Rebecca',''),(1012,1,206,'9','Wrixon',''),(1013,1,206,'4','(802) 230-4195',''),(1014,1,206,'3','rebecca@maxoutmedia.buzz',''),(1015,1,206,'6','Hello mannplumbingandheating.com,\r\n\r\nConfirm your email to receive payments:\r\nhttps://maxoutmedia.buzz/go/payments/\r\n\r\n\r\nThank you,\r\n\r\n\r\nRebecca',''),(1016,1,207,'8','Rodrigo',''),(1017,1,207,'9','Alber',''),(1018,1,207,'4','(662) 285-2720',''),(1019,1,207,'3','alber.rodrigo45@msn.com',''),(1020,1,207,'6','Hi,\r\n\r\nDo you have a Website? Of course you do because I am looking at your website mannplumbingandheating.com now.\r\n\r\nAre you struggling for Leads and Sales?\r\n\r\nYou’re not the only one.\r\n\r\nSo many Website owners struggle to convert their Visitors into Leads & Sales.\r\n\r\nThere’s a simple way to fix this problem.\r\n\r\nYou could use a Live Chat app on your Website mannplumbingandheating.com and hire Chat Agents.\r\n\r\nBut only if you’ve got deep pockets and you’re happy to fork out THOUSANDS of dollars for the quality you need.\r\n\r\n=====\r\n\r\nBut what if you could automate Live Chat so it’s HUMAN-FREE?\r\n\r\nWhat if you could exploit NEW “AI” Technology to engage with your Visitors INSTANTLY.\r\n\r\nAnd AUTOMATICALLY convert them into Leads & Sales.\r\n\r\nWITHOUT spending THOUSANDS of dollars on Live Chat Agents.\r\n\r\nAnd WITHOUT hiring expensive coders.\r\n\r\nIn fact, all you need to do to activate this LATEST “AI” Website Tech..\r\n\r\n..is to COPY & PASTE a single line of “Website Code”.\r\n\r\n==> http://www.zoomsoft.net/12Minutes\r\n\r\n======\r\n\r\nJoin HUGE Fortune 500 companies like:\r\n\r\nFacebook Spotify Starbucks Staples The Wall Street Journal Pizza Hut Amtrak Disney H&M & Mastercard\r\n\r\nThey all use similar “AI” Chat Technology to ConversioBot - the Internet’s #1 Chatbot for Website Owners.\r\n\r\nThe founders of ConversioBot have used their highly sophisticated ChatBot to:\r\n\r\n- AUTOMATICALLY build a massive Email List of 11,643 Subscribers in just 7 Days\r\n\r\n- AUTOMATICALLY add 6,386 Sales in only 6 Months\r\n\r\n- AUTOMATICALLY explode their Conversion Rate by 198% in only 6 Hours.\r\n\r\n=====\r\n\r\nNow it’s your turn to get in on this exciting NEW Cloud-Based App.\r\n\r\nYou can start using ConversioBot today by copying and pasting ONE line of “Automated Bot Code\" to your Website.\r\n\r\nWatch this short video to find out how >> http://www.zoomsoft.net/12Minutes\r\n\r\nRegards,\r\n\r\nConversioBot Team\r\n\r\nP.S. This “AI” Technology works with: - Affiliate Review Sites - List-Building Pages - WordPress Blogs (it comes with a Plugin) - Sales Letters - eCommerce Websites - Local Business Sites - Webinar Registration Pages - Consultancy Websites - Freelance Websites\r\n\r\nAlmost ANY Website you can think of..\r\n\r\n==> This could be happening on your Website TODAY.. http://www.zoomsoft.net/ConversioBot\r\n\r\nUNSUBSCRIBE http://www.zoomsoft.net/12MinuteUnsubscribe',''),(1021,1,208,'8','Jeremyvex',''),(1022,1,208,'9','JeremyvexPZ',''),(1023,1,208,'4','(876) 851-2740',''),(1024,1,208,'3','info@marketing-avenue.com',''),(1025,1,208,'6','Hey, \r\n \r\nWant to make sales on demand ? \r\n \r\nWell yes it is possible thanks to emailing for that you need three incredents. \r\n \r\n1) An email sending system \r\n \r\n2) An email list \r\n \r\n3) A message \r\n \r\n \r\nGood news receive the largest email database, complete and efficient email database that exists \r\n \r\n400 millions USA customers classify by city and receive software to send your email campaigns. \r\n \r\n \r\nClick here to access this email database still very little sold : https://bit.ly/30BjS1L \r\n \r\nYou just have to make a powerful email for your business or to get the maximum number of visits to mannplumbingandheating.com. \r\n \r\n \r\nIt will soon be withdrawn from the sale to preserve its effectiveness so do not hesitate to go there : https://bit.ly/30BjS1L \r\n \r\n \r\nKind & Regards \r\n \r\nJeremy',''),(1026,1,209,'8','Gilbert',''),(1027,1,209,'9','Sorrell',''),(1028,1,209,'4','(202) 586-8100',''),(1029,1,209,'3','gilbert@maxoutmedia.buzz',''),(1030,1,209,'6','Hello mannplumbingandheating.com,\r\n\r\nConfirm your email to receive payments:\r\nhttps://maxoutmedia.buzz/go/payments/\r\n\r\n\r\nThank you,\r\n\r\n\r\nGilbert',''),(1031,1,210,'8','Tyler',''),(1032,1,210,'9','Querry',''),(1033,1,210,'4','(717) 331-5413',''),(1034,1,210,'3','tylerquerry94@gmail.com',''),(1035,1,210,'6','I was looking to apply online but I wasn\'t sure where to find the application.',''),(1036,1,211,'8','Eric',''),(1037,1,211,'9','Jones',''),(1038,1,211,'4','(416) 385-3200',''),(1039,1,211,'3','eric@talkwithwebvisitor.com',''),(1040,1,211,'6','My name’s Eric and I just found your site mannplumbingandheating.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE http://www.talkwithwebvisitor.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitor.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitor.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1041,1,212,'8','Francis',''),(1042,1,212,'9','Jamieson',''),(1043,1,212,'4','(805) 372-1751',''),(1044,1,212,'3','francis.jamieson@newalexabusinessdirectory.top',''),(1045,1,212,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://newalexabusinessdirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\n \r\n\r\n \r\nFrancis\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\n1 7 1 Passaic str eet, Garf eld NJ 0 7 0 2 6\r\n\r\nYou can skip future marketing messages here:\r\nhttps://newalexabusinessdirectory.top/out.php?site=mannplumbingandheating.com',''),(1046,1,213,'8','Sharon',''),(1047,1,213,'9','Jefferson',''),(1048,1,213,'4','(646) 597-9025',''),(1049,1,213,'3','sharon@shortexplainer.com',''),(1050,1,213,'6','I reached out several months ago about how explainer videos help and the unique issues they solve.\r\nMy team has created thousands of marketing videos including dozens in your field.\r\n\r\nAs you know, Google is constantly changing its SEO algorithm. The only thing that has remained consistent is that adding an explainer video increases website rank and most importantly keeps customers on your page for longer, increasing conversions ratios.\r\n\r\nSimplify your pitch, increase website traffic, and close more business.\r\nShould I send over some industry-specific samples?\r\n\r\n\r\n-- Sharon Jefferson\r\n\r\nEmail: sharon@shortexplainer.com\r\nWebsite: http://shortexplainer.com',''),(1051,1,214,'8','Sandy',''),(1052,1,214,'9','NeSmith',''),(1053,1,214,'4','(000) 000-0000',''),(1054,1,214,'3','ez.drop1@outlook.com',''),(1055,1,214,'6','Hi,\r\n\r\nI thought you may be interested.\r\n \r\nWe supply the best niche turnkey dropshipping stores out there.\r\nYou keep all of the profit. We are the designers this is all we do.\r\n\r\nFree hosting (we can also transfer store to your hosting if you wish at n/c), \r\ndomain and social media marketing materials included.\r\nJust a one time fee for your dropship store and thats it.\r\n\r\nIf this sounds of interest please see our available sites at https://dropshippingincome.com\r\n\r\nThank you for your time and hope to see you there.\r\n\r\nBest,\r\nSandy N.\r\nDSI',''),(1056,1,215,'8','Mike',''),(1057,1,215,'9','Bowden',''),(1058,1,215,'4','(250) 512-3674',''),(1059,1,215,'3','mike@maxoutmedia.buzz',''),(1060,1,215,'6','Hello mannplumbingandheating.com,\r\n\r\nConfirm your email to receive payments:\r\nhttps://maxoutmedia.buzz/go/payments/\r\n\r\n\r\nThank you,\r\n\r\n\r\nMike',''),(1061,1,216,'8','Kim',''),(1062,1,216,'9','Rogers',''),(1063,1,216,'4','(207) 821-1392',''),(1064,1,216,'3','kim@10xsuperstar.com',''),(1065,1,216,'6','Hi,\r\n\r\nI was just on your site mannplumbingandheating.com \r\nand I like it very much.\r\n\r\nWe are looking for a small selected group \r\nof VIP partners, to buy email advertising \r\nfrom on a long-term monthly basis. \r\n\r\nI think mannplumbingandheating.com will be a good match.\r\n\r\nThis can be a nice income boost for you.\r\nComing in every month...\r\n\r\nInterested?\r\nClick the link below and enter your email. \r\n\r\nhttps://10xsuperstar.com/go/m/\r\n\r\nI will be in touch...\r\n\r\nThank you,\r\nKim',''),(1066,1,217,'8','Liam Janssen',''),(1067,1,217,'9','Liam Janssen',''),(1068,1,217,'4','(467) 882-7470',''),(1069,1,217,'3','wpdeveloperfiver@gmail.com',''),(1070,1,217,'6','Hi friend! I found your website mannplumbingandheating.com in Google. I am highly reputed seller in Fiverr, from Bangladesh. The pandemic has severely affected our online businesses and the reason for this email is simply to inform you that I am willing to work at a very low prices (5$), without work I can?t support my family. I offer my WP knowledge to fix bugs, Wordpress optimizations and any type of problem you could have on your website. Feel free to contact me through my service on Fiverr (Contact button), I thank you from my heart: \r\n \r\nhttps://track.fiverr.com/visit/?bta=127931&brand=fiverrcpa&landingPage=https%3A%2F%2Fwww.fiverr.com%2Fmbilaltariq72%2Fdo-wordpress-speed-optimization-with-gt-matrix \r\n \r\nRegards,',''),(1071,1,218,'8','Kim',''),(1072,1,218,'9','Rogers',''),(1073,1,218,'4','(418) 809-0949',''),(1074,1,218,'3','kim@10xsuperstar.com',''),(1075,1,218,'6','Hi,\r\n\r\nI was just on your site mannplumbingandheating.com \r\nand I like it very much.\r\n\r\nWe are looking for a small selected group \r\nof VIP partners, to buy email advertising \r\nfrom on a long-term monthly basis. \r\n\r\nI think mannplumbingandheating.com will be a good match.\r\n\r\nThis can be a nice income boost for you.\r\nComing in every month...\r\n\r\nInterested?\r\nClick the link below and enter your email. \r\n\r\nhttps://10xsuperstar.com/go/m/\r\n\r\nI will be in touch...\r\n\r\nThank you,\r\nKim',''),(1076,1,219,'8','Jodi',''),(1077,1,219,'9','Poninski',''),(1078,1,219,'4','(402) 866-9620',''),(1079,1,219,'3','jodi@maxoutmedia.buzz',''),(1080,1,219,'6','Hello mannplumbingandheating.com,\r\n\r\nConfirm your email to receive payments:\r\nhttps://maxoutmedia.buzz/go/payments/\r\n\r\n\r\nThank you,\r\n\r\n\r\nJodi',''),(1081,1,220,'8','Lorraine',''),(1082,1,220,'9','Permewan',''),(1083,1,220,'4','(732) 237-5888',''),(1084,1,220,'3','permewan.lorraine10@yahoo.com',''),(1085,1,220,'6','Bulk Hand Sanitizers, gloves and masks at Wholesale Discounts. Free delivery for orders over $55.\r\nhttp://freeurlredirect.com/supplies798031\r\nWith best regards,\r\nJohn G.D,',''),(1086,1,221,'8','Jay',''),(1087,1,221,'9','Pike',''),(1088,1,221,'4','(610) 656-4855',''),(1089,1,221,'3','stjbulldog@aol.com',''),(1090,1,221,'6','Looking for estimates.  Buying a place 8/11 would like to get estimate done 8/12.  Need a/c and may want a toilet replaced plus tankless',''),(1091,1,222,'8','Mark',''),(1092,1,222,'9','Dunn',''),(1093,1,222,'4','(717) 977-0000',''),(1094,1,222,'3','markbethdunn@comcast.net',''),(1095,1,222,'6','My gas hot water heater is leaking. Don\'t know if it is a fitting or the tank is breached. It is not the pressure valve. I had to turn off the water feed line, turn off the gas, and empty the tank to get it to stop leaking onto the floor in the basement. It has stopped leaking. I need a service call but it doesn\'t have to be a night or a weekend because it\'s now not critical. Also what do you charge to install a new 30 gallon gas water heater? What is the cost of a tankless system?\r\n\r\nMark Dunn',''),(1096,1,223,'8','contactbdffho',''),(1097,1,223,'9','contactkwkxreSS',''),(1098,1,223,'4','(273) 464-4014',''),(1099,1,223,'3','jerome_sesso37@rambler.ru',''),(1100,1,223,'6','Good whatever time of day it is where you are! \r\n \r\nWe offer sending newsletters of Your commercial offers via contact forms to the sites of business organizations via all countries and domain zones of the world in any languages.  \r\n \r\nhttps://xn----7sbb1bbndheurc1a.xn--p1ai \r\n \r\nThe message is sent to electronic box of firm hundred % will get to inbox folder! \r\n \r\nTest: \r\n10000 messages on foreign zones to your email address - 20 dollars. \r\nWe need from You only electronic box, title and text of the letter. \r\n \r\nIn our price there are more 800 databases for all domain zones of the world. \r\nCommon databases: \r\nAll Europe 44 countries 60726150 of sites - 1100$ \r\nAll European Union 28 countries 56752547 of sites- 1000$ \r\nAll Asia 48 countries 14662004 of domain names - 300$ \r\nAll Africa 50 countries 1594390 of domain names - 200$ \r\nAll North and Central America in 35 countries 7441637 of domains - 300$ \r\nAll South America 14 countries 5826884 of domains - 200$ \r\nBusinesses of RF 4025015 - 300$ \r\nUkraine 605745 of domain names - 100$ \r\nAll Russian-speaking countries minus Russian Federation are 14 countries and there are 1979217 of sites - 200$ \r\n \r\nDatabases for sending newsletters: \r\nWhois-service databases of sites for all countries of the world. \r\nYou can purchase our databases separately from newsletter\'s service at the request. \r\n \r\nP/S \r\nPlease, do not respond to this offer from your email account, as it has been generated in automatic mode and will not reach us! \r\nUse the contact form from the site https://xn----7sbb1bbndheurc1a.xn--p1ai \r\n \r\nPRICE LIST: \r\n \r\nTest mailing: $20 – 10000 contact forms websites \r\n \r\nAll Europe 44 countries there are 60726150 websites – $1100 \r\n \r\nAll EU 28 countries there are 56752547 websites – $1000 \r\n \r\nAll Asia 48 countries there are 14662004 websites – $500 \r\n \r\nAll Africa 50 countries there are 1594390 websites – $200 \r\n \r\nAll North and Central America is 35 countries there are 7441637 websites – $300 \r\n \r\nAll South America 14 countries there are 5826884 websites – $200 \r\n \r\nTop 1 Million World’s Best websites – $100 \r\n \r\nTop 16821856 the most visited websites in the world – $300 \r\n \r\nNew websites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 500$ \r\n \r\nBusinesses and organizations of the Russian Federation – there are 3012045 websites – $300 \r\n \r\nAll Russian-speaking countries minus Russia – there are 14 countries and 1850186 websites – $200 \r\n \r\nNew websites of the Russian Federation, registered 24-48 hours ago. (A cycle of 15 mailings during the month) – \r\n \r\n250$ \r\n \r\n1499203 of hosting websites around the world (there are selections for all countries, are excluded from databases \r\n \r\nfor mailings) – $150 \r\n \r\n142018 websites of public authorities of all countries of the world (selections for all countries, are excluded \r\n \r\nfrom databases for mailings) – $100 \r\n \r\nCMS mailings: \r\n \r\nAmiro 1794 websites $50 \r\nBitrix 199550 websites $80 \r\nConcrete5 39121 websites $50 \r\nCONTENIDO 5069 websites $50 \r\nCubeCart 1062 websites $50 \r\nDatalife Engine 23220 websites $50 \r\nDiscuz 47962 websites $50 \r\nDotnetnuke 22859 websites $50 \r\nDrupal 802121 websites $100 \r\nFlexbe 15072 websites $50 \r\nHostCMS 5042 websites $50 \r\nInstantCMS 4136 websites $50 \r\nInSales 11081 websites $50 \r\nInvision Power Board 265 websites $30 \r\nJoomla 1906994 websites $200 \r\nLiferay 5137 websites $50 \r\nMagento 269488 websites $80 \r\nMODx 64023 websites $50 \r\nMovable Type 9171 websites $50 \r\nNetCat 6636 websites $50 \r\nNopCommerce 3892 websites $50 \r\nOpenCart 321057 websites $80 \r\nosCommerce 68468 websites $50 \r\nphpBB 2182 websites $50 \r\nPrestashop 92949 websites $50 \r\nShopify 604387 websites $80 \r\nSimpla 17429 websites $50 \r\nSitefinity 4183 websites $50 \r\nTextpattern 882 websites $30 \r\nTilda 47396 websites $50 \r\nTYPO3 192006 websites $80 \r\nUMI.CMS 13191 websites $50 \r\nvBulletin 8407 websites $50 \r\nWix 3379081 websites $250 \r\nWordpress 15574051 websites $450 \r\nWooCommerce 2097367 websites $210 \r\n \r\n.com 141528448 websites commercial - $1950 \r\n.biz 2361884 websites business - $150 \r\n.info 6216929 websites information - $250 \r\n.net 15689222 websites network - $450 \r\n.org 10922428 websites organization - $350 \r\n \r\n.abogado 381 websites - $30 \r\n.ac 2365 websites - $30 \r\n.academy 34531 websites - $50 \r\n.accountant 96540 websites - $50 \r\n.accountants 1653 websites - $30 \r\n.actor 2287 websites - $30 \r\n.ad 323 websites - $30 \r\n.adult 10541 websites- $50 \r\n.ae 200462 websites UAE - $50 \r\n.ae 1820 websites International zone UAE:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.aero 23635 websites- $50 \r\n.af 3778 websites - $30 \r\n.africa	23341 websites- $50 \r\n.ag 11931 websites - $50 \r\n.agency 66462 websites - $50 \r\n.ai 24137 websites - $50 \r\n.airforce 592 websites - $30 \r\n.al 6078 websites - $30 \r\n.alsace	1982 websites - $50 \r\n.am 21995 websites Armenia - $50 \r\n.am 1684 websites International zone Armenia:.com .net .biz .info .name .tel .mobi .asia \r\n.amsterdam 28141 websites Amsterdam, Kingdom of the Netherlands - $30 \r\n.ao 904 websites - $30 \r\n.apartments 3758 websites - $30 \r\n.app 661404 websites - $80 \r\n.ar 551804 websites Argentina - $80 \r\n.ar 64008 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.archi 2084 websites - $30 \r\n.army 2282 websites - $30 \r\n.art 69227 websites - $50 \r\n.as 10525 websites - $50 \r\n.asia 228418 websites - $80 \r\n.associates 3340 websites - $30 \r\n.at 1356722 websites Austria - $100 \r\n.at 181907 websites International zone Austria :.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.attorney 8204 websites - $30 \r\n.au 2432174 websites Australia - $150 \r\n.au 461279 websites International zone Australia:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.auction 4125 websites - $30 \r\n.audio 23052 websites - $50 \r\n.auto 400 websites - $30 \r\n.aw 235 websites - $30 \r\n.az 11104 websites Azerbaijan - $50 \r\n.az 2036 websites International zone Azerbaijan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ba 2291 websites international zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia-$30 \r\n.ba 7012 websites Bosnia and Herzegovina - $30 \r\n.baby 2051 websites - $30 \r\n.band 13515 websites - $50 \r\n.bank 20424 websites - $50 \r\n.bar 50267 websites - $50 \r\n.barcelona 7919 websites - $30 \r\n.bargains 2997 websites - $30 \r\n.bargains 2346 websites - $30 \r\n.bayern 32565 websites - $50 \r\n.bb 2277 websites- $30 \r\n.be 1349658 websites Belgium - $150 \r\n.be 184810 websites International zone Belgium:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.beer 13834 websites- $50 \r\n.berlin 58088 websites Berlin - $50 \r\n.best 93390 websites - $50 \r\n.bet 17637 websites - $50 \r\n.bf 238 websites - $30 \r\n.bg 37152 websites Bulgaria - $50 \r\n.bg 50685 websites International zone Bulgaria:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.bh 453 websites - $30 \r\n.bi 2328 websites Burundi - $30 \r\n.bible 1760 websites - $30 \r\n.bid 474509 websites - $80 \r\n.bike 15229 websites - $50 \r\n.bingo 1232 websites - $30 \r\n.bio 15531 websites- $50 \r\n.bj 147 websites - $30 \r\n.black 6582 websites - $30 \r\n.blackfriday 12106 websites - $50 \r\n.blog 178562 websites - $80 \r\n.blue 16852 websites - $50 \r\n.bm 8089 websites Bermuda - $30 \r\n.bn 20 websites - $30 \r\n.bo 2602 websites- $30 \r\n.bo 29415 websites International zone Bolivia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.boats 266 websites - $30 \r\n.boston	21762 websites- $50 \r\n.boutique 8834 websites - $50 \r\n.br 2589383 websites Brazil - $250 \r\n.br 933750 websites International zone Brazil:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.bradesco 179 websites- $30 \r\n.broadway 261 websites- $30 \r\n.broker	1060 websites- $30 \r\n.brussels 7181 websites - $30 \r\n.bs 330 websites- $30 \r\n.bt 284 websites- $30 \r\n.build 3857 websites- $30 \r\n.builders 3906 websites- $30 \r\n.business 35168 websites - $50 \r\n.buzz 534984 websites - $80 \r\n.bw 1160 websites - $30 \r\n.by 92679 websites Belarus - $50 \r\n.by 1574 websites International zone Belarus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.bz 7751 websites - $30 \r\n.bzh 5403 websites - $30 \r\n.ca 2587463 websites Canada - $250 \r\n.ca 288395 websites International zone Canada:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.cab 3223 websites - $30 \r\n.cafe 15406 websites - $50 \r\n.cam 10316 websites - $50 \r\n.camera 5236 websites - $30 \r\n.camp 6315 websites - $30 \r\n.capetown 4750 websites - $30 \r\n.capital 14387 websites - $50 \r\n.car 342 websites - $30 \r\n.cards 5992 websites - $30 \r\n.care 23004 websites - $50 \r\n.career	1217 websites - $30 \r\n.careers 7555 websites - $30 \r\n.cars 309 websites - $30 \r\n.casa 24158 websites - $50 \r\n.cash 13193 websites - $50 \r\n.casino	5354 websites - $30 \r\n.cat 108569 websites - $50 \r\n.catering 3482 websites - $30 \r\n.cc 1920589 websites Cocos Keeling Islands- $200 \r\n.cd 5865 websites - $30 \r\n.center 39353 websites - $50 \r\n.ceo 2458 websites - $30 \r\n.cf 2291460 websites Central African Republic - $200 \r\n.cg 166 websites - $30 \r\n.ch 1627450 websites Switzerland - $150 \r\n.ch 205292 websites International zone Switzerland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.chat 15026 websites - $50 \r\n.cheap 3267 websites - $30 \r\n.christmas 15255 websites - $50 \r\n.church 24104 websites - $50 \r\n.ci 5663 websites Cote d\'Ivoire - $30 \r\n.ci 112 websites International zone Cote d\'Ivoire:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.city 46171 websites - $50 \r\n.cl 590401 websites Chile - $80 \r\n.cl 65996 websites International zone Chile:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.claims	2374 websites - $30 \r\n.cleaning 2385 websites - $30 \r\n.click 181015 websites - $50 \r\n.clinic 8006 websites - $30 \r\n.clothing 13639 websites - $50 \r\n.cloud	164113 websites - $50 \r\n.club 1230555 websites - $100 \r\n.cm 29221 websites Cameroon- $50 \r\n.cn 23160610 websites China - $600 \r\n.cn 1372416 websites International zone China:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.co 1878923 websites Colombia - $200 \r\n.co 10854 websites International zone Colombia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.coach 16002 websites- $50 \r\n.codes 12044 websites - $50 \r\n.coffee 19257 websites - $50 \r\n.cologne 10157 websites - $50 \r\n.com.ar 657716 websites Argentina - $80 \r\n.com.br 942898 websites Brazil – $100 \r\n.com.cy	11153 websites Cyprus - $50 \r\n.com.ni 23747 websites - $50 \r\n.com.np 38828 websites - $50 \r\n.com.ru, .net.ru, .org.ru, .spb.ru, .msk.ru 98375 websites Russia - $50 \r\n.community 15013 websites - $50 \r\n.company 64217 websites - $50 \r\n.computer 5539 websites - $30 \r\n.condos	2192 websites - $30 \r\n.construction 7104 websites - $30 \r\n.consulting 27128 websites - $50 \r\n.contractors 3982 websites - $30 \r\n.cooking 1476 websites - $30 \r\n.cool 22008 websites - $50 \r\n.coop 7479 websites - $30 \r\n.corsica 1042 websites - $30 \r\n.country 7144 websites - $30 \r\n.cr 7934 websites - $30 \r\n.credit	4020 websites - $30 \r\n.creditcard 825 websites - $30 \r\n.creditunion 511 websites - $30 \r\n.cricket 33413 websites - $50 \r\n.cruises 2234 websites - $30 \r\n.cu 137 websites - $30 \r\n.cv 2279 websites - $30 \r\n.cx 15753 websites - $50 \r\n.cy 11092 websites Cyprus - $50 \r\n.cy 710 websites International zone Cyprus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cymru 7314 websites - $30 \r\n.cz 1001208 websites Czech Republic - $100 \r\n.cz 193400 websites International zone Czech Republic:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dance	7490 websites - $30 \r\n.date 10800 websites - $50 \r\n.dating	2892 websites - $30 \r\n.de 15078512 websites Germany - $450 \r\n.de 3894156 websites International zone Germany:.com .net .biz .info .name .tel .mobi .asia-$200 \r\n.deals 8332 websites - $30 \r\n.degree	2178 websites - $30 \r\n.delivery 6282 websites - $30 \r\n.democrat 1072 websites - $30 \r\n.dental 7841 websites - $30 \r\n.dentist 3046 websites - $30 \r\n.desi 2647 websites - $50 \r\n.design 103712 websites - $50 \r\n.dev	190456 websites - $50 \r\n.diamonds 2730 websites - $30 \r\n.diet 18291 websites - $50 \r\n.digital 49449 websites - $50 \r\n.direct 12129 websites - $50 \r\n.directory 15157 websites - $50 \r\n.discount 3898 websites - $30 \r\n.dj 7680 websites - $30 \r\n.dk 1319155 websites Denmark - $100 \r\n.dk 148164 websites International zone Denmark:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dm 23318 websites - $50 \r\n.do 5255 websites Dominican Republic- $30 \r\n.doctor	5601 websites - $30 \r\n.dog 10030 websites - $50 \r\n.dog 12435 websites - $50 \r\n.domains 6253 websites - $30 \r\n.download 7886 websites - $30 \r\n.durban	2247 websites - $30 \r\n.dz 982 websites - $30 \r\n.earth	23412 websites - $50 \r\n.ec 11731 websites Ecuador - $50 \r\n.ec 2897 websites International zone Ecuador:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.edu 4445 websites - $30 \r\n.edu.np 4883 websites- $30 \r\n.education 25003 websites - $50 \r\n.ee 119701 websites Estonia- $50 \r\n.ee 10490 websites International zone Estonia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.eg 1699 websites - $30 \r\n.email 100440 websites - $50 \r\n.energy 12399 websites - $50 \r\n.engineer 3785 websites - $30 \r\n.engineering 6533 websites - $30 \r\n.enterprises 6253 websites - $30 \r\n.equipment 5060 websites - $30 \r\n.es 1509048 websites Spain - $150 \r\n.es 683845 websites International zone Spain:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.estate 9285 websites - $30 \r\n.et 134 websites - $30 \r\n.eu 3046076 websites Europe - $150 \r\n.eu 633384 websites International zone Europe:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.eus 10116 websites - $50 \r\n.events 25115 websites - $50 \r\n.exchange 10432 websites - $50 \r\n.expert 34040 websites - $50 \r\n.exposed 2880 websites - $30 \r\n.express 7019 websites - $30 \r\n.fail 3692 websites - $30 \r\n.faith 4019 websites - $30 \r\n.family 21577 websites - $50 \r\n.fan 28607 websites - $50 \r\n.fans 1688 websites - $30 \r\n.farm 17009 websites - $50 \r\n.fashion 9011 websites - $30 \r\n.feedback 1301 websites - $30 \r\n.fi 188337 websites Finland - $50 \r\n.fi 69631 websites International zone Finland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.film 4501 websites - $30 \r\n.finance 9082 websites - $30 \r\n.financial 5086 websites - $30 \r\n.fish 4562 websites - $30 \r\n.fishing 1422 websites - $30 \r\n.fit 109855 websites - $50 \r\n.fitness 10689 websites - $50 \r\n.flights 2169 websites - $30 \r\n.florist 2071 websites - $30 \r\n.flowers 1187 websites - $30 \r\n.fm 3775 websites - $30 \r\n.fo 10415 websites- $50 \r\n.football 4677 websites - $30 \r\n.forex	282 websites - $30 \r\n.forsale 7118 websites - $30 \r\n.foundation 15401 websites - $50 \r\n.fr 2810983 websites France - $250 \r\n.fr 639546 websites International zone France:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.frl 13028 websites - $50 \r\n.fun 485622 websites - $50 \r\n.fund 14501 websites - $50 \r\n.furniture 2276 websites - $30 \r\n.futbol	2709 websites - $30 \r\n.fyi 15872 websites - $50 \r\n.ga 5041 websites Gabon - $30 \r\n.gal 5106 websites - $30 \r\n.gallery 17663 websites - $50 \r\n.game 2066 websites - $30 \r\n.games 20294 websites - $50 \r\n.garden	 2618 websites - $30 \r\n.gd 3038 websites - $30 \r\n.ge 17359 websites Georgia - $50 \r\n.ge 1676 websites International zone Georgia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.gent 3388 websites - $30 \r\n.gf 105 websites French Guiana - $30 \r\n.gg 7443 websites - $30 \r\n.gh 703 websites - $30 \r\n.gi 981 websites - $30 \r\n.gift 5001 websites - $30 \r\n.gifts 3357 websites - $30 \r\n.gives 1759 websites - $30 \r\n.gl 3558 websites - $30 \r\n.glass	3239 websites - $30 \r\n.global 48572 websites - $50 \r\n.gm 287 websites - $30 \r\n.gmbh 20786 websites - $50 \r\n.gold 9581 websites - $30 \r\n.golf 10319 websites - $50 \r\n.gop 1340 websites - $30 \r\n.gov 4195 websites - $30 \r\n.gov.np 1937 websites- $30 \r\n.gp 2014 websites - $30 \r\n.gq 63622 websites - $50 \r\n.gr 323168 websites Greece - $80 \r\n.gr 57984 websites International zone Greece:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.graphics 6555 websites - $30 \r\n.gratis	4113 websites - $30 \r\n.green 5161 websites - $30 \r\n.gripe 1175 websites - $30 \r\n.group 65583 websites - $50 \r\n.gs 1008 websites Georgia - $30 \r\n.gt 15351 websites - $50 \r\n.guide 15044 websites - $50 \r\n.guitars 965 websites - $30 \r\n.guru 53088 websites - $50 \r\n.gy 2047 websites Guyana - $30 \r\n.hamburg 21585 websites - $50 \r\n.haus 5686 websites - $30 \r\n.health	13716 websites - $50 \r\n.healthcare 9001 websites - $30 \r\n.help 13098 websites - $50 \r\n.hiphop 518 websites - $30 \r\n.hiv 279 websites - $30 \r\n.hk 116093 websites - $50 \r\n.hm 229 websites - $30 \r\n.hn 4732 websites - $30 \r\n.hockey	1402 websites - $30 \r\n.holdings 5812 websites - $30 \r\n.holiday 4517 websites - $30 \r\n.homes 12499 websites - $50 \r\n.horse 2516 websites - $30 \r\n.hospital 1805 websites - $30 \r\n.host 79977 websites - $50 \r\n.hosting 3322 websites - $30 \r\n.house 19296 websites - $50 \r\n.how 2557 websites - $30 \r\n.hr 48565 websites Croatia - $50 \r\n.hr 16592 websites International zone Croatia:.com .net .biz .info .name .tel .mobi .asia \r\n.ht 1299 websites - $30 \r\n.hu 618532 websites Hungary - $80 \r\n.hu 53940 websites International zone Hungary:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.icu 6331371 websites - $350 \r\n.id 61744 websites - $50 \r\n.ie 195987 websites Ireland - $50 \r\n.ie 49861 websites International zone Ireland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.il 196266 websites Israel - $80 \r\n.il 38537 websites International zone Israel:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.im 18701 websites - $50 \r\n.immo 15409 websites - $50 \r\n.immobilien 6805 websites - $30 \r\n.in 1143482 websites India - $100 \r\n.in 266179 websites International zone India:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.industries 4312 websites - $30 \r\n.ink 28117 websites - $50 \r\n.institute 12134 websites - $50 \r\n.insure	5015 websites - $30 \r\n.int 451 websites - $30 \r\n.international 25430 websites - $50 \r\n.investments 4813 websites - $30 \r\n.io 496216 websites British Indian Ocean - $80 \r\n.iq 2401 websites - $30 \r\n.ir 427735 websites Iran - $80 \r\n.ir 15487 websites International zone Iran:.com .net .biz .info .name .tel .mobi .asia \r\n.irish 3126 websites - $30 \r\n.is 32176 websites Iceland - $50 \r\n.ist 9060 websites - $30 \r\n.istanbul 12839 websites - $50 \r\n.it 2410105 websites Italy – $250 \r\n.it 954040 websites International zone Italy:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.je 3016 websites - $30 \r\n.jetzt 18207 websites - $50 \r\n.jewelry 3250 websites - $30 \r\n.jo 555 websites - $30 \r\n.jobs 44024 websites- $50 \r\n.joburg	3138 websites - $30 \r\n.jp 1299921 websites Japan - $150 \r\n.jp 4683252 websites International zone Japan:.com.net.biz.info.org.name.tel.mobi.asia-$450 \r\n.juegos	644 websites - $30 \r\n.kaufen 6134 websites - $30 \r\n.ke 14677 websites - $50 \r\n.kg 3619 websites Kyrgyzstan - $30 \r\n.kg 664 websites International zone Kyrgyzstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ki 79 websites - $30 \r\n.kim 12007 websites- $50 \r\n.kitchen 6881 websites - $30 \r\n.kiwi 13426 websites - $50 \r\n.kn 3211 websites - $30 \r\n.koeln 23320 websites - $50 \r\n.kr 272463 websites Korea- $50 \r\n.krd 374 websites - $30 \r\n.kred 8921 websites - $30 \r\n.kw 484 websites - $30 \r\n.ky 5783 websites - $30 \r\n.kyoto 658 websites - $30 \r\n.kz 113180 websites Kazakhstan - $50 \r\n.kz 5876 websites International zone Kazakhstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.la 34189 websites Laos - $50 \r\n.land 15474 websites- $50 \r\n.lat 4171 websites - $30 \r\n.law 12002 websites - $50 \r\n.lawyer 10996 websites- $50 \r\n.lc 481 websites- $30 \r\n.lease 1755 websites- $30 \r\n.leclerc 165 websites- $30 \r\n.legal 13047 websites- $50 \r\n.lgbt 2247 websites- $30 \r\n.li 10044 websites - $50 \r\n.life 195950 websites - $50 \r\n.lighting 5870 websites - $30 \r\n.limited 5365 websites - $30 \r\n.limo 1981 websites- $30 \r\n.link 117273 websites - $50 \r\n.live 662010 websites - $80 \r\n.lk 4971 websites - $30 \r\n.llc 12888 websites - $50 \r\n.loan 23738 websites - $50 \r\n.loans 3994 websites - $30 \r\n.lol 8121 websites - $30 \r\n.london 48933 websites London, United Kingdom- $50 \r\n.love 28434 websites - $50 \r\n.ls 236 websites - $30 \r\n.lt 94484 websites Lithuania- $50 \r\n.lt 27710 websites International zone Lithuania:.com .net .biz .info .name .tel .mobi .asia- $50 \r\n.ltd 100152 websites - $50 \r\n.lu 47052 websites Luxembourg - $50 \r\n.lu 4125 websites International zone Luxembourg:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.luxe 14037 websites - $50 \r\n.luxury	805 websites - $30 \r\n.lv 67886 websites Latvia - $50 \r\n.lv 8887 websites International zone Latvia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ly 8413 websites - $30 \r\n.ma 41462 websites Morocco - $50 \r\n.madrid	2919 websites - $30 \r\n.maison	1003 websites - $30 \r\n.management 10788 websites- $50 \r\n.market 18741 websites- $50 \r\n.marketing 22656 websites- $50 \r\n.markets 899 websites- $30 \r\n.mba 2510 websites- $30 \r\n.mc 3046 websites Monaco - $30 \r\n.md 16135 websites Moldova - $50 \r\n.md 1293 websites International zone Moldova:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.me 761596 websites Montenegro - $80 \r\n.me 86897 websites International zone Montenegro:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.media 49573 websites - $50 \r\n.melbourne 10041 websites - $50 \r\n.memorial 712 websites - $30 \r\n.men 24451 websites - $50 \r\n.menu 5002 websites restaurants- $30 \r\n.mg 3680 websites Madagascar- $30 \r\n.miami 9210 websites Miami, USA - $30 \r\n.mk 12704 websites - $50 \r\n.ml 128001 websites - $50 \r\n.mma 1705 websites - $30 \r\n.mn 17044 websites - $50 \r\n.mo 775 websites - $30 \r\n.mobi 381422 websites- $80 \r\n.moda 2741 websites - $30 \r\n.moe 8709 websites - $30 \r\n.mom 2085 websites - $30 \r\n.money 12000 websites - $50 \r\n.monster 54325 websites - $50 \r\n.mortgage 3198 websites - $30 \r\n.moscow 17741 websites Moscow Russian Federation- $50 \r\n.movie 3275 websites - $30 \r\n.mq 119 websites - $30 \r\n.mr 199 websites - $30 \r\n.ms 7265 websites - $30 \r\n.mt 1402 websites Malta - $30 \r\n.mu 6475 websites - $30 \r\n.museum	1260 websites - $30 \r\n.mv 1905 websites - $30 \r\n.mw 8579 websites Malawi - $30 \r\n.mx 670901 websites Mexico- $80 \r\n.mx 174571 websites International zone Mexico:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.my 143039 websites Malaysia- $80 \r\n.mz 985 websites - $30 \r\n.na 1094 websites - $30 \r\n.nagoya	7807 websites - $30 \r\n.name 120331 websites- $50 \r\n.navy 799 websites - $30 \r\n.nc 999 websites - $30 \r\n.network 51331 websites - $50 \r\n.news 57899 websites - $50 \r\n.ng 23864 websites - $50 \r\n.ngo 3421 websites - $30 \r\n.ninja 31719 websites - $50 \r\n.nl 3925784 websites Netherlands - $200 \r\n.nl 1019697 websites International zone Netherlands:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.no 620882 websites Norway - $80 \r\n.no 74318 websites International zone Norway:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.nra 131 websites - $30 \r\n.nrw 17487 websites - $50 \r\n.nu 236821 websites Niue- $50 \r\n.nyc 64003 websites - $50 \r\n.nz 593127 websites New Zealand - $80 \r\n.om 1701 websites - $30 \r\n.one 71859 websites - $50 \r\n.ong 3420 websites - $30 \r\n.onl 7059 websites - $30 \r\n.online 1356725 websites - $100 \r\n.ooo 15719 websites - $50 \r\n.org.np 7082 websites - $30 \r\n.org.ua 41362 websites - $50 \r\n.organic 1631 websites - $30 \r\n.osaka	664 websites - $30 \r\n.ovh 50056 websites - $50 \r\n.pa 1578 websites - $30 \r\n.page 61259 websites - $50 \r\n.paris 19098 websites - $50 \r\n.partners 8576 websites - $30 \r\n.parts 6042 websites - $30 \r\n.party 19563 websites- $50 \r\n.pe 83224 websites Peru - $50 \r\n.pe 59157 websites International zone Peru:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pet 10381 websites - $50 \r\n.pf 319 websites - $30 \r\n.pg 2105 websites Papua - $30 \r\n.ph 17940 websites Philippines - $50 \r\n.photo 17365 websites- $50 \r\n.photography 45234 websites- $50 \r\n.photos	21407 websites- $50 \r\n.physio	1159 websites- $30 \r\n.pics 5559 websites- $30 \r\n.pictures 8375 websites- $30 \r\n.pink 8173 websites- $30 \r\n.pizza 6365 websites - $30 \r\n.pk 44464 websites Pakistan - $50 \r\n.pl 1795299 websites Poland - $150 \r\n.pl 327587 websites International zone Poland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.place 3504 websites - $30 \r\n.plumbing 2815 websites - $30 \r\n.plus 18915 websites - $50 \r\n.pm 4051 websites - $30 \r\n.poker 3207 websites - $30 \r\n.porn 10323 websites- $50 \r\n.post 441 websites - $30 \r\n.pr 1229 websites - $30 \r\n.press 35132 websites - $50 \r\n.productions 7907 websites - $30 \r\n.promo 5720 websites - $30 \r\n.properties 13804 websites - $50 \r\n.property 3274 websites - $30 \r\n.ps 1572 websites - $30 \r\n.pt 263136 websites Portugal - $80 \r\n.pt 17691 websites International zone Portugal:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pub 25225 websites - $50 \r\n.pw 8023 websites - $30 \r\n.py 5593 websites Paraguay - $30 \r\n.py 653 websites International zone Paraguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.qa 9080 websites - $30 \r\n.quebec 8742 websites - $30 \r\n.racing 3320 websites - $30 \r\n.radio 2274 websites - $30 \r\n.re 11013 websites - $50 \r\n.realestate 18187 websites - $50 \r\n.realtor 39865 websites - $50 \r\n.realty 2204 websites - $30 \r\n.recipes 6245 websites - $30 \r\n.red 24701 websites - $50 \r\n.rehab 1756 websites - $30 \r\n.reise 1071 websites - $30 \r\n.reisen	4805 websites - $30 \r\n.reit 101 websites - $30 \r\n.ren 16501 websites - $50 \r\n.rent 4474 websites - $30 \r\n.rentals 11901 websites- $50 \r\n.repair 6828 websites- $30 \r\n.report 7269 websites - $30 \r\n.republican 852 websites - $30 \r\n.rest 47992 websites - $50 \r\n.restaurant 7735 websites - $30 \r\n.review 12121 websites - $80 \r\n.reviews 17432 websites- $50 \r\n.rio 1062 websites- $30 \r\n.rip 3599 websites- $30 \r\n.ro 423021 websites Romania - $80 \r\n.ro 42046 websites International zone Romania:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.rocks 90108 websites - $50 \r\n.rs 85503 websites Serbia - $50 \r\n.ru 514668 websites International zone Russian:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.ru 5025331 websites Russian - $250 \r\n.ru, .su, .рф websites 5800000 - $250 \r\n.ru.com 6499 websites Russia - $30 \r\n.ruhr 9687 websites - $30 \r\n.run 19122 websites - $50 \r\n.rw 3245 websites - $30 \r\n.sa 20421 websites Saudi Arabia- $50 \r\n.sa 5064 websites International zone Saudi Arabia:.com .net .biz .info .name .tel .mobi .asia \r\n.saarland 3925 websites - $30 \r\n.sale 15249 websites - $50 \r\n.salon 2722 websites - $30 \r\n.sarl 919 websites - $30 \r\n.sc 4442 websites Seychelles- $30 \r\n.school 14272 websites - $50 \r\n.schule	2913 websites - $30 \r\n.science 13625 websites - $80 \r\n.scot 11375 websites - $50 \r\n.sd 515 websites - $30 \r\n.se 1383322 websites Sweden - $150 \r\n.se 293316 websites International zone Sweden:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.seat 688 websites - $30 \r\n.security 287 websites - $30 \r\n.services 50298 websites - $50 \r\n.sex 7751 websites - $30 \r\n.sexy 5756 websites - $30 \r\n.sg 150351 websites Republic Of Singapore - $50 \r\n.sh 2706 websites - $30 \r\n.shiksha 911 websites - $30 \r\n.shoes 4676 websites - $30 \r\n.shop 631693 websites - $80 \r\n.shopping 6337 websites - $30 \r\n.show 12092 websites - $50 \r\n.si 39749 websites Slovenia- $50 \r\n.si 12879 websites International zone Slovenia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.singles 3589 websites - $30 \r\n.site 1855897 websites - $150 \r\n.sk 301001 websites Slovakia- $80 \r\n.sk 31572 websites International zone Slovakia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ski 5530 websites - $30 \r\n.sl 1504 websites - $30 \r\n.sm 8897 websites - $30 \r\n.sn 4465 websites Senegal - $30 \r\n.sn 344 websites International zone Senegal:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.so 9703 websites - $30 \r\n.soccer	2933 websites - $30 \r\n.social 23263 websites - $50 \r\n.software 16006 websites - $50 \r\n.solar 6575 websites - $30 \r\n.solutions 78770 websites - $50 \r\n.soy 1405 websites - $30 \r\n.space 409707 websites - $80 \r\n.sport 8578 websites - $30 \r\n.sr 580 websites Suriname - $30 \r\n.srl 5591 websites - $30 \r\n.st 8041 websites - $30 \r\n.storage 411 websites - $30 \r\n.store 328721 websites - $50 \r\n.stream 12901 websites - $80 \r\n.studio 53390 websites - $50 \r\n.study	5136 websites - $30 \r\n.style 11421 websites - $50 \r\n.su 110538 websites Russian- $50 \r\n.sucks 7329 websites - $30 \r\n.supplies 3079 websites - $30 \r\n.supply	5280 websites - $30 \r\n.support 23377 websites - $50 \r\n.surf 7373 websites - $30 \r\n.surgery 1778 websites - $30 \r\n.sv 8432 websites Salvador- $30 \r\n.swiss 17623 websites - $50 \r\n.sx 2901 websites - $30 \r\n.sy 2663 websites - $30 \r\n.sydney 10073 websites - $50 \r\n.systems 29044 websites - $50 \r\n.sz 321 websites - $30 \r\n.taipei	5664 websites - $30 \r\n.tattoo 7394 websites- $30 \r\n.tax 7388 websites - $30 \r\n.taxi 6034 websites - $30 \r\n.tc 16384 websites Turks and Caicos Islands- $50 \r\n.team 27421 websites- $50 \r\n.tech 276164 websites - $50 \r\n.technology 31533 websites- $50 \r\n.tel 90552 websites- $50 \r\n.tennis	1804 websites - $30 \r\n.tf 19841 websites - $50 \r\n.tg 1230 websites - $30 \r\n.th 22368 websites Kingdom Of Thailand- $50 \r\n.theater 1253 websites - $30 \r\n.tickets 1941 websites - $30 \r\n.tienda	1902 websites - $30 \r\n.tips 29380 websites- $50 \r\n.tires 941 websites - $30 \r\n.tirol 5472 websites - $30 \r\n.tj 6874 websites Tajikistan- $30 \r\n.tj 34 websites International zone Tajikistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tk 20085806 websites Tokelau - $500 \r\n.tl 2748 websites - $30 \r\n.tm 6395 websites Turkmenistan- $30 \r\n.tm 44 websites International zone Turkmenistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tn 16345 websites - $50 \r\n.to 16987 websites Tonga- $50 \r\n.today 81155 websites - $50 \r\n.tokyo 166544 websites - $50 \r\n.tools 13341 websites - $50 \r\n.top 3609373 websites - $250 \r\n.tours 10771 websites - $50 \r\n.town 4104 websites - $30 \r\n.toys 4566 websites - $30 \r\n.tr 243347 websites Turkey - $80 \r\n.tr 138818 International zone Turkey:.com .net .biz .info .name .tel .mobi .asia -$50 \r\n.trade 16130 websites - $50 \r\n.trading 1150 websites - $30 \r\n.training 19811 websites - $50 \r\n.travel 20461 websites - $50 \r\n.tt 535 websites - $30 \r\n.tube 3252 websites - $30 \r\n.tv 559502 websites Tuvalu - $80 \r\n.tw 982620 websites Taiwan - $100 \r\n.tz 4708 websites - $30 \r\n.ua 553216 websites Ukraina - $80 \r\n.ua 147202 websites International zone Ukraine:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ua, .com.ua, .kiev.ua 	193080 websites - $50 \r\n.ug 2561 websites Uganda - $30 \r\n.uk 4606907 websites United Kingdom - $350 \r\n.uk 3304606 websites International zone United Kingdom:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.university 6821 websites - $30 \r\n.uno 18694 websites - $50 \r\n.us 3139563 websites USA - $250 \r\n.us 578927 websites International zone USA:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.uy 15571 websites Uruguay - $50 \r\n.uy 31812 websites International zone Uruguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.uz 38357 websites Uzbekistan - $50 \r\n.uz  365 websites International zone Uzbekistan:.com .net .biz .info .name .tel .mobi .asia \r\n.vacations 3826 websites - $50 \r\n.vc 18641 websites - $50 \r\n.ve 14015 websites Venezuela - $50 \r\n.ve 2898 websites International zone Venezuela:.com .net .biz .info .name .tel .mobi .asia \r\n.vegas 17708 websites Las Vegas NV United States of America - $50 \r\n.ventures 13870 websites - $50 \r\n.versicherung 2005 websites - $30 \r\n.vet 7060 websites - $30 \r\n.vg 8389 websites - $50 \r\n.vi 109 websites - $30 \r\n.viajes	1065 websites - $30 \r\n.video 21392 websites- $50 \r\n.villas	11791 websites - $50 \r\n.vin 5494 websites - $30 \r\n.vip 1324303 websites - $100 \r\n.vision 7120 websites - $30 \r\n.vlaanderen 6014 websites - $30 \r\n.vn 436005 websites Vietnam - $80 \r\n.vn 161855 websites International zone Vietnam:.com .net .biz .info .name .tel .mobi .asia - $50 \r\n.vodka 1410 websites - $30 \r\n.vote 2316 websites - $30 \r\n.voto 3180 websites - $30 \r\n.voyage	2663 websites - $30 \r\n.vu 1051 websites - $30 \r\n.wales 12863 websites - $50 \r\n.wang 1352025 websites - $100 \r\n.watch 9902 websites - $30 \r\n.webcam	17340 websites - $50 \r\n.website 308840 websites -$50 \r\n.wedding 20162 websites - $50 \r\n.wf 1133 websites - $30 \r\n.wien 14413 websites - $50 \r\n.wiki 18129 websites wikis - $50 \r\n.win 73425 websites - $50 \r\n.wine 14831 websites - $50 \r\n.work 608563 websites - $80 \r\n.works 20702 websites - $50 \r\n.world 134234 websites - $50 \r\n.ws 99308 websites Samoa- $80 \r\n.wtf 17638 websites - $50 \r\n.xin 56857 websites - $50 \r\n.xn--3ds443g 26521 websites - $50 \r\n.xn--55qx5d 36965 websites - $50 \r\n.xn--6qq986b3xl 16188 websites - $50 \r\n.xn--czr694b 19910 websites - $50 \r\n.xn--czru2d 21621 websites - $50 \r\n.xn--fiq228c5hs 12145 websites - $50 \r\n.xn--io0a7i 24704 websites - $50 \r\n.xn--j6w193g 31764 websites - $50 \r\n.xn--kput3i 33006 websites - $50 \r\n.xn--mgbaam7a8h	2038 websites - $30 \r\n.xn--mgberp4a5d4ar 2534 websites - $30 \r\n.xn--mk1bu44c 6001 websites - $30 \r\n.xn--rhqv96g 7723 websites - $30 \r\n.xn--ses554g 126268 websites - $80 \r\n.xn--tckwe 6197 websites - $30 \r\n.xn--vuq861b 19706 websites - $50 \r\n.xxx 119879 websites- $50 \r\n.xyz 2650949 websites - $250 \r\n.yachts	254 websites - $30 \r\n.ye 18 websites - $30 \r\n.yoga 11563 websites - $50 \r\n.yokohama 8140 websites - $30 \r\n.yt 2004 websites - $30 \r\n.za 986900 websites South Africa - $100 \r\n.zm 508 websites - $30 \r\n.zone 26798 websites - $50 \r\n.бг (.xn--90ae) 3470 websites - $30 \r\n.дети 169 websites - $30 \r\n.москва (.xn--80adxhks) 19582 websites Moscow - $50 \r\n.онлайн	3403 websites - $30 \r\n.орг 1160 websites - $30 \r\n.рус (.xn--p1acf) 110789 websites - $50 \r\n.рф (.xn--p1ai) 869759 websites Russia - $80 \r\n.сайт 1005 websites - $30 \r\n.укр (.xn--j1amh) 10563 websites- $50 \r\n \r\n.بازار	550 websites - $30 \r\n.شبكة	834 websites - $30 \r\n.موقع	479 websites - $30 \r\n.संगठन	 106 websites - $30 \r\n.みんな  946 websites - $30 \r\n.コム    6533 websites - $30 \r\n.世界   4172 websites - $30 \r\n.公司   46162 websites - $50 \r\n.商城   6906 websites - $30 \r\n.商标   9866 websites - $30 \r\n.我爱你 15466 websites - $50 \r\n.手机   31544 websites - $50 \r\n.机构   244 websites - $30 \r\n.游戏   162 websites - $30 \r\n.移动   1152 websites - $30 \r\n.网店   3710 websites - $30 \r\n.网络   30809 websites - $50 \r\n.닷컴   5938 websites - $30',''),(1101,1,224,'8','CindyPep',''),(1102,1,224,'9','CindyPepPA',''),(1103,1,224,'4','(365) 401-4565',''),(1104,1,224,'3','salesrep@fastypharma.com',''),(1105,1,224,'6','US ONLINE PHARMACY - GET UP 30% AT THE CHECKOUT PAGE \r\n \r\nI just wanted to inform you that all our meds are currently in stock at Fasty Pharma \r\nhttps://www.fastypharma.com \r\n \r\nEnjoy a modern checkout experience with multiple payment and shipping methods. Our popular \r\ncategories are: \r\n- Pain Relievers \r\n- Muscle Relaxant \r\n- Anti Anxiety \r\n- Sleeping Pills \r\n- Erectile Dysfunction \r\n \r\nTake a second to visit our shelf at https://www.fastypharma.com/ \r\n \r\nYou can write to us directly via the live chat on our site, or email us at support@fastypharma.com, we \r\nare available to answer all your concerns. \r\n \r\nBest Regards, \r\n \r\nCindy | Customer Service Manager \r\n+18443008187 \r\nFastyPharma®',''),(1106,1,225,'8','Carmella',''),(1107,1,225,'9','Serrano',''),(1108,1,225,'4','(830) 987-3708',''),(1109,1,225,'3','serrano.carmella@gmail.com',''),(1110,1,225,'6','We offer you a service to skyrocket your company. 100,000 post ideas and more than 6,000 pre-made templates for your social media marketing.:\r\n\r\nhttps://shrsl.com/2eg89\r\nBest regards,\r\nMarc K.S.,',''),(1111,1,226,'8','Jorg',''),(1112,1,226,'9','Jorg',''),(1113,1,226,'4','(701) 480-1230',''),(1114,1,226,'3','admin@mannplumbingandheating.com',''),(1115,1,226,'6','Good day\r\n\r\nBe Buzz Free! The Original Mosquito Trap.\r\n\r\n60% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping\r\n✔️LED Bionic Wave Technology\r\n✔️Eco-Friendly\r\n✔️15 Day Money-Back Guarantee\r\n\r\nShop Now: mosquitotrap.online\r\n\r\nCheers,\r\n\r\nPlumbing & Heating Chambersburg, PA| Home | Mann Plumbing & Heating, LLC. - mannplumbingandheating.com',''),(1116,1,227,'8','AlexFaift',''),(1117,1,227,'9','AlexFaiftHM',''),(1118,1,227,'4','(652) 047-3857',''),(1119,1,227,'3','sbo.n.ca.ng.@gmail.com',''),(1120,1,227,'6','Passive income  this is free money  http://xurl.es/de4vy\r\n \r\n Excellent  service,  generating income, which  gives  members with passive income from online advertising revenue. \r\nIt\'s easy for members ... Just select your banners and watch the money slowly flow into your account every minute. You won\'t believe how quickly this stacks up. \r\nhttp://chilp.it/5078e4f',''),(1121,1,228,'8','contactguusex',''),(1122,1,228,'9','contactguusex',''),(1123,1,228,'4','(337) 143-4131',''),(1124,1,228,'3','jerome_sesso37@rambler.ru',''),(1125,1,228,'6','Good whatever time of day it is where you are! \r\n \r\nWe send Your messages via contact forms to the sites offirms via any countries and domain zones of the world.  \r\n \r\nhttps://xn----7sbb1bbndheurc1a.xn--p1ai \r\n \r\nThe message is sent to email of business organization 100 percent will get to incoming! \r\n \r\nTest: \r\nten thousand messages on foreign zones to your E-mail - 20 $. \r\nWe need from You only email address, title and text of the letter. \r\n \r\nIn our price there are more 800 databases for all domains of the world. \r\nCommon databases: \r\nAll Europe 44 countries 60726150 of domains - 1100$ \r\nAll European Union 28 countries 56752547 of sites- 1000$ \r\nAll Asia 48 countries 14662004 of domain names - 300$ \r\nAll Africa 50 countries 1594390 of sites - 200$ \r\nAll North and Central America in 35 countries 7441637 of domains - 300$ \r\nAll South America 14 countries 5826884 of sites - 200$ \r\nBusinesses of the Russian Federation 4025015 - 300$ \r\nUkraine 605745 of domain names - 100$ \r\nAll Russian-speaking countries minus RF are 14 countries and there are 1979217 of domains - 200$ \r\n \r\nDatabases: \r\nWhois-service databases of domain names for all nations of the world. \r\nYou can purchase our databases separately from newsletter\'s service at the request. \r\n \r\nP/S \r\nPlease, do not respond to this letter from your email account, as it has been generated automatically and will not reach us! \r\nUse the contact form from the site https://xn----7sbb1bbndheurc1a.xn--p1ai \r\n \r\nPRICE LIST: \r\n \r\nTest mailing: $20 – 10000 contact forms websites \r\n \r\nAll Europe 44 countries there are 60726150 websites – $1100 \r\n \r\nAll EU 28 countries there are 56752547 websites – $1000 \r\n \r\nAll Asia 48 countries there are 14662004 websites – $500 \r\n \r\nAll Africa 50 countries there are 1594390 websites – $200 \r\n \r\nAll North and Central America is 35 countries there are 7441637 websites – $300 \r\n \r\nAll South America 14 countries there are 5826884 websites – $200 \r\n \r\nTop 1 Million World’s Best websites – $100 \r\n \r\nTop 16821856 the most visited websites in the world – $300 \r\n \r\nNew websites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 500$ \r\n \r\nBusinesses and organizations of the Russian Federation – there are 3012045 websites – $300 \r\n \r\nAll Russian-speaking countries minus Russia – there are 14 countries and 1850186 websites – $200 \r\n \r\nNew websites of the Russian Federation, registered 24-48 hours ago. (A cycle of 15 mailings during the month) – \r\n \r\n250$ \r\n \r\n1499203 of hosting websites around the world (there are selections for all countries, are excluded from databases \r\n \r\nfor mailings) – $150 \r\n \r\n142018 websites of public authorities of all countries of the world (selections for all countries, are excluded \r\n \r\nfrom databases for mailings) – $100 \r\n \r\nCMS mailings: \r\n \r\nAmiro 1794 websites $50 \r\nBitrix 199550 websites $80 \r\nConcrete5 39121 websites $50 \r\nCONTENIDO 5069 websites $50 \r\nCubeCart 1062 websites $50 \r\nDatalife Engine 23220 websites $50 \r\nDiscuz 47962 websites $50 \r\nDotnetnuke 22859 websites $50 \r\nDrupal 802121 websites $100 \r\nFlexbe 15072 websites $50 \r\nHostCMS 5042 websites $50 \r\nInstantCMS 4136 websites $50 \r\nInSales 11081 websites $50 \r\nInvision Power Board 265 websites $30 \r\nJoomla 1906994 websites $200 \r\nLiferay 5137 websites $50 \r\nMagento 269488 websites $80 \r\nMODx 64023 websites $50 \r\nMovable Type 9171 websites $50 \r\nNetCat 6636 websites $50 \r\nNopCommerce 3892 websites $50 \r\nOpenCart 321057 websites $80 \r\nosCommerce 68468 websites $50 \r\nphpBB 2182 websites $50 \r\nPrestashop 92949 websites $50 \r\nShopify 604387 websites $80 \r\nSimpla 17429 websites $50 \r\nSitefinity 4183 websites $50 \r\nTextpattern 882 websites $30 \r\nTilda 47396 websites $50 \r\nTYPO3 192006 websites $80 \r\nUMI.CMS 13191 websites $50 \r\nvBulletin 8407 websites $50 \r\nWix 3379081 websites $250 \r\nWordpress 15574051 websites $450 \r\nWooCommerce 2097367 websites $210 \r\n \r\n.com 141528448 websites commercial - $1950 \r\n.biz 2361884 websites business - $150 \r\n.info 6216929 websites information - $250 \r\n.net 15689222 websites network - $450 \r\n.org 10922428 websites organization - $350 \r\n \r\n.abogado 381 websites - $30 \r\n.ac 2365 websites - $30 \r\n.academy 34531 websites - $50 \r\n.accountant 96540 websites - $50 \r\n.accountants 1653 websites - $30 \r\n.actor 2287 websites - $30 \r\n.ad 323 websites - $30 \r\n.adult 10541 websites- $50 \r\n.ae 200462 websites UAE - $50 \r\n.ae 1820 websites International zone UAE:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.aero 23635 websites- $50 \r\n.af 3778 websites - $30 \r\n.africa	23341 websites- $50 \r\n.ag 11931 websites - $50 \r\n.agency 66462 websites - $50 \r\n.ai 24137 websites - $50 \r\n.airforce 592 websites - $30 \r\n.al 6078 websites - $30 \r\n.alsace	1982 websites - $50 \r\n.am 21995 websites Armenia - $50 \r\n.am 1684 websites International zone Armenia:.com .net .biz .info .name .tel .mobi .asia \r\n.amsterdam 28141 websites Amsterdam, Kingdom of the Netherlands - $30 \r\n.ao 904 websites - $30 \r\n.apartments 3758 websites - $30 \r\n.app 661404 websites - $80 \r\n.ar 551804 websites Argentina - $80 \r\n.ar 64008 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.archi 2084 websites - $30 \r\n.army 2282 websites - $30 \r\n.art 69227 websites - $50 \r\n.as 10525 websites - $50 \r\n.asia 228418 websites - $80 \r\n.associates 3340 websites - $30 \r\n.at 1356722 websites Austria - $100 \r\n.at 181907 websites International zone Austria :.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.attorney 8204 websites - $30 \r\n.au 2432174 websites Australia - $150 \r\n.au 461279 websites International zone Australia:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.auction 4125 websites - $30 \r\n.audio 23052 websites - $50 \r\n.auto 400 websites - $30 \r\n.aw 235 websites - $30 \r\n.az 11104 websites Azerbaijan - $50 \r\n.az 2036 websites International zone Azerbaijan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ba 2291 websites international zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia-$30 \r\n.ba 7012 websites Bosnia and Herzegovina - $30 \r\n.baby 2051 websites - $30 \r\n.band 13515 websites - $50 \r\n.bank 20424 websites - $50 \r\n.bar 50267 websites - $50 \r\n.barcelona 7919 websites - $30 \r\n.bargains 2997 websites - $30 \r\n.bargains 2346 websites - $30 \r\n.bayern 32565 websites - $50 \r\n.bb 2277 websites- $30 \r\n.be 1349658 websites Belgium - $150 \r\n.be 184810 websites International zone Belgium:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.beer 13834 websites- $50 \r\n.berlin 58088 websites Berlin - $50 \r\n.best 93390 websites - $50 \r\n.bet 17637 websites - $50 \r\n.bf 238 websites - $30 \r\n.bg 37152 websites Bulgaria - $50 \r\n.bg 50685 websites International zone Bulgaria:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.bh 453 websites - $30 \r\n.bi 2328 websites Burundi - $30 \r\n.bible 1760 websites - $30 \r\n.bid 474509 websites - $80 \r\n.bike 15229 websites - $50 \r\n.bingo 1232 websites - $30 \r\n.bio 15531 websites- $50 \r\n.bj 147 websites - $30 \r\n.black 6582 websites - $30 \r\n.blackfriday 12106 websites - $50 \r\n.blog 178562 websites - $80 \r\n.blue 16852 websites - $50 \r\n.bm 8089 websites Bermuda - $30 \r\n.bn 20 websites - $30 \r\n.bo 2602 websites- $30 \r\n.bo 29415 websites International zone Bolivia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.boats 266 websites - $30 \r\n.boston	21762 websites- $50 \r\n.boutique 8834 websites - $50 \r\n.br 2589383 websites Brazil - $250 \r\n.br 933750 websites International zone Brazil:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.bradesco 179 websites- $30 \r\n.broadway 261 websites- $30 \r\n.broker	1060 websites- $30 \r\n.brussels 7181 websites - $30 \r\n.bs 330 websites- $30 \r\n.bt 284 websites- $30 \r\n.build 3857 websites- $30 \r\n.builders 3906 websites- $30 \r\n.business 35168 websites - $50 \r\n.buzz 534984 websites - $80 \r\n.bw 1160 websites - $30 \r\n.by 92679 websites Belarus - $50 \r\n.by 1574 websites International zone Belarus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.bz 7751 websites - $30 \r\n.bzh 5403 websites - $30 \r\n.ca 2587463 websites Canada - $250 \r\n.ca 288395 websites International zone Canada:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.cab 3223 websites - $30 \r\n.cafe 15406 websites - $50 \r\n.cam 10316 websites - $50 \r\n.camera 5236 websites - $30 \r\n.camp 6315 websites - $30 \r\n.capetown 4750 websites - $30 \r\n.capital 14387 websites - $50 \r\n.car 342 websites - $30 \r\n.cards 5992 websites - $30 \r\n.care 23004 websites - $50 \r\n.career	1217 websites - $30 \r\n.careers 7555 websites - $30 \r\n.cars 309 websites - $30 \r\n.casa 24158 websites - $50 \r\n.cash 13193 websites - $50 \r\n.casino	5354 websites - $30 \r\n.cat 108569 websites - $50 \r\n.catering 3482 websites - $30 \r\n.cc 1920589 websites Cocos Keeling Islands- $200 \r\n.cd 5865 websites - $30 \r\n.center 39353 websites - $50 \r\n.ceo 2458 websites - $30 \r\n.cf 2291460 websites Central African Republic - $200 \r\n.cg 166 websites - $30 \r\n.ch 1627450 websites Switzerland - $150 \r\n.ch 205292 websites International zone Switzerland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.chat 15026 websites - $50 \r\n.cheap 3267 websites - $30 \r\n.christmas 15255 websites - $50 \r\n.church 24104 websites - $50 \r\n.ci 5663 websites Cote d\'Ivoire - $30 \r\n.ci 112 websites International zone Cote d\'Ivoire:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.city 46171 websites - $50 \r\n.cl 590401 websites Chile - $80 \r\n.cl 65996 websites International zone Chile:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.claims	2374 websites - $30 \r\n.cleaning 2385 websites - $30 \r\n.click 181015 websites - $50 \r\n.clinic 8006 websites - $30 \r\n.clothing 13639 websites - $50 \r\n.cloud	164113 websites - $50 \r\n.club 1230555 websites - $100 \r\n.cm 29221 websites Cameroon- $50 \r\n.cn 23160610 websites China - $600 \r\n.cn 1372416 websites International zone China:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.co 1878923 websites Colombia - $200 \r\n.co 10854 websites International zone Colombia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.coach 16002 websites- $50 \r\n.codes 12044 websites - $50 \r\n.coffee 19257 websites - $50 \r\n.cologne 10157 websites - $50 \r\n.com.ar 657716 websites Argentina - $80 \r\n.com.br 942898 websites Brazil – $100 \r\n.com.cy	11153 websites Cyprus - $50 \r\n.com.ni 23747 websites - $50 \r\n.com.np 38828 websites - $50 \r\n.com.ru, .net.ru, .org.ru, .spb.ru, .msk.ru 98375 websites Russia - $50 \r\n.community 15013 websites - $50 \r\n.company 64217 websites - $50 \r\n.computer 5539 websites - $30 \r\n.condos	2192 websites - $30 \r\n.construction 7104 websites - $30 \r\n.consulting 27128 websites - $50 \r\n.contractors 3982 websites - $30 \r\n.cooking 1476 websites - $30 \r\n.cool 22008 websites - $50 \r\n.coop 7479 websites - $30 \r\n.corsica 1042 websites - $30 \r\n.country 7144 websites - $30 \r\n.cr 7934 websites - $30 \r\n.credit	4020 websites - $30 \r\n.creditcard 825 websites - $30 \r\n.creditunion 511 websites - $30 \r\n.cricket 33413 websites - $50 \r\n.cruises 2234 websites - $30 \r\n.cu 137 websites - $30 \r\n.cv 2279 websites - $30 \r\n.cx 15753 websites - $50 \r\n.cy 11092 websites Cyprus - $50 \r\n.cy 710 websites International zone Cyprus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cymru 7314 websites - $30 \r\n.cz 1001208 websites Czech Republic - $100 \r\n.cz 193400 websites International zone Czech Republic:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dance	7490 websites - $30 \r\n.date 10800 websites - $50 \r\n.dating	2892 websites - $30 \r\n.de 15078512 websites Germany - $450 \r\n.de 3894156 websites International zone Germany:.com .net .biz .info .name .tel .mobi .asia-$200 \r\n.deals 8332 websites - $30 \r\n.degree	2178 websites - $30 \r\n.delivery 6282 websites - $30 \r\n.democrat 1072 websites - $30 \r\n.dental 7841 websites - $30 \r\n.dentist 3046 websites - $30 \r\n.desi 2647 websites - $50 \r\n.design 103712 websites - $50 \r\n.dev	190456 websites - $50 \r\n.diamonds 2730 websites - $30 \r\n.diet 18291 websites - $50 \r\n.digital 49449 websites - $50 \r\n.direct 12129 websites - $50 \r\n.directory 15157 websites - $50 \r\n.discount 3898 websites - $30 \r\n.dj 7680 websites - $30 \r\n.dk 1319155 websites Denmark - $100 \r\n.dk 148164 websites International zone Denmark:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dm 23318 websites - $50 \r\n.do 5255 websites Dominican Republic- $30 \r\n.doctor	5601 websites - $30 \r\n.dog 10030 websites - $50 \r\n.dog 12435 websites - $50 \r\n.domains 6253 websites - $30 \r\n.download 7886 websites - $30 \r\n.durban	2247 websites - $30 \r\n.dz 982 websites - $30 \r\n.earth	23412 websites - $50 \r\n.ec 11731 websites Ecuador - $50 \r\n.ec 2897 websites International zone Ecuador:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.edu 4445 websites - $30 \r\n.edu.np 4883 websites- $30 \r\n.education 25003 websites - $50 \r\n.ee 119701 websites Estonia- $50 \r\n.ee 10490 websites International zone Estonia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.eg 1699 websites - $30 \r\n.email 100440 websites - $50 \r\n.energy 12399 websites - $50 \r\n.engineer 3785 websites - $30 \r\n.engineering 6533 websites - $30 \r\n.enterprises 6253 websites - $30 \r\n.equipment 5060 websites - $30 \r\n.es 1509048 websites Spain - $150 \r\n.es 683845 websites International zone Spain:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.estate 9285 websites - $30 \r\n.et 134 websites - $30 \r\n.eu 3046076 websites Europe - $150 \r\n.eu 633384 websites International zone Europe:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.eus 10116 websites - $50 \r\n.events 25115 websites - $50 \r\n.exchange 10432 websites - $50 \r\n.expert 34040 websites - $50 \r\n.exposed 2880 websites - $30 \r\n.express 7019 websites - $30 \r\n.fail 3692 websites - $30 \r\n.faith 4019 websites - $30 \r\n.family 21577 websites - $50 \r\n.fan 28607 websites - $50 \r\n.fans 1688 websites - $30 \r\n.farm 17009 websites - $50 \r\n.fashion 9011 websites - $30 \r\n.feedback 1301 websites - $30 \r\n.fi 188337 websites Finland - $50 \r\n.fi 69631 websites International zone Finland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.film 4501 websites - $30 \r\n.finance 9082 websites - $30 \r\n.financial 5086 websites - $30 \r\n.fish 4562 websites - $30 \r\n.fishing 1422 websites - $30 \r\n.fit 109855 websites - $50 \r\n.fitness 10689 websites - $50 \r\n.flights 2169 websites - $30 \r\n.florist 2071 websites - $30 \r\n.flowers 1187 websites - $30 \r\n.fm 3775 websites - $30 \r\n.fo 10415 websites- $50 \r\n.football 4677 websites - $30 \r\n.forex	282 websites - $30 \r\n.forsale 7118 websites - $30 \r\n.foundation 15401 websites - $50 \r\n.fr 2810983 websites France - $250 \r\n.fr 639546 websites International zone France:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.frl 13028 websites - $50 \r\n.fun 485622 websites - $50 \r\n.fund 14501 websites - $50 \r\n.furniture 2276 websites - $30 \r\n.futbol	2709 websites - $30 \r\n.fyi 15872 websites - $50 \r\n.ga 5041 websites Gabon - $30 \r\n.gal 5106 websites - $30 \r\n.gallery 17663 websites - $50 \r\n.game 2066 websites - $30 \r\n.games 20294 websites - $50 \r\n.garden	 2618 websites - $30 \r\n.gd 3038 websites - $30 \r\n.ge 17359 websites Georgia - $50 \r\n.ge 1676 websites International zone Georgia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.gent 3388 websites - $30 \r\n.gf 105 websites French Guiana - $30 \r\n.gg 7443 websites - $30 \r\n.gh 703 websites - $30 \r\n.gi 981 websites - $30 \r\n.gift 5001 websites - $30 \r\n.gifts 3357 websites - $30 \r\n.gives 1759 websites - $30 \r\n.gl 3558 websites - $30 \r\n.glass	3239 websites - $30 \r\n.global 48572 websites - $50 \r\n.gm 287 websites - $30 \r\n.gmbh 20786 websites - $50 \r\n.gold 9581 websites - $30 \r\n.golf 10319 websites - $50 \r\n.gop 1340 websites - $30 \r\n.gov 4195 websites - $30 \r\n.gov.np 1937 websites- $30 \r\n.gp 2014 websites - $30 \r\n.gq 63622 websites - $50 \r\n.gr 323168 websites Greece - $80 \r\n.gr 57984 websites International zone Greece:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.graphics 6555 websites - $30 \r\n.gratis	4113 websites - $30 \r\n.green 5161 websites - $30 \r\n.gripe 1175 websites - $30 \r\n.group 65583 websites - $50 \r\n.gs 1008 websites Georgia - $30 \r\n.gt 15351 websites - $50 \r\n.guide 15044 websites - $50 \r\n.guitars 965 websites - $30 \r\n.guru 53088 websites - $50 \r\n.gy 2047 websites Guyana - $30 \r\n.hamburg 21585 websites - $50 \r\n.haus 5686 websites - $30 \r\n.health	13716 websites - $50 \r\n.healthcare 9001 websites - $30 \r\n.help 13098 websites - $50 \r\n.hiphop 518 websites - $30 \r\n.hiv 279 websites - $30 \r\n.hk 116093 websites - $50 \r\n.hm 229 websites - $30 \r\n.hn 4732 websites - $30 \r\n.hockey	1402 websites - $30 \r\n.holdings 5812 websites - $30 \r\n.holiday 4517 websites - $30 \r\n.homes 12499 websites - $50 \r\n.horse 2516 websites - $30 \r\n.hospital 1805 websites - $30 \r\n.host 79977 websites - $50 \r\n.hosting 3322 websites - $30 \r\n.house 19296 websites - $50 \r\n.how 2557 websites - $30 \r\n.hr 48565 websites Croatia - $50 \r\n.hr 16592 websites International zone Croatia:.com .net .biz .info .name .tel .mobi .asia \r\n.ht 1299 websites - $30 \r\n.hu 618532 websites Hungary - $80 \r\n.hu 53940 websites International zone Hungary:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.icu 6331371 websites - $350 \r\n.id 61744 websites - $50 \r\n.ie 195987 websites Ireland - $50 \r\n.ie 49861 websites International zone Ireland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.il 196266 websites Israel - $80 \r\n.il 38537 websites International zone Israel:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.im 18701 websites - $50 \r\n.immo 15409 websites - $50 \r\n.immobilien 6805 websites - $30 \r\n.in 1143482 websites India - $100 \r\n.in 266179 websites International zone India:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.industries 4312 websites - $30 \r\n.ink 28117 websites - $50 \r\n.institute 12134 websites - $50 \r\n.insure	5015 websites - $30 \r\n.int 451 websites - $30 \r\n.international 25430 websites - $50 \r\n.investments 4813 websites - $30 \r\n.io 496216 websites British Indian Ocean - $80 \r\n.iq 2401 websites - $30 \r\n.ir 427735 websites Iran - $80 \r\n.ir 15487 websites International zone Iran:.com .net .biz .info .name .tel .mobi .asia \r\n.irish 3126 websites - $30 \r\n.is 32176 websites Iceland - $50 \r\n.ist 9060 websites - $30 \r\n.istanbul 12839 websites - $50 \r\n.it 2410105 websites Italy – $250 \r\n.it 954040 websites International zone Italy:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.je 3016 websites - $30 \r\n.jetzt 18207 websites - $50 \r\n.jewelry 3250 websites - $30 \r\n.jo 555 websites - $30 \r\n.jobs 44024 websites- $50 \r\n.joburg	3138 websites - $30 \r\n.jp 1299921 websites Japan - $150 \r\n.jp 4683252 websites International zone Japan:.com.net.biz.info.org.name.tel.mobi.asia-$450 \r\n.juegos	644 websites - $30 \r\n.kaufen 6134 websites - $30 \r\n.ke 14677 websites - $50 \r\n.kg 3619 websites Kyrgyzstan - $30 \r\n.kg 664 websites International zone Kyrgyzstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ki 79 websites - $30 \r\n.kim 12007 websites- $50 \r\n.kitchen 6881 websites - $30 \r\n.kiwi 13426 websites - $50 \r\n.kn 3211 websites - $30 \r\n.koeln 23320 websites - $50 \r\n.kr 272463 websites Korea- $50 \r\n.krd 374 websites - $30 \r\n.kred 8921 websites - $30 \r\n.kw 484 websites - $30 \r\n.ky 5783 websites - $30 \r\n.kyoto 658 websites - $30 \r\n.kz 113180 websites Kazakhstan - $50 \r\n.kz 5876 websites International zone Kazakhstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.la 34189 websites Laos - $50 \r\n.land 15474 websites- $50 \r\n.lat 4171 websites - $30 \r\n.law 12002 websites - $50 \r\n.lawyer 10996 websites- $50 \r\n.lc 481 websites- $30 \r\n.lease 1755 websites- $30 \r\n.leclerc 165 websites- $30 \r\n.legal 13047 websites- $50 \r\n.lgbt 2247 websites- $30 \r\n.li 10044 websites - $50 \r\n.life 195950 websites - $50 \r\n.lighting 5870 websites - $30 \r\n.limited 5365 websites - $30 \r\n.limo 1981 websites- $30 \r\n.link 117273 websites - $50 \r\n.live 662010 websites - $80 \r\n.lk 4971 websites - $30 \r\n.llc 12888 websites - $50 \r\n.loan 23738 websites - $50 \r\n.loans 3994 websites - $30 \r\n.lol 8121 websites - $30 \r\n.london 48933 websites London, United Kingdom- $50 \r\n.love 28434 websites - $50 \r\n.ls 236 websites - $30 \r\n.lt 94484 websites Lithuania- $50 \r\n.lt 27710 websites International zone Lithuania:.com .net .biz .info .name .tel .mobi .asia- $50 \r\n.ltd 100152 websites - $50 \r\n.lu 47052 websites Luxembourg - $50 \r\n.lu 4125 websites International zone Luxembourg:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.luxe 14037 websites - $50 \r\n.luxury	805 websites - $30 \r\n.lv 67886 websites Latvia - $50 \r\n.lv 8887 websites International zone Latvia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ly 8413 websites - $30 \r\n.ma 41462 websites Morocco - $50 \r\n.madrid	2919 websites - $30 \r\n.maison	1003 websites - $30 \r\n.management 10788 websites- $50 \r\n.market 18741 websites- $50 \r\n.marketing 22656 websites- $50 \r\n.markets 899 websites- $30 \r\n.mba 2510 websites- $30 \r\n.mc 3046 websites Monaco - $30 \r\n.md 16135 websites Moldova - $50 \r\n.md 1293 websites International zone Moldova:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.me 761596 websites Montenegro - $80 \r\n.me 86897 websites International zone Montenegro:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.media 49573 websites - $50 \r\n.melbourne 10041 websites - $50 \r\n.memorial 712 websites - $30 \r\n.men 24451 websites - $50 \r\n.menu 5002 websites restaurants- $30 \r\n.mg 3680 websites Madagascar- $30 \r\n.miami 9210 websites Miami, USA - $30 \r\n.mk 12704 websites - $50 \r\n.ml 128001 websites - $50 \r\n.mma 1705 websites - $30 \r\n.mn 17044 websites - $50 \r\n.mo 775 websites - $30 \r\n.mobi 381422 websites- $80 \r\n.moda 2741 websites - $30 \r\n.moe 8709 websites - $30 \r\n.mom 2085 websites - $30 \r\n.money 12000 websites - $50 \r\n.monster 54325 websites - $50 \r\n.mortgage 3198 websites - $30 \r\n.moscow 17741 websites Moscow Russian Federation- $50 \r\n.movie 3275 websites - $30 \r\n.mq 119 websites - $30 \r\n.mr 199 websites - $30 \r\n.ms 7265 websites - $30 \r\n.mt 1402 websites Malta - $30 \r\n.mu 6475 websites - $30 \r\n.museum	1260 websites - $30 \r\n.mv 1905 websites - $30 \r\n.mw 8579 websites Malawi - $30 \r\n.mx 670901 websites Mexico- $80 \r\n.mx 174571 websites International zone Mexico:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.my 143039 websites Malaysia- $80 \r\n.mz 985 websites - $30 \r\n.na 1094 websites - $30 \r\n.nagoya	7807 websites - $30 \r\n.name 120331 websites- $50 \r\n.navy 799 websites - $30 \r\n.nc 999 websites - $30 \r\n.network 51331 websites - $50 \r\n.news 57899 websites - $50 \r\n.ng 23864 websites - $50 \r\n.ngo 3421 websites - $30 \r\n.ninja 31719 websites - $50 \r\n.nl 3925784 websites Netherlands - $200 \r\n.nl 1019697 websites International zone Netherlands:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.no 620882 websites Norway - $80 \r\n.no 74318 websites International zone Norway:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.nra 131 websites - $30 \r\n.nrw 17487 websites - $50 \r\n.nu 236821 websites Niue- $50 \r\n.nyc 64003 websites - $50 \r\n.nz 593127 websites New Zealand - $80 \r\n.om 1701 websites - $30 \r\n.one 71859 websites - $50 \r\n.ong 3420 websites - $30 \r\n.onl 7059 websites - $30 \r\n.online 1356725 websites - $100 \r\n.ooo 15719 websites - $50 \r\n.org.np 7082 websites - $30 \r\n.org.ua 41362 websites - $50 \r\n.organic 1631 websites - $30 \r\n.osaka	664 websites - $30 \r\n.ovh 50056 websites - $50 \r\n.pa 1578 websites - $30 \r\n.page 61259 websites - $50 \r\n.paris 19098 websites - $50 \r\n.partners 8576 websites - $30 \r\n.parts 6042 websites - $30 \r\n.party 19563 websites- $50 \r\n.pe 83224 websites Peru - $50 \r\n.pe 59157 websites International zone Peru:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pet 10381 websites - $50 \r\n.pf 319 websites - $30 \r\n.pg 2105 websites Papua - $30 \r\n.ph 17940 websites Philippines - $50 \r\n.photo 17365 websites- $50 \r\n.photography 45234 websites- $50 \r\n.photos	21407 websites- $50 \r\n.physio	1159 websites- $30 \r\n.pics 5559 websites- $30 \r\n.pictures 8375 websites- $30 \r\n.pink 8173 websites- $30 \r\n.pizza 6365 websites - $30 \r\n.pk 44464 websites Pakistan - $50 \r\n.pl 1795299 websites Poland - $150 \r\n.pl 327587 websites International zone Poland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.place 3504 websites - $30 \r\n.plumbing 2815 websites - $30 \r\n.plus 18915 websites - $50 \r\n.pm 4051 websites - $30 \r\n.poker 3207 websites - $30 \r\n.porn 10323 websites- $50 \r\n.post 441 websites - $30 \r\n.pr 1229 websites - $30 \r\n.press 35132 websites - $50 \r\n.productions 7907 websites - $30 \r\n.promo 5720 websites - $30 \r\n.properties 13804 websites - $50 \r\n.property 3274 websites - $30 \r\n.ps 1572 websites - $30 \r\n.pt 263136 websites Portugal - $80 \r\n.pt 17691 websites International zone Portugal:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pub 25225 websites - $50 \r\n.pw 8023 websites - $30 \r\n.py 5593 websites Paraguay - $30 \r\n.py 653 websites International zone Paraguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.qa 9080 websites - $30 \r\n.quebec 8742 websites - $30 \r\n.racing 3320 websites - $30 \r\n.radio 2274 websites - $30 \r\n.re 11013 websites - $50 \r\n.realestate 18187 websites - $50 \r\n.realtor 39865 websites - $50 \r\n.realty 2204 websites - $30 \r\n.recipes 6245 websites - $30 \r\n.red 24701 websites - $50 \r\n.rehab 1756 websites - $30 \r\n.reise 1071 websites - $30 \r\n.reisen	4805 websites - $30 \r\n.reit 101 websites - $30 \r\n.ren 16501 websites - $50 \r\n.rent 4474 websites - $30 \r\n.rentals 11901 websites- $50 \r\n.repair 6828 websites- $30 \r\n.report 7269 websites - $30 \r\n.republican 852 websites - $30 \r\n.rest 47992 websites - $50 \r\n.restaurant 7735 websites - $30 \r\n.review 12121 websites - $80 \r\n.reviews 17432 websites- $50 \r\n.rio 1062 websites- $30 \r\n.rip 3599 websites- $30 \r\n.ro 423021 websites Romania - $80 \r\n.ro 42046 websites International zone Romania:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.rocks 90108 websites - $50 \r\n.rs 85503 websites Serbia - $50 \r\n.ru 514668 websites International zone Russian:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.ru 5025331 websites Russian - $250 \r\n.ru, .su, .рф websites 5800000 - $250 \r\n.ru.com 6499 websites Russia - $30 \r\n.ruhr 9687 websites - $30 \r\n.run 19122 websites - $50 \r\n.rw 3245 websites - $30 \r\n.sa 20421 websites Saudi Arabia- $50 \r\n.sa 5064 websites International zone Saudi Arabia:.com .net .biz .info .name .tel .mobi .asia \r\n.saarland 3925 websites - $30 \r\n.sale 15249 websites - $50 \r\n.salon 2722 websites - $30 \r\n.sarl 919 websites - $30 \r\n.sc 4442 websites Seychelles- $30 \r\n.school 14272 websites - $50 \r\n.schule	2913 websites - $30 \r\n.science 13625 websites - $80 \r\n.scot 11375 websites - $50 \r\n.sd 515 websites - $30 \r\n.se 1383322 websites Sweden - $150 \r\n.se 293316 websites International zone Sweden:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.seat 688 websites - $30 \r\n.security 287 websites - $30 \r\n.services 50298 websites - $50 \r\n.sex 7751 websites - $30 \r\n.sexy 5756 websites - $30 \r\n.sg 150351 websites Republic Of Singapore - $50 \r\n.sh 2706 websites - $30 \r\n.shiksha 911 websites - $30 \r\n.shoes 4676 websites - $30 \r\n.shop 631693 websites - $80 \r\n.shopping 6337 websites - $30 \r\n.show 12092 websites - $50 \r\n.si 39749 websites Slovenia- $50 \r\n.si 12879 websites International zone Slovenia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.singles 3589 websites - $30 \r\n.site 1855897 websites - $150 \r\n.sk 301001 websites Slovakia- $80 \r\n.sk 31572 websites International zone Slovakia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ski 5530 websites - $30 \r\n.sl 1504 websites - $30 \r\n.sm 8897 websites - $30 \r\n.sn 4465 websites Senegal - $30 \r\n.sn 344 websites International zone Senegal:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.so 9703 websites - $30 \r\n.soccer	2933 websites - $30 \r\n.social 23263 websites - $50 \r\n.software 16006 websites - $50 \r\n.solar 6575 websites - $30 \r\n.solutions 78770 websites - $50 \r\n.soy 1405 websites - $30 \r\n.space 409707 websites - $80 \r\n.sport 8578 websites - $30 \r\n.sr 580 websites Suriname - $30 \r\n.srl 5591 websites - $30 \r\n.st 8041 websites - $30 \r\n.storage 411 websites - $30 \r\n.store 328721 websites - $50 \r\n.stream 12901 websites - $80 \r\n.studio 53390 websites - $50 \r\n.study	5136 websites - $30 \r\n.style 11421 websites - $50 \r\n.su 110538 websites Russian- $50 \r\n.sucks 7329 websites - $30 \r\n.supplies 3079 websites - $30 \r\n.supply	5280 websites - $30 \r\n.support 23377 websites - $50 \r\n.surf 7373 websites - $30 \r\n.surgery 1778 websites - $30 \r\n.sv 8432 websites Salvador- $30 \r\n.swiss 17623 websites - $50 \r\n.sx 2901 websites - $30 \r\n.sy 2663 websites - $30 \r\n.sydney 10073 websites - $50 \r\n.systems 29044 websites - $50 \r\n.sz 321 websites - $30 \r\n.taipei	5664 websites - $30 \r\n.tattoo 7394 websites- $30 \r\n.tax 7388 websites - $30 \r\n.taxi 6034 websites - $30 \r\n.tc 16384 websites Turks and Caicos Islands- $50 \r\n.team 27421 websites- $50 \r\n.tech 276164 websites - $50 \r\n.technology 31533 websites- $50 \r\n.tel 90552 websites- $50 \r\n.tennis	1804 websites - $30 \r\n.tf 19841 websites - $50 \r\n.tg 1230 websites - $30 \r\n.th 22368 websites Kingdom Of Thailand- $50 \r\n.theater 1253 websites - $30 \r\n.tickets 1941 websites - $30 \r\n.tienda	1902 websites - $30 \r\n.tips 29380 websites- $50 \r\n.tires 941 websites - $30 \r\n.tirol 5472 websites - $30 \r\n.tj 6874 websites Tajikistan- $30 \r\n.tj 34 websites International zone Tajikistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tk 20085806 websites Tokelau - $500 \r\n.tl 2748 websites - $30 \r\n.tm 6395 websites Turkmenistan- $30 \r\n.tm 44 websites International zone Turkmenistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tn 16345 websites - $50 \r\n.to 16987 websites Tonga- $50 \r\n.today 81155 websites - $50 \r\n.tokyo 166544 websites - $50 \r\n.tools 13341 websites - $50 \r\n.top 3609373 websites - $250 \r\n.tours 10771 websites - $50 \r\n.town 4104 websites - $30 \r\n.toys 4566 websites - $30 \r\n.tr 243347 websites Turkey - $80 \r\n.tr 138818 International zone Turkey:.com .net .biz .info .name .tel .mobi .asia -$50 \r\n.trade 16130 websites - $50 \r\n.trading 1150 websites - $30 \r\n.training 19811 websites - $50 \r\n.travel 20461 websites - $50 \r\n.tt 535 websites - $30 \r\n.tube 3252 websites - $30 \r\n.tv 559502 websites Tuvalu - $80 \r\n.tw 982620 websites Taiwan - $100 \r\n.tz 4708 websites - $30 \r\n.ua 553216 websites Ukraina - $80 \r\n.ua 147202 websites International zone Ukraine:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ua, .com.ua, .kiev.ua 	193080 websites - $50 \r\n.ug 2561 websites Uganda - $30 \r\n.uk 4606907 websites United Kingdom - $350 \r\n.uk 3304606 websites International zone United Kingdom:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.university 6821 websites - $30 \r\n.uno 18694 websites - $50 \r\n.us 3139563 websites USA - $250 \r\n.us 578927 websites International zone USA:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.uy 15571 websites Uruguay - $50 \r\n.uy 31812 websites International zone Uruguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.uz 38357 websites Uzbekistan - $50 \r\n.uz  365 websites International zone Uzbekistan:.com .net .biz .info .name .tel .mobi .asia \r\n.vacations 3826 websites - $50 \r\n.vc 18641 websites - $50 \r\n.ve 14015 websites Venezuela - $50 \r\n.ve 2898 websites International zone Venezuela:.com .net .biz .info .name .tel .mobi .asia \r\n.vegas 17708 websites Las Vegas NV United States of America - $50 \r\n.ventures 13870 websites - $50 \r\n.versicherung 2005 websites - $30 \r\n.vet 7060 websites - $30 \r\n.vg 8389 websites - $50 \r\n.vi 109 websites - $30 \r\n.viajes	1065 websites - $30 \r\n.video 21392 websites- $50 \r\n.villas	11791 websites - $50 \r\n.vin 5494 websites - $30 \r\n.vip 1324303 websites - $100 \r\n.vision 7120 websites - $30 \r\n.vlaanderen 6014 websites - $30 \r\n.vn 436005 websites Vietnam - $80 \r\n.vn 161855 websites International zone Vietnam:.com .net .biz .info .name .tel .mobi .asia - $50 \r\n.vodka 1410 websites - $30 \r\n.vote 2316 websites - $30 \r\n.voto 3180 websites - $30 \r\n.voyage	2663 websites - $30 \r\n.vu 1051 websites - $30 \r\n.wales 12863 websites - $50 \r\n.wang 1352025 websites - $100 \r\n.watch 9902 websites - $30 \r\n.webcam	17340 websites - $50 \r\n.website 308840 websites -$50 \r\n.wedding 20162 websites - $50 \r\n.wf 1133 websites - $30 \r\n.wien 14413 websites - $50 \r\n.wiki 18129 websites wikis - $50 \r\n.win 73425 websites - $50 \r\n.wine 14831 websites - $50 \r\n.work 608563 websites - $80 \r\n.works 20702 websites - $50 \r\n.world 134234 websites - $50 \r\n.ws 99308 websites Samoa- $80 \r\n.wtf 17638 websites - $50 \r\n.xin 56857 websites - $50 \r\n.xn--3ds443g 26521 websites - $50 \r\n.xn--55qx5d 36965 websites - $50 \r\n.xn--6qq986b3xl 16188 websites - $50 \r\n.xn--czr694b 19910 websites - $50 \r\n.xn--czru2d 21621 websites - $50 \r\n.xn--fiq228c5hs 12145 websites - $50 \r\n.xn--io0a7i 24704 websites - $50 \r\n.xn--j6w193g 31764 websites - $50 \r\n.xn--kput3i 33006 websites - $50 \r\n.xn--mgbaam7a8h	2038 websites - $30 \r\n.xn--mgberp4a5d4ar 2534 websites - $30 \r\n.xn--mk1bu44c 6001 websites - $30 \r\n.xn--rhqv96g 7723 websites - $30 \r\n.xn--ses554g 126268 websites - $80 \r\n.xn--tckwe 6197 websites - $30 \r\n.xn--vuq861b 19706 websites - $50 \r\n.xxx 119879 websites- $50 \r\n.xyz 2650949 websites - $250 \r\n.yachts	254 websites - $30 \r\n.ye 18 websites - $30 \r\n.yoga 11563 websites - $50 \r\n.yokohama 8140 websites - $30 \r\n.yt 2004 websites - $30 \r\n.za 986900 websites South Africa - $100 \r\n.zm 508 websites - $30 \r\n.zone 26798 websites - $50 \r\n.бг (.xn--90ae) 3470 websites - $30 \r\n.дети 169 websites - $30 \r\n.москва (.xn--80adxhks) 19582 websites Moscow - $50 \r\n.онлайн	3403 websites - $30 \r\n.орг 1160 websites - $30 \r\n.рус (.xn--p1acf) 110789 websites - $50 \r\n.рф (.xn--p1ai) 869759 websites Russia - $80 \r\n.сайт 1005 websites - $30 \r\n.укр (.xn--j1amh) 10563 websites- $50 \r\n \r\n.بازار	550 websites - $30 \r\n.شبكة	834 websites - $30 \r\n.موقع	479 websites - $30 \r\n.संगठन	 106 websites - $30 \r\n.みんな  946 websites - $30 \r\n.コム    6533 websites - $30 \r\n.世界   4172 websites - $30 \r\n.公司   46162 websites - $50 \r\n.商城   6906 websites - $30 \r\n.商标   9866 websites - $30 \r\n.我爱你 15466 websites - $50 \r\n.手机   31544 websites - $50 \r\n.机构   244 websites - $30 \r\n.游戏   162 websites - $30 \r\n.移动   1152 websites - $30 \r\n.网店   3710 websites - $30 \r\n.网络   30809 websites - $50 \r\n.닷컴   5938 websites - $30',''),(1126,1,229,'8','Joe',''),(1127,1,229,'9','Dorbian',''),(1128,1,229,'4','(717) 554-5567',''),(1129,1,229,'3','jdorbian@ritnersteel.com',''),(1130,1,229,'6','Brad\r\nScott for ECI gave me your name. I plan to build and new 3000 sq ft office in Carlisle  this fall - winter and was interested in seeing if you would be interested in pricing the HVAC and Plumbing work. I have design drawings..',''),(1131,1,230,'8','JustinHah',''),(1132,1,230,'9','JustinHahLV',''),(1133,1,230,'4','(622) 664-7664',''),(1134,1,230,'3','starostindamir4291@yandex.ru',''),(1135,1,230,'6','Ищите Нас... \r\n \r\n#Hookahmagic \r\n \r\nВ настоящее время стало очень популярным курить кальяны. Это ему объяснение. Во-первых, кальян помогает снимать стресс. Во-вторых, люди, которые отказались от обычных сигарет или находятся в процессе отказа, используют кальян в качестве замены вредной привычки. \r\nПриобрести кальян, аксессуары, табак для кальяна дешево можно в специализированном магазине. Продавцы консультанты всегда помогут подобрать лучший вариант. Но не все специалисты смогут ответить на главные вопросы курильщика: «Какие виды кальяна бывают?», «Сколько можно курить по времени?», «Почему иногда болит голова от кальяна?» и так далее. Всё это будет описано ниже в статье. \r\nКакие бывают кальяны \r\nВ определенных барах персонал обычно начинают свой разговор с фразы: «Какой табак для кальяна вы бы хотели выбрать?». Но никогда не спрашивают какой кальян человек хотел бы покурить. Многие курильщики считают, что самое важное в таком процессе только лишь табак. Сами же кальяны обычно различают только по цвету и остальным внешним признакам. Курение могут испортить и другие факторы. \r\n \r\nhttps://h-magic.su/kalyan \r\n \r\nК таким можно отнести: \r\nБренд кальяна; \r\nМатериал изготовления; \r\nСпособ забивки; \r\nРазмер колбы. \r\n \r\nМы всегда с Вами и стараемся нести только позитив и радость. \r\nИщите Нас в соцсетях,подписывайтесь и будьте в курсе последних топовых событий. \r\nAmy,Tortuga,Alfa Hookah... \r\nСтрого 18+',''),(1136,1,231,'8','Hi   all my photos   and video here\r\n https://doroty.page.link/WMKL',''),(1137,1,231,'9','Hi   all my photos   and video here\r\n https://doroty.page.link/WMKL',''),(1138,1,231,'4','(762) 603-7254',''),(1139,1,231,'3','bhosale.dhananjay72@gmail.com',''),(1140,1,231,'6','I  am   looking for sex, but do   you want?  Come in   here\r\n https://katty.page.link/GkfP',''),(1141,1,232,'8','Eddie',''),(1142,1,232,'9','Lowman',''),(1143,1,232,'4','(717) 457-0656',''),(1144,1,232,'3','Celowman@comcast.net',''),(1145,1,232,'6','We are replacing our septic system and need our gray water lines to be merged into our black water line inside our house. Could  someone give us a call to discuss? Our address is 40 Mount Carmel Rd, Orrtanna Pennsylvania 17353',''),(1146,1,233,'8','Bill',''),(1147,1,233,'9','Juergens',''),(1148,1,233,'4','(717) 729-3622',''),(1149,1,233,'3','bjuergens@tbwoods.com',''),(1150,1,233,'6','Need to replace heat pump in a 1,600 sq ft single level duplex.  Please quote a Trane unit with a minimum of 15 SEER and 8.5 HSPF.',''),(1151,1,234,'8','Josette',''),(1152,1,234,'9','Korff',''),(1153,1,234,'4','(418) 808-0148',''),(1154,1,234,'3','josette@maxoutmedia.buzz',''),(1155,1,234,'6','Hello mannplumbingandheating.com,\r\n\r\nConfirm your email to receive payments:\r\nhttps://maxoutmedia.buzz/go/payments/\r\n\r\n\r\nThank you,\r\n\r\n\r\nJosette',''),(1156,1,235,'8','david',''),(1157,1,235,'9','banzhoff',''),(1158,1,235,'4','(240) 291-2912',''),(1159,1,235,'3','hawkeye5427@myactv.net',''),(1160,1,235,'6','My name is david banzhoff, I am currently working for beaver mech. on the mcleary hill project. I am doing the rough in inside the buildings. I came out of retirement to help beaver out on this project. the reason i am contacting you is  . I am reaching out to you to let you know i am interested in working on second phase.  If I can be able to help out just send me a email.          Thank You david banzhoff.',''),(1161,1,236,'8','Mike',''),(1162,1,236,'9','Mike AX',''),(1163,1,236,'4','(817) 122-4312',''),(1164,1,236,'3','no-replySow@google.com',''),(1165,1,236,'6','Hi! \r\nIf you want to get ahead of your competition, have a higher Domain Authority score. Its just simple as that. \r\nWith our service you get Domain Authority above 50 points in just 30 days. \r\n \r\nThis service is guaranteed \r\n \r\nFor more information, check our service here \r\nhttps://www.monkeydigital.co/Get-Guaranteed-Domain-Authority-50/ \r\n \r\nthank you \r\nMike  \r\nMonkey Digital \r\nsupport@monkeydigital.co',''),(1166,1,237,'8','Jen',''),(1167,1,237,'9','Huston',''),(1168,1,237,'4','(717) 217-9746',''),(1169,1,237,'3','jhuston784@gmail.com',''),(1170,1,237,'6','Our air conditioning is not working. The thermostat will display that “cool” is on, yet nothing happens. The house is 87 degrees, and it’s miserable. The earliest appointment we have found is tomorrow or Thursday. Just wondering if you had any availability today. \r\n\r\nThank you, \r\nJen  \r\n🔥🔥🔥😑🔥🔥🔥',''),(1171,1,238,'8','ariadnastro https://twitter.com Gob',''),(1172,1,238,'9','ariadnastro https://twitter.com Gob',''),(1173,1,238,'4','(172) 000-4267',''),(1174,1,238,'3','ariadnastro@yandex.com',''),(1175,1,239,'8','Jimmy Scowley',''),(1176,1,239,'9','Jimmy Scowley',''),(1177,1,239,'4','(161) 083-7071',''),(1178,1,239,'3','jimmyscowley@gmail.com',''),(1179,1,239,'6','Dear Sir/mdm, \r\n \r\nOur company Resinscales is looking for distributors and resellers for its unique product: ready-made tank models from the popular massively multiplayer online game - World of Tanks. \r\n \r\nSuch models are designed for fans of the game WoT and collectors of military models. \r\n \r\nWhat makes our tank models stand out? \r\n \r\n- We are focusing on tanks not manfactured by any companies, therefore we have no competitors \r\n- Accurately made in 1/35 scale \r\n- Very high accuracy of details and colors \r\n- The price of the model tank is the same as the production cost \r\n \r\nIf you are interested to be our distributor/reseller then please let us know from the contacts below. \r\n \r\nhttps://www.resinscales.com/ \r\nhttps://www.facebook.com/resinscales.models/ \r\ncontact@resinscales.com \r\n \r\nIgnore this message if it had been wrongly sent to you.',''),(1180,1,240,'8','Max',''),(1181,1,240,'9','Williams',''),(1182,1,240,'4','(170) 770-6020',''),(1183,1,240,'3','Siterank6@gmail.com',''),(1184,1,240,'6','Hello And Good Day\r\nI am Max (Jitesh Chauhan), a Marketing Manager with a reputable online marketing company based in India.\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\nWe can place your website on top of the Natural Listings on Google, Yahoo, and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else, and we can prove it. We do not use \"link farms\" or \"black hat\" methods that Google and the other search engines frown upon and can use to de-list or ban your site. The techniques are proprietary, involving some valuable closely held trade secrets. Our prices are less than half of what other companies charge.\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\nIn order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\nFor any inquiry related to this, mail us.\r\nThanks and Regards',''),(1185,1,241,'8','Dalibor Harald',''),(1186,1,241,'9','Dalibor Harald',''),(1187,1,241,'4','(616) 801-8888',''),(1188,1,241,'3','daliborharald02@gmail.com',''),(1189,1,241,'6','Dear \r\n \r\nMy name is Dalibor Harald, Thank you for your time, my company offers project financing/Joint Ventures Partnership and lending services, do you have any projects that require funding/ Joint Ventures Partnership at the moment? We are ready to work with you on a more transparent approach. \r\n \r\nBest regards, \r\n \r\nDalibor Harald \r\nPrincipal Partner \r\nE-mail: daliborharald01@gmail.com',''),(1190,1,242,'8','Amanda',''),(1191,1,242,'9','Mulroy',''),(1192,1,242,'4','(409) 363-6358',''),(1193,1,242,'3','amanda.mulroy@onlinechatservices.com',''),(1194,1,242,'6','Hello there,\r\n\r\nI hope you\'re doing well. We realize the current environment has pushed companies to rapidly move online to better service their customers. To help with the transition, we work with businesses to install Live Chat software and offer it free for three months with no commitment at all.\r\n\r\nYou can chat in real-time with your customers on mannplumbingandheating.com, display important messages via targeted popups, and send automated emails to increase conversions.\r\n\r\nWould you be interested in trying it out? I\'d be happy to answer any questions. Looking forward to connecting with you!\r\n\r\nAmanda Mulroy\r\nOnline Chat Services, Tyipe LLC (pronounced \"type\")\r\n500 Westover Dr #15391 Sanford, NC 27330\r\n\r\nIf you\'re not interested, you can opt out here http://eroutemgr.com/remove?q=mannplumbingandheating.com&i=13',''),(1195,1,243,'8','Frank',''),(1196,1,243,'9','Robinson',''),(1197,1,243,'4','(717) 360-3191',''),(1198,1,243,'3','frankrob.robinson@gmail.com',''),(1199,1,243,'6','Do you do any service in Huntingdon county',''),(1200,1,244,'8','Robertvette',''),(1201,1,244,'9','RobertvetteGK',''),(1202,1,244,'4','(520) 033-3300',''),(1203,1,244,'3','atrixxtrix@gmail.com',''),(1204,1,244,'6','Dear Sir/mdm, \r\n \r\nHow are you? \r\n \r\nWe supply Professional surveillance & medical products: \r\n \r\nMoldex, makrite and 3M N95 1860, 9502, 9501, 8210 \r\n3ply medical, KN95, FFP2, FFP3, PPDS masks \r\nFace shield/medical goggles \r\nNitrile/vinyl/Latex/PP gloves \r\nIsolation/surgical gown lvl1-4 \r\nProtective PPE/Overalls lvl1-4 \r\nIR non-contact/oral thermometers \r\nsanitizer dispenser \r\n \r\nLogitech/OEM webcam \r\nMarine underwater CCTV \r\nExplosionproof CCTV \r\n4G Solar CCTV \r\nHuman body thermal cameras \r\nIP & analog cameras for homes/industrial/commercial \r\n \r\nLet us know which products you are interested and we can send you our full pricelist. \r\n \r\nWhatsapp: +65 87695655 \r\nTelegram: cctv_hub \r\nSkype: cctvhub \r\nEmail: sales@thecctvhub.com \r\nW: http://www.thecctvhub.com/ \r\n \r\nIf you do not wish to receive email from us again, please let us know by replying. \r\n \r\nregards, \r\nCCTV HUB',''),(1205,1,245,'8','Anthony',''),(1206,1,245,'9','Hughes',''),(1207,1,245,'4','(717) 660-2330',''),(1208,1,245,'3','tony19kilo@yahoo.com',''),(1209,1,245,'6','Looking to have new water heater installed.  Searching for honest and proficient company to assist.  Reviews look good, looking for quote.',''),(1210,1,246,'8','Eric',''),(1211,1,246,'9','Jones',''),(1212,1,246,'4','(416) 385-3200',''),(1213,1,246,'3','eric@talkwithwebvisitor.com',''),(1214,1,246,'6','Hey, this is Eric and I ran across mannplumbingandheating.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1215,1,247,'8','MichaelOxima',''),(1216,1,247,'9','MichaelOximaQW',''),(1217,1,247,'4','(017) 628-5603',''),(1218,1,247,'3','ignatovdormidont2823@yandex.ru',''),(1219,1,247,'6','#Hookahmagic \r\nМы всегда с Вами и стараемся нести только позитив и радость. \r\nИщите Нас в соцсетях,подписывайтесь и будьте в курсе последних топовых событий. \r\nСтрого 18+ \r\n \r\nКакой кальян купить новичку? \r\nЕсли это первая покупка, то лучше начать с более простых моделей. Это изделия со средней высотой (70 см) и одной насадкой. Количество труб влияет на работу устройства. Это будет трудная задача. \r\n \r\nОчень важно обращать внимание на материал шахты. Чем он прочнее, тем дольше прибор прослужит. Срок службы устройства минимум на 10 лет. \r\n \r\nhttps://h-magic.su/caesar \r\nРекомендуется обращать внимание на внутренний диаметр шахты. Он должен быть минимум 12 см. \r\n \r\nМожно рассмотреть также электронные изделия. Они компактные и простые в использовании. Безопасный дым. Его можно курить (парить) даже в общественных местах. Что касается его вкусовых качеств – они ничем не уступают традиционным устройствам. Какой электронный кальян купить лучше? Самый распространенный гаджет – площадь Sturbuzz.',''),(1220,1,248,'8','Andretusty',''),(1221,1,248,'9','AndretustyEH',''),(1222,1,248,'4','(541) 151-3358',''),(1223,1,248,'3','romanovnikitanii@mail.ru',''),(1224,1,248,'6','Лучшие адвокаты. Юридические консультации по телефону бесплатно.  Все виды юридических услуг. Более детально на сатйе: \r\n[url=http://jurliga.ligazakon.ua/info/company_vacancy/firm_11739.htm]ЮРИДИЧЕСКАЯ КОНСУЛЬТАЦИЯ ПО РЕГИСТРАЦИИ БИЗНЕСА[/url]',''),(1225,1,249,'8','Geraldine',''),(1226,1,249,'9','Coronado',''),(1227,1,249,'4','(250) 423-5324',''),(1228,1,249,'3','coronado.geraldine@gmail.com',''),(1229,1,249,'6','Stem cell therapy has proven itself to be one of the most effective treatments for COPD (Chronic Obstructive Pulmonary Disorder). IMC is the leader in stem cell therapies in Mexico. For more information on how we can treat COPD please visit:\r\nhttps://bit.ly/copd-integramedicalcenter',''),(1230,1,250,'8','Justin',''),(1231,1,250,'9','Poe',''),(1232,1,250,'4','(717) 446-3809',''),(1233,1,250,'3','triumphbonne71@yahoo.com',''),(1234,1,250,'6','Invoice 107747\r\n\r\nApprox. October 2019 I called Mann Plumbing for a Quote to dig up and repair a water main leak in my front lawn.  At the time, I already located the leak beside / under a set of concrete steps, and called PA One Call myself.   \r\n\r\nI\'ve received the above mentioned invoice for a $85.00 service call, however NO SERVICE was completed.  I REQUESTED A QUOTE.  After receiving your first invoice, I called your office, left messages, and spoke with someone in your office who said this would be re-classed a quote and not worry about it.  I was contacted today via text message, a very inappropriate way to conduct business by Kim Bair, stating that I\'d be sued by judgement if I didn\'t pay this erroneous invoice.  \r\n\r\nTo you I ask, please contact me to resolve this matter.   My call to PA One call precedes this invoice.   I have no worry whatsoever taking off work to defend these fictitious charges.  However, after I gather my facts, dates, receipts, call history and screenshot of Kim\'s threatening text message, I\'ll be filing a complaint against your BBB Accreditation below.\r\nRegards,\r\nJustin Poe\r\n   \r\ncc: sales@mannplumbingandheating.com',''),(1235,1,251,'8','Rachel',''),(1236,1,251,'9','Florent',''),(1237,1,251,'4','(326) 421-1751',''),(1238,1,251,'3','rachel.florent@videomarketingnow.xyz',''),(1239,1,251,'6','Hey, \r\n\r\nYou have a lot going on right now, but maybe we can help?\r\n\r\nWe make professional videos for businesses to put on their websites.\r\n\r\nSee examples of what we can do for you:\r\nhttps://www.videomarketingnow.xyz/success/?=mannplumbingandheating.com\r\n\r\nThese videos are helping businesses GROW right now, at a time when they need it most.\r\n\r\nRachel Florent\r\nCustom Video Specialist\r\n\r\n\r\n\r\n\r\n\r\n410 Santa Clara St. East, Unit 817	\r\nSan Jose,	CA 95113\r\n \r\nNo more video marketing:\r\nhttps://thevideonetwork.top/out.php/?site=mannplumbingandheating.com',''),(1240,1,252,'8','Lachlan',''),(1241,1,252,'9','Frederic',''),(1242,1,252,'4','(360) 875-4435',''),(1243,1,252,'3','lachlan@maxoutmedia.buzz',''),(1244,1,252,'6','Hello mannplumbingandheating.com,\r\n\r\nConfirm your email to receive payments:\r\nhttps://maxoutmedia.buzz/go/payments/\r\n\r\n\r\nThank you,\r\n\r\n\r\nLachlan',''),(1245,1,253,'8','Georgehop',''),(1246,1,253,'9','GeorgehopGS',''),(1247,1,253,'4','(762) 434-6785',''),(1248,1,253,'3','kornelijignatov4568@yandex.ru',''),(1249,1,253,'6','#Hookahmagic \r\nМы всегда с Вами и стараемся нести только позитив и радость. \r\nИщите Нас в соцсетях,подписывайтесь и будьте в курсе последних топовых событий. \r\nСтрого 18+ \r\n \r\nКальянный бренд Фараон давно завоевал сердца ценителей кальянной культуры вариативностью моделей кальянов, \r\nприемлемым качеством и низкой ценовой политикой. Именно эти факторы играют главную роль в истории его успеха. Не упускайте очевидную выгоду и вы! Заказывайте кальян Pharaon (Фараон) 2014 Сlick в интернет-магазине HookahMagic и оформляйте доставку в любой регион РФ. Мы гарантируем быструю доставку и высокое качество предоставляемой продукции. \r\n \r\nhttps://h-magic.su/hookahmagic \r\nУдачных вам покупок!',''),(1250,1,254,'8','Nicole',''),(1251,1,254,'9','Ritter',''),(1252,1,254,'4','(805) 372-1751',''),(1253,1,254,'3','nicole@alexadirectory.top',''),(1254,1,254,'6','Hey! \r\n\r\nHave you remembered to activate voice search for your business?\r\n\r\nActivate it here in 30 seconds:\r\n\r\nhttps://alexadirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\nWithout activation, customers may not be able to find mannplumbingandheating.com with voice searches on Google, Amazon Alexa or mobile phones.\r\n\r\nNicole Ritter\r\nVoice Activation Follow-up Specialist\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\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://alexadirectory.top/out.php?site=mannplumbingandheating.com',''),(1255,1,255,'8','John',''),(1256,1,255,'9','Goss',''),(1257,1,255,'4','(717) 816-3160',''),(1258,1,255,'3','jreedgoss@gmail.com',''),(1259,1,255,'6','Is your phone broken?  It answers then immediately tells me the \"mailbox number you are trying to reach is not on service\".   I am trying to report a leak that seems to have been left over for some work you did 6 August.  I just noticed it Monday.\r\n\r\nThanks.\r\n\r\nJohn',''),(1260,1,256,'8','Sales Team',''),(1261,1,256,'9','Team',''),(1262,1,256,'4','(817) 405-0866',''),(1263,1,256,'3','sales@totalsportsapparel.com',''),(1264,1,256,'6','Custom printed face masks and cotton face masks are made and shipped quickly by Total Sports Apparel. 3-ply and 2-ply. full-color logo/image printed in the center, on the side, or repeated all over the mask. \r\n\r\nSend your logo to get a free mock-up / virtual sample. Need 3 working days to make a real custom face mask sample. We will show you images for the sample, but if you need the sample on your hand, then you need to pay the shipping cost.\r\n \r\nWe need 1 week for up to 1,000 (after getting your written approval and payment), 2 weeks for 5,000, 4 weeks for 50,000, & 6 weeks for 100,000. DHL delivers in 8-10 days from Pakistan to USA and Europe. \r\nPlease tell us what cloth mask design you need, and we will make it.',''),(1265,1,257,'8','Vera',''),(1266,1,257,'9','Ligar',''),(1267,1,257,'4','(765) 772-2741',''),(1268,1,257,'3','vera.ligar@gmail.com',''),(1269,1,257,'6','Hi fellow entrepreneur,\r\n\r\nDid you know that 95% of people who try forex trading fail?\r\n\r\nYep. It’s the horrible truth. The main reasons why they fail are:-\r\n\r\n- They learn the free stuff straight off Google\r\n- They don’t know how to manage their risk\r\n- They expect a get rich quick ‘overnight success’\r\n\r\nThe amazing news is I’ve created a brand new masterclass video which shows you exactly how to solve all these problems - fast, easy and most importantly - for FREE!\r\n\r\nClick Here Right Now To See It.\r\nhttps://bit.ly/freedom-by-forex-masterclass\r\n\r\nI’ll see you over there.\r\n\r\nThanks,\r\n\r\nHither Mann\r\nFounder & CEO Fortune Academy\r\n\r\nP.S. No business should ever put all their eggs in one basket. This training will open your eyes to what’s possible in the world of FX trading and I\'m sure you will never look back.\r\n\r\nP.P.S. If you haven’t got the slightest clue about forex trading, don’t worry this is even better for you as I’ll be covering everything you need to know starting from scratch.\r\n--',''),(1270,1,258,'8','Devin',''),(1271,1,258,'9','Marshall',''),(1272,1,258,'4','(717) 404-4602',''),(1273,1,258,'3','Marshalldevinalexander@gmail.com',''),(1274,1,258,'6','Hello, my name is Devin Marshall. I am a plumbing mechanic. I am currently working at the McCleary Hill construction site in Hagerstown, Maryland. My company is in the process of completing phase 1. I was informed that your company will be working on phase 2 of the project. I would like to continue working on this project after my company completes phase 1. Do you have an open position for this project?\r\n\r\nHere is my resume https://my.indeed.com/p/devinm-uct3cjh\r\n\r\nPlease call me at 717-404-4602 as soon as possible to discuss this. You can also e-mail me at Marshalldevinalexander@gmail.com.\r\n\r\nThank you, \r\n\r\nI look forward to speaking with you. \r\n\r\n-Devin Marshall',''),(1275,1,259,'8','Anthonybip',''),(1276,1,259,'9','AnthonybipAS',''),(1277,1,259,'4','(481) 442-3752',''),(1278,1,259,'3','no-replyRondus@gmail.com',''),(1279,1,259,'6','Good day, Belarus is currently experiencing brutal detentions and beatings of civilians. If you want to help them, we have announced a collection of aid for victims of repression in Belarus \r\nhttps://www.facebook.com/story.php?story_fbid=1159447944427795&id=603891678',''),(1280,1,260,'8','JustinHah',''),(1281,1,260,'9','JustinHahLV',''),(1282,1,260,'4','(540) 806-0302',''),(1283,1,260,'3','starostindamir4291@yandex.ru',''),(1284,1,260,'6','Ищите Нас... \r\n \r\n#Hookahmagic \r\n \r\nВ настоящее время стало очень популярным курить кальяны. Это ему объяснение. Во-первых, кальян помогает снимать стресс. Во-вторых, люди, которые отказались от обычных сигарет или находятся в процессе отказа, используют кальян в качестве замены вредной привычки. \r\nПриобрести кальян, аксессуары, табак для кальяна дешево можно в специализированном магазине. Продавцы консультанты всегда помогут подобрать лучший вариант. Но не все специалисты смогут ответить на главные вопросы курильщика: «Какие виды кальяна бывают?», «Сколько можно курить по времени?», «Почему иногда болит голова от кальяна?» и так далее. Всё это будет описано ниже в статье. \r\nКакие бывают кальяны \r\nВ определенных барах персонал обычно начинают свой разговор с фразы: «Какой табак для кальяна вы бы хотели выбрать?». Но никогда не спрашивают какой кальян человек хотел бы покурить. Многие курильщики считают, что самое важное в таком процессе только лишь табак. Сами же кальяны обычно различают только по цвету и остальным внешним признакам. Курение могут испортить и другие факторы. \r\n \r\nhttps://h-magic.su/honey \r\n \r\nК таким можно отнести: \r\nБренд кальяна; \r\nМатериал изготовления; \r\nСпособ забивки; \r\nРазмер колбы. \r\n \r\nМы всегда с Вами и стараемся нести только позитив и радость. \r\nИщите Нас в соцсетях,подписывайтесь и будьте в курсе последних топовых событий. \r\nAmy,Tortuga,Alfa Hookah... \r\nСтрого 18+ \r\n \r\n[url=http://www.riaszto.com/2017/05/hello-world/]Всё о кальянах[/url] e103aeb',''),(1285,1,261,'8','JimmyStync',''),(1286,1,261,'9','JimmyStyncEU',''),(1287,1,261,'4','(545) 054-8527',''),(1288,1,261,'3','turbomavro@gmail.com',''),(1289,1,261,'6','The leader in short-term investing in the cryptocurrency market.   \r\nThe leader in payments for the affiliate program.   \r\n \r\n \r\nInvestment program: \r\n \r\nInvestment currency: BTC. \r\nThe investment period is 2 days. \r\nMinimum profit is 10% \r\n \r\nRegistration here:  https://bit.ly/3gr3l6q     \r\n \r\nGet + 10% every 2 days to your personal Bitcoin wallet in addition to your balance. \r\n \r\nFor example: invest 0.1 bitcoins today, in 2 days you will receive 0.11 bitcoins in your personal bitcoin wallet. \r\n \r\n \r\nThe best affiliate program - a real find for MLM agents   \r\n \r\n5% for the referral of the first level (direct registration) \r\n3% for the referral of the second level \r\n1% for the referral of the third level \r\n \r\nReferral bonuses are paid the next day after the referral donation. \r\nThe bonus goes to your BTC address the day after the novice\'s donation. \r\nAny reinvestment of participants, the leader receives a full bonus! \r\n \r\nRegistration here:  https://bit.ly/3gr3l6q ',''),(1290,1,262,'8','Max',''),(1291,1,262,'9','Williams',''),(1292,1,262,'4','(707) 706-0205',''),(1293,1,262,'3','Webrank03@gmail.com',''),(1294,1,262,'6','Hello And Good Day\r\nI am Max (Jitesh Chauhan), a Marketing Manager with a reputable online marketing company based in India.\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\nWe can place your website on top of the Natural Listings on Google, Yahoo, and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else, and we can prove it. We do not use \"link farms\" or \"black hat\" methods that Google and the other search engines frown upon and can use to de-list or ban your site. The techniques are proprietary, involving some valuable closely held trade secrets. Our prices are less than half of what other companies charge.\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\nIn order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\nFor any inquiry related to this, mail us.\r\nThanks and Regards',''),(1295,1,263,'8','J. Michael',''),(1296,1,263,'9','Ray',''),(1297,1,263,'4','(717) 729-2908',''),(1298,1,263,'3','jmr7750@gmail.com',''),(1299,1,263,'6','Drew visited my home today per my request concerning a plumbing issue. \r\n\r\nDrew proved to be knowledgeable and most important was his attitude and approach to customer service. I found him to be courteous, confident and I believe a true accent to your organization.',''),(1300,1,264,'8','Shiela',''),(1301,1,264,'9','Florez',''),(1302,1,264,'4','(347) 377-0878',''),(1303,1,264,'3','clients@kraftoutsourcing.com',''),(1304,1,264,'6','Good day!\r\n\r\nWe all know that 2020 is a year of great challenges and unprecedented change. The pandemic has left no business unscathed, devastating small and big-time retailers. \r\n\r\nIn times like these, adaptation is the key to survival. And this entails making online marketing a significant part of your game plan for success.  With this being said, this is the best time to position your business through our inbound/outbound services.\r\n\r\nWe can help you with lead generation, appointment setting, data mining, intel gathering, content writing, SMM and SEO, all for just $7/hour.\r\n\r\nLet us know what you need. We can make things happen. \r\n\r\nShiela Florez\r\nSenior Client Acquisition Agent\r\nhttps://www.kraftoutsourcing.com\r\nclients@kraftoutsourcing.com\r\n+1 347 377 0878 (New York)\r\n+63 945 576 5629 (Manila)',''),(1305,1,265,'8','JaysonSaf',''),(1306,1,265,'9','JaysonSafWI',''),(1307,1,265,'4','(411) 443-6741',''),(1308,1,265,'3','no-reply-86videos@outlook.com',''),(1309,1,265,'6','Good Day \r\n \r\nMy name is Jayson. Sorry for this cold email but I believe our video ad service would help your E-com business a lot. \r\n \r\nI\'d like to make you a stunning high converting video ad for your ecom brand. I own a videography studio here in China that produces high quality video ads for ecom brands in 5 days. \r\n \r\nWe source the product for you, film and edit all in 5 days. I believe you know the value of this extremely fast turnaround time in the E-com world. \r\n \r\nHere are the amazing reviews we got on Facebook: https://www.facebook.com/pg/86videos/reviews/ \r\n \r\nHere’s an amazing video we made in the pet niche:https://www.youtube.com/watch?v=tSpE2ASbw2Y \r\n \r\nWorkout Niche: https://www.youtube.com/watch?v=RiHkJSF1jL0 \r\n \r\nI hope you like our work. You can learn more about our service here: https://www.86vids.com \r\n \r\nIf you wanna work with us or just have a pleasant chat with me, simply message us on Facebook:https://www.facebook.com/86videos \r\n \r\n-Jayson',''),(1310,1,266,'8','Eric',''),(1311,1,266,'9','Jones',''),(1312,1,266,'4','(416) 385-3200',''),(1313,1,266,'3','eric@talkwithwebvisitor.com',''),(1314,1,266,'6','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with mannplumbingandheating.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out mannplumbingandheating.com.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1315,1,267,'8','Jeff',''),(1316,1,267,'9','grogg',''),(1317,1,267,'4','(717) 830-1063',''),(1318,1,267,'3','jeff9542020@hotmail.com',''),(1319,1,267,'6','I have a sewer issue. Just had it snaked out this past Sunday and was totally clear.  Now today it\'s clogged again.  I estimate it\'s about 25 feet from the house so I don\'t know if the line is collapsed or what. The borough was here today and they ran a camera up there end and put die in my line and nothing went to the main.  Do you give estimates .',''),(1320,1,268,'8','Jacklyn',''),(1321,1,268,'9','Shumack',''),(1322,1,268,'4','(905) 650-1914',''),(1323,1,268,'3','clients@rankpays.com',''),(1324,1,268,'6','Hi!\r\nWe analyzed your site mannplumbingandheating.com and found several errors. Errors were found in both external and internal site optimization.\r\nIf you just fix these errors, the site will significantly improve its position in the search results in Google, which will entail an increase in traffic, an influx of customers, and calls.\r\nDuring this period the share of online clients is growing significantly, and we have been promoting sites for several years. We apply our expertise and your site will grow!\r\nWith our unique performance-based model, if you don\'t rank you don\'t pay. \r\nTo learn more: https://www.rankpay.com/3406.html',''),(1325,1,269,'8','RobertDab',''),(1326,1,269,'9','RobertDabQR',''),(1327,1,269,'4','(168) 817-7022',''),(1328,1,269,'3','info@mannplumbingandheating.com',''),(1329,1,269,'6','Hi there \r\n \r\nWork out to a whole new level with our P-Knee™ power leg knee joint support!  60% OFF and FREE Worldwide Shipping \r\n \r\nOrder here: p-knee.online \r\n \r\nFREE Worldwide Shipping - TODAY ONLY! \r\n \r\nEnjoy, \r\n \r\nContact | Chambersburg, PA | Mann Plumbing &amp; Heating, LLC.',''),(1330,1,270,'8','Brian',''),(1331,1,270,'9','Miller',''),(1332,1,270,'4','(678) 302-1017',''),(1333,1,270,'3','brian@swiftestimation.net',''),(1334,1,270,'6','Hi,\r\n\r\nI hope you are doing well. It is to convey you that we provide services for Cost Estimation and Quantity Take-off with 98% accuracy and refund policy. Please let us know if you need any sort of estimation services regarding your projects. The quantities we provide are software based, therefore, it will be exact, accurate and the prices in our estimates are according to the area of the project (RS Means). Now, to increase the list of costumers, we offer 50% Discount on our services with no compromise on quality of work.\r\nAll you need to do is just send over the drawings, pictures or a PDF file of your proposed project, we will be able to give you a Quotation on the subject. And if you agree, we will make a detailed estimate. Feel free to contact me if you have any query. Thanks.',''),(1335,1,271,'8','panteleyegorin@yandex.com',''),(1336,1,271,'9','DavidinvomPI',''),(1337,1,271,'4','(631) 117-7552',''),(1338,1,271,'3','panteleyegorin@yandex.com',''),(1339,1,271,'6','http://whatsapplanding.is-great.org/ - chat bot for whatsapp',''),(1340,1,272,'8','Katie',''),(1341,1,272,'9','ODay',''),(1342,1,272,'4','(717) 253-4496',''),(1343,1,272,'3','klday1982@gmail.com',''),(1344,1,272,'6','We just bought a house and they have a mini split draining into the pan under the water heater. Seems the water just sits there even though the sellers claim there is a drain hole when we brought it up during inspection. Could someone come take a look and give ideas for a better way to handle this?\r\nThanks.',''),(1345,1,273,'8','JimmieSNili',''),(1346,1,273,'9','JimmieSNiliMJ',''),(1347,1,273,'4','(131) 601-8730',''),(1348,1,273,'3','yourmail@gmail.com',''),(1349,1,273,'6','Zfdgrgr grgrgr grhgrhr',''),(1350,1,274,'8','Hai',''),(1351,1,274,'9','Sills',''),(1352,1,274,'4','(604) 232-1232',''),(1353,1,274,'3','hai.sills11@hotmail.com',''),(1354,1,274,'6','have Moz Domain Authority 50+ for mannplumbingandheating.com or your money back\r\n\r\nRead more\r\nhttps://ghostdigital.co/domain-authority/',''),(1355,1,275,'8','Eric',''),(1356,1,275,'9','Jones',''),(1357,1,275,'4','(416) 385-3200',''),(1358,1,275,'3','eric@talkwithwebvisitor.com',''),(1359,1,275,'6','My name’s Eric and I just came across your website - mannplumbingandheating.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like mannplumbingandheating.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1360,1,276,'8','Pawel Pan',''),(1361,1,276,'9','Pawel Pan',''),(1362,1,276,'4','(015) 477-3751',''),(1363,1,276,'3','info@panufnik.pro',''),(1364,1,276,'6','All my life I have been out there for others. The brutal rape of my girlfriend left me in hell that I cannot get out off. Today I am paying the price for another mans crime. Please read my story. I am very sorry for this spam. I am in a possition where I am running out of options. Today all that I dream off are the mountains and the peace that comes with it. \r\nhttps://panufnik.pro/my-goals/ \r\nbest regards, Pawel \r\n \r\n3. Email for automatic responses. \r\ninfo@panufnik.pro',''),(1365,1,277,'8','Lindsay',''),(1366,1,277,'9','Harrison',''),(1367,1,277,'4','(805) 372-1751',''),(1368,1,277,'3','lindsay@topalexadirectory.top',''),(1369,1,277,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttp://topalexadirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\nLindsay\r\nVoice Activation Follow-up Specialist\r\nTop Alexa Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://topalexadirectory.top/out.php?site=mannplumbingandheating.com',''),(1370,1,278,'8','Eric',''),(1371,1,278,'9','Jones',''),(1372,1,278,'4','(416) 385-3200',''),(1373,1,278,'3','eric@talkwithwebvisitor.com',''),(1374,1,278,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1375,1,279,'8','Eric',''),(1376,1,279,'9','Jones',''),(1377,1,279,'4','(416) 385-3200',''),(1378,1,279,'3','eric@talkwithwebvisitor.com',''),(1379,1,279,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1380,1,280,'8','Mike Simpson',''),(1381,1,280,'9','Mike Simpson',''),(1382,1,280,'4','(634) 151-5348',''),(1383,1,280,'3','no-replySow@google.com',''),(1384,1,280,'6','Hеllо! \r\nIf you want to get ahead of your competition, have a higher Domain Authority score. Its just simple as that. \r\nWith our service you get Domain Authority above 50 points in just 30 days. \r\n \r\nThis service is guaranteed \r\n \r\nFor more information, check our service here \r\nhttps://www.monkeydigital.co/Get-Guaranteed-Domain-Authority-50/ \r\n \r\nthank you \r\nMike Simpson\r\n \r\nMonkey Digital \r\nsupport@monkeydigital.co',''),(1385,1,281,'8','Rosby',''),(1386,1,281,'9','Carr',''),(1387,1,281,'4','(717) 357-2862',''),(1388,1,281,'3','carrm07@gmail.com',''),(1389,1,281,'6','My water heater is no longer providing hot water. It stopped working a few days ago.',''),(1390,1,282,'8','Caitlyn',''),(1391,1,282,'9','Moats',''),(1392,1,282,'4','(240) 625-2380',''),(1393,1,282,'3','caitlyn_truax@yahoo.com',''),(1394,1,282,'6','Hello, we are looking to get an estimate on a new build in Greencastle. We are looking for both HVAC and plumbing and were told you would be a great person for the job! I was hoping if I provide you with a rough drawing, you could give us a rough estimate. If you could just let me know, thank you!',''),(1395,1,283,'8','DelorisKeele',''),(1396,1,283,'9','DelorisKeeleBV',''),(1397,1,283,'4','(250) 372-2617',''),(1398,1,283,'3','contact1@theonlinepublishers.com',''),(1399,1,283,'6','Hello, we are The Online Publishers (TOP) and want to introduce ourselves to you.  TOP is an established comprehensive global online hub.  We connect clients to expert freelancers in all facets of the world of digital marketing such as writers, journalists, bloggers, authors, advertisers, publishers, social media influencers, backlinks managers, Vloggers/video marketers and reviewers… A few of the many services we offer are content creation and placement, publishing, advertising, online translation, and social media management.  We also have two full online libraries, one of photographs and the other of eBooks and informative resources. \r\nSave money and time by using TOP services.  Rather than having to search for multiple providers of various tasks, we are a one-stop-shop.  We have all the services you will ever need right here.  For a complete list, check out our website https://www.theonlinepublishers.com \r\nTOP can help any business surge ahead of its competition and increase sales.  Join The Online Publishers today.',''),(1400,1,284,'8','Robert',''),(1401,1,284,'9','Crittenden',''),(1402,1,284,'4','(717) 372-2542',''),(1403,1,284,'3','fatville116@yahoo.com',''),(1404,1,284,'6','I would like to have someone come and check my bathroom shower the faucet is leaking water and the shower control handle is loose and will not tighten up.  Would like to have it repaired or replaced.  Thank You\r\n\r\nAddress\r\n\r\n116 Mont Alto Road \r\nFayetteville, Pa. 17222',''),(1405,1,285,'8','Ronald',''),(1406,1,285,'9','John',''),(1407,1,285,'4','(717) 377-5051',''),(1408,1,285,'3','johnrc@embarqmail.com',''),(1409,1,285,'6','I called to get copies of all repair invoices for Betty Wagner\'s (267 Briar lane) boiler so I could put with the other boiler info. I think they were sent to my phone instead of my email address. Please send to my email address (above) Thanks\r\nRon John',''),(1410,1,286,'8','Rachel',''),(1411,1,286,'9','Florent',''),(1412,1,286,'4','(326) 421-1751',''),(1413,1,286,'3','rachel.florent@videomarketingnow.xyz',''),(1414,1,286,'6','Hey, \r\n\r\nYou have a lot going on right now, but maybe we can help?\r\n\r\nWe make professional videos for businesses to put on their websites.\r\n\r\nSee examples of what we can do for you:\r\nhttps://www.videomarketingnow.xyz/success/?=mannplumbingandheating.com\r\n\r\nThese videos are helping businesses GROW right now, at a time when they need it most.\r\n\r\nRachel Florent\r\nCustom Video Specialist\r\n\r\n\r\n\r\n\r\n\r\n410 Santa Clara St. East, Unit 817	\r\nSan Jose,	CA 95113\r\n \r\nNo more video marketing:\r\nhttps://thevideonetwork.top/out.php/?site=mannplumbingandheating.com',''),(1415,1,287,'8','ArthurTit',''),(1416,1,287,'9','ArthurTitZG',''),(1417,1,287,'4','(488) 725-3184',''),(1418,1,287,'3','kurbatakifev1987957akp@inbox.ru',''),(1419,1,287,'6','Nvdfjhdficj efiuwdiwrhfduehfjei kfksdjaksdhsjfhwkjf https://mail.ru/?ddjfsjfuwfw',''),(1420,1,288,'8','David',''),(1421,1,288,'9','Stern',''),(1422,1,288,'4','(646) 597-9025',''),(1423,1,288,'3','david@explainervidscompany.com',''),(1424,1,288,'6','Do you need help explaining your business to customers? It\'s time to get serious about streamlining your pitch and leveraging your value points on your website and social media. \r\n\r\nHomepage videos have proven to have a great return on investment. \r\n\r\nTelling your story is all we do. \r\n\r\nHave you ever thought about adding an Explainer video?\r\n\r\nYou can smiply reply back to this email or email me directly at david@explainervidscompany.com or check out my website for some samples- http://explainervidscompany.com \r\n\r\n\r\n--David Stern',''),(1425,1,289,'8','Alison',''),(1426,1,289,'9','Daniels',''),(1427,1,289,'4','(000) 000-0000',''),(1428,1,289,'3','siteboost1@outlook.com',''),(1429,1,289,'6','Hi,\r\n\r\nI thought you may be interested in our services. \r\n\r\nWe can send thousands of interested people to your website daily.\r\nYour visitors will come from online publications in your EXACT niche.\r\nThis means super targeted advertising for your site.\r\n\r\nMost of our first time customers start with 10,000 visitors in one week for $74.99.\r\nWe also have great smaller and larger packages (some sold out for 1 month).\r\n\r\nSee how we can drive people to your business. \r\n\r\nHope to see you on our site.\r\n\r\nBest,\r\nAlison D.\r\nhttps://traffic-stampede.com',''),(1430,1,290,'8','Tim',''),(1431,1,290,'9','Miller',''),(1432,1,290,'4','(347) 766-9973',''),(1433,1,290,'3','tm.topestimators@gmail.com',''),(1434,1,290,'6','Hello,\r\n \r\nCan you become the best in the market without perfect cost estimation?\r\nBet, you can’t!\r\nThe best in the market gets all high-ticket clients.\r\nBecause they were never wrong in numbers.\r\nTop Estimators, Inc gives you precision.\r\nWith 15 years of experience, 98% accuracy, prompt delivery, reduced rates, customized spread sheets, marked up drawings, and proper plan zip codes.\r\nStill doubtful?\r\nGet a 40% write-off on the first estimate.\r\nSend plans or FTP site link and a quote will be in your inbox.\r\nReply for a free consultation.',''),(1435,1,291,'8','KhalidDaw',''),(1436,1,291,'9','KhalidDawAA',''),(1437,1,291,'4','(421) 736-5866',''),(1438,1,291,'3','wes.bart4@gmail.com',''),(1439,1,291,'6','Greetings, \r\n \r\nWe are brokers linked with high profile investors who are willing to; \r\n \r\nFund any company in any current project; \r\n \r\nFund a project/Investment of any Interest or choices; \r\n \r\nThey are privately seeking means of expanding their investment portfolio. Should you find interested in engaging us for more detailed discussion to forge ahead, We will be happy to share more insights. \r\n \r\nYours Sincerely \r\n \r\nKhalid \r\nTel +971-55-419-4623',''),(1440,1,292,'8','TommyFOORO',''),(1441,1,292,'9','TommyFOOROAZ',''),(1442,1,292,'4','(033) 381-5147',''),(1443,1,292,'3','tizracing@comune.at',''),(1444,1,292,'6','IСH HАBE GЕRАDЕ UM EINE WЕITERE AUSZАHLUNG VОN 7.415 EUR GЕBETЕN. \r\nhttps://758965euro.page.link/CHqm \r\nIСH KANN ЕS KAUM ЕRWARTEN, ЕS MIT MЕINER FREUNDIN ZU VERBRINGЕN. \r\nNEHMЕ IСH SIЕ ZUM ABENDЕSSЕN MIT? \r\nODER NEHMEN WIR UNS ЕINЕN TAG FRЕI UND GEHEN IN ЕIN SСHONES HОTEL АUF DEM LАND? \r\nhttps://856253euro.page.link/5Jau \r\nIСH HATTE NIЕ GEDAСHT, DАSS ICH SО EIN DILЕMMA HABEN WURDЕ https://28569euro.page.link/beo7 ABER ЕS MАСHT MIR NIСHTS АUS!',''),(1445,1,293,'8','Beth',''),(1446,1,293,'9','Stuart',''),(1447,1,293,'4','(000) 000-0000',''),(1448,1,293,'3','site_boost@netcourrier.com',''),(1449,1,293,'6','Hi,\r\n\r\nI thought you may be interested in our services. \r\n\r\nWe can send thousands of interested people to your website daily.\r\nYour visitors will come from online publications in your EXACT niche.\r\nThis means super targeted advertising for your site.\r\n\r\nPackages starting at just $54.99.\r\nWe also have great larger packages (some sold out for 1 month).\r\n\r\nHope to see you on our site.\r\n\r\nKind regards,\r\nBeth\r\nhttps://traffic-stampede.com',''),(1450,1,294,'8','Hi guy! I wаnt to suсk you оff аnd lоsе your virginity with уou: https://darknesstr.com/37om7',''),(1451,1,294,'9','Hi guy! I wаnt to suсk you оff аnd lоsе your virginity with уou: https://darknesstr.com/37om7',''),(1452,1,294,'4','(226) 008-5635',''),(1453,1,294,'3','lastfgt@gmail.com',''),(1454,1,294,'6','I аm 500 mеtеrs frоm yоu and I wаnt to fuck with уou: http://freeurlredirect.com/3d73n',''),(1455,1,295,'8','Pamelataw',''),(1456,1,295,'9','PamelatawRQ',''),(1457,1,295,'4','(280) 347-3687',''),(1458,1,295,'3','contact2@theonlinepublishers.com',''),(1459,1,295,'6','Grow Your Business with TOP Vlogger Experts \r\n \r\nHow would you like to have your company\'s story told in video clips?  What better way to do that than with a series of short videos?  Welcome to the world of vlogging.  Vlogging is essentially blogging, except it is in the form of videos instead of written text.  When you are a client of The Online Publishers (TOP) we can connect you with professionals who excel at this unique type of marketing.  TOP Combines Vlogging and Influencers Marketing to boost your online reputation. \r\n \r\nClients love being able to express the highlights of their company or region through videos.  A great digital marketing firm not only knows the ins and outs of creating vlogs but knows how and where to place them to gain the maximum exposure.  Allow the vlogging gurus at TOP to do these things for you. \r\n \r\nAnother key feature of vlogging that TOP is excellent at is using social media sites to boost the videos.  All exposure that your videos can obtain through social sites is great.  Our service providers can successfully accomplish this for you.  This is especially fantastic if you need to bolster your online reputation.  Vlogs are a perfect way to do that and our providers know how to get it done right.  Go online to http://www.theonlinepublishers.com/ now and ask our support team all about it.',''),(1460,1,296,'8','Nicole',''),(1461,1,296,'9','Dawson',''),(1462,1,296,'4','(888) 888-8888',''),(1463,1,296,'3','nick@send.sohbetlal.com',''),(1464,1,296,'6','I wanted to ask a question about your business.\r\n1) As a business owner, new laws are on your side - effective starting August 2019. Were you aware? \r\n\r\nSince that date you shouldn\'t be paying above 0.75% Credit Card Processing Fees. \r\n2) You\'re legally able to demand this new option. \r\n\r\nBottom Line: Your processor isn\'t telling you everything. Why are they hiding the lower fee options?\r\n\r\nWe represent merchants challenging their credit card processors. \r\n3) Merchants working with us demand to be switched to Unlimited Flat-Fee Processing.\r\n - Unlimited Flat-Fee Processing for $24.99 per month. \r\n\r\nThe new terminals make it easy. And it\'s UNLIMITED.\r\n4) Process any amount of cards for the same flat price each month.\r\nNo contracts. No surprises. No hidden fees.\r\nWe\'ll even start you off with a terminal at no cost.\r\n\r\nSeptember 2020 Limited Time Promotion:\r\nEmail back today to qualify:\r\n- Free Equipment (Maximum 2x Terminals).\r\n- No Contracts.\r\n- No Cancellation Fees.\r\n- Try Without Obligation.\r\n \r\n5) Email us back with a name and phone number where we can call you with more information. \r\n\r\n[REPLY TO THIS EMAIL]\r\nPlease reply to this email - send a quick message saying \"I\'m interested\" \r\nOn the run or hands full? You may click this link - a simple message is written for you:\r\nhttps://l.linklyhq.com/l/5udU\r\n\r\nBest regards,\r\nNicole Dawson',''),(1465,1,297,'8','Nicole',''),(1466,1,297,'9','Dawson',''),(1467,1,297,'4','(888) 888-8888',''),(1468,1,297,'3','nick@send.sohbetlal.com',''),(1469,1,297,'6','I wanted to ask a question about your business.\r\n1) As a business owner, new laws are on your side - effective starting August 2019. Were you aware? \r\n\r\nSince that date you shouldn\'t be paying above 0.75% Credit Card Processing Fees. \r\n2) You\'re legally able to demand this new option. \r\n\r\nBottom Line: Your processor isn\'t telling you everything. Why are they hiding the lower fee options?\r\n\r\nWe represent merchants challenging their credit card processors. \r\n3) Merchants working with us demand to be switched to Unlimited Flat-Fee Processing.\r\n - Unlimited Flat-Fee Processing for $24.99 per month. \r\n\r\nThe new terminals make it easy. And it\'s UNLIMITED.\r\n4) Process any amount of cards for the same flat price each month.\r\nNo contracts. No surprises. No hidden fees.\r\nWe\'ll even start you off with a terminal at no cost.\r\n\r\nSeptember 2020 Limited Time Promotion:\r\nEmail back today to qualify:\r\n- Free Equipment (Maximum 2x Terminals).\r\n- No Contracts.\r\n- No Cancellation Fees.\r\n- Try Without Obligation.\r\n \r\n5) Email us back with a name and phone number where we can call you with more information. \r\n\r\n[REPLY TO THIS EMAIL]\r\nPlease reply to this email - send a quick message saying \"I\'m interested\" \r\nOn the run or hands full? You may click this link - a simple message is written for you:\r\nhttps://l.linklyhq.com/l/5udU\r\n\r\nBest regards,\r\nNicole Dawson',''),(1470,1,298,'8','Francis',''),(1471,1,298,'9','Jamieson',''),(1472,1,298,'4','(805) 372-1751',''),(1473,1,298,'3','francis.jamieson@newalexabusinessdirectory.top',''),(1474,1,298,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://newalexabusinessdirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\n \r\n\r\n \r\nFrancis\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\n1 7 1 Passaic str eet, Garf eld NJ 0 7 0 2 6\r\n\r\nYou can skip future marketing messages here:\r\nhttps://newalexabusinessdirectory.top/out.php?site=mannplumbingandheating.com',''),(1475,1,299,'8','James Webster',''),(1476,1,299,'9','James Webster',''),(1477,1,299,'4','(427) 100-4650',''),(1478,1,299,'3','no-reply@hilkom-digital.de',''),(1479,1,299,'6','Hеllо! \r\nI have just checked mannplumbingandheating.com for the ranking keywords and seen that your SEO metrics could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(1480,1,300,'8','Teena',''),(1481,1,300,'9','Underwood',''),(1482,1,300,'4','(208) 237-7744',''),(1483,1,300,'3','underwood.teena@googlemail.com',''),(1484,1,300,'6','No charge promotion for your website here: http://bit.ly/post-free-ads-here',''),(1485,1,301,'8','Nicole',''),(1486,1,301,'9','Dawson',''),(1487,1,301,'4','(888) 888-8888',''),(1488,1,301,'3','nick@send.sohbetlal.com',''),(1489,1,301,'6','I wanted to ask a question about your business.\r\n1) As a business owner, new laws are on your side - effective starting August 2019. Were you aware? \r\n\r\nSince that date you shouldn\'t be paying above 0.75% Credit Card Processing Fees. \r\n2) You\'re legally able to demand this new option. \r\n\r\nBottom Line: Your processor isn\'t telling you everything. Why are they hiding the lower fee options?\r\n\r\nWe represent merchants challenging their credit card processors. \r\n3) Merchants working with us demand to be switched to Unlimited Flat-Fee Processing.\r\n - Unlimited Flat-Fee Processing for $24.99 per month. \r\n\r\nThe new terminals make it easy. And it\'s UNLIMITED.\r\n4) Process any amount of cards for the same flat price each month.\r\nNo contracts. No surprises. No hidden fees.\r\nWe\'ll even start you off with a terminal at no cost.\r\n\r\nSeptember 2020 Limited Time Promotion:\r\nEmail back today to qualify:\r\n- Free Equipment (Maximum 2x Terminals).\r\n- No Contracts.\r\n- No Cancellation Fees.\r\n- Try Without Obligation.\r\n \r\n5) Email us back with a name and phone number where we can call you with more information. \r\n\r\n[REPLY TO THIS EMAIL]\r\nPlease reply to this email - send a quick message saying \"I\'m interested\" \r\nOn the run or hands full? You may click this link - a simple message is written for you:\r\nhttps://l.linklyhq.com/l/5udU\r\n\r\nBest regards,\r\nNicole Dawson',''),(1490,1,302,'8','Nicole',''),(1491,1,302,'9','Dawson',''),(1492,1,302,'4','(888) 888-8888',''),(1493,1,302,'3','nick@send.sohbetlal.com',''),(1494,1,302,'6','I wanted to ask a question about your business.\r\n1) As a business owner, new laws are on your side - effective starting August 2019. Were you aware? \r\n\r\nSince that date you shouldn\'t be paying above 0.75% Credit Card Processing Fees. \r\n2) You\'re legally able to demand this new option. \r\n\r\nBottom Line: Your processor isn\'t telling you everything. Why are they hiding the lower fee options?\r\n\r\nWe represent merchants challenging their credit card processors. \r\n3) Merchants working with us demand to be switched to Unlimited Flat-Fee Processing.\r\n - Unlimited Flat-Fee Processing for $24.99 per month. \r\n\r\nThe new terminals make it easy. And it\'s UNLIMITED.\r\n4) Process any amount of cards for the same flat price each month.\r\nNo contracts. No surprises. No hidden fees.\r\nWe\'ll even start you off with a terminal at no cost.\r\n\r\nSeptember 2020 Limited Time Promotion:\r\nEmail back today to qualify:\r\n- Free Equipment (Maximum 2x Terminals).\r\n- No Contracts.\r\n- No Cancellation Fees.\r\n- Try Without Obligation.\r\n \r\n5) Email us back with a name and phone number - we can call you with more information. \r\n\r\n[REPLY TO THIS EMAIL]\r\nPlease reply to this email - send a quick message saying \"I\'m interested\" \r\nOn the run or hands full? You may click this link - a simple message is written for you:\r\nhttps://l.linklyhq.com/l/5udU\r\n\r\nBest regards,\r\nNicole Dawson',''),(1495,1,303,'8','Kathryn',''),(1496,1,303,'9','Blednick',''),(1497,1,303,'4','(717) 446-1907',''),(1498,1,303,'3','kblednick@gmail.com',''),(1499,1,303,'6','22 year old water heater leaking like a sieve with short lasting warm water.  Need replacement ASAP.  Can you help?   :-).  I have a 50 gallon water heater in the garage.  \r\n\r\nI live in Laurich Gems North, 30 West in Hamilton Tep right outside of Chbg.  Looking forward to hearing from you.  Thanks!',''),(1500,1,304,'8','Dev',''),(1501,1,304,'9','chand',''),(1502,1,304,'4','(985) 632-1478',''),(1503,1,304,'3','infomarketingwork.com@gmail.com',''),(1504,1,304,'6','Hello,\r\n\r\n\r\nI just wanted to check in and see if you are happy with your website right now or if there are things you’d like to change.\r\n\r\nDo you have any upgrades that you’ve been thinking about making, or possibly a redesign/rebuild?\r\n\r\nI have created some pretty amazing sites. My rates are very affordable. We also do Digital Marketing Services.\r\n\r\nLet me know what you think.\r\n\r\nPlease reply if you are interested so Share what’s app number or Skype ID for more discussion.\r\n\r\nThank you',''),(1505,1,305,'8','Ronald',''),(1506,1,305,'9','Butler',''),(1507,1,305,'4','(933) 044-2191',''),(1508,1,305,'3','butlerronaldd@gmail.com',''),(1509,1,305,'6','Hello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in top 10 rank. You know things of working; I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spot with guaranteed period.\r\n \r\nThere is no wondering that it is possible now cause, I have found out that there are few things need to be done for better performances (Some we Discuss, in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Publisher is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following structured markup data\r\n9. Website Speed Development (Both Mobile and Desktop) \r\n10.Off –Page SEO work\r\n\r\nWe will also work on those area ..\r\n\r\n1. 5XX status code Check\r\n2. 4XX status code check\r\n3. Title Tags\r\n \r\nTitle Tags Optimization,\r\nTitle Tags Length\r\nKeyword Optimization\r\n\r\n4. duplicate title tags\r\n5. duplicate content issues\r\n6. Internal broken links\r\n7. Crawl Errors (Webmaster Tool)\r\n8. DNS resolution issues (Hosting)\r\n9. incorrect URL formats\r\n10. Internal broken images\r\n11. duplicate meta descriptions\r\n12. Robots\r\n13. XML Sitemap Format Error\r\n14. XML Sitemap Optimization (incorrect pages - Redirection)\r\n15. WWW resolve issue\r\n16. viewport tag (Responsive)\r\n17.  HTML size optimization\r\n18. Cannonical Tags\r\n19. Https Redirection  for all pages\r\n20. broken canonical link\r\n21. multiple canonical URLs\r\n22. broken internal JavaScript and CSS files\r\n23. External Broken Links\r\n24. External Broken Images\r\n25. H Tag Optimization\r\n26. duplicate H1 and title tags\r\n27. too many on-page links\r\n28. don\'t have alt attributes\r\n29. low word count\r\n30. Nofollow Internal  Links\r\n31. Sitemap.xml not indicated in robots.txt\r\n32. Images are formatted as page link\r\n33. Pages should have more than 1 internal links\r\n34. orphaned pages\r\n35. Schema Mark up\r\n \r\nLots are pending……………..\r\n\r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spot in Google Search & your sales Increase.\r\nPlease give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n \r\nLooking forward\r\n \r\nRegards\r\n\r\nRonald Butler\r\n\r\nIf you did not wish to receive this, please reply with \"unsubscribe\" in the subject line.\r\n \r\nDisclaimer: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clearly mentioned the source mail-id of this mail and the subject lines and they are in no way misleading in any form. We have found your mail address through our own efforts on the web search and not through any illegal way. If you find this mail unsolicited, please reply with \"unsubscribe\" in the subject line and we will take care that you do not receive any further promotional mail.',''),(1510,1,306,'8','Mia',''),(1511,1,306,'9','Lopez',''),(1512,1,306,'4','(888) 888-8888',''),(1513,1,306,'3','mia-lopez@merchantpay.top',''),(1514,1,306,'6','During Covid, like most business owners you just want to survive through to 2021. In order for that to happen you need to save every dollar possible right? This is an honest question, would you continue with the high credit card processing fees if there was another way? \r\nNew laws are on your side. Test this newly released card processing model.\r\n - YOU WILL STILL BE ABLE TO ACCEPT ALL CREDIT/DEBIT.\r\n\r\n \r\nPlease just skim this email, 90 seconds - that\'s all I need.\r\nYou can look past all the information if you want - just send a phone number and we\'ll help.\r\n\r\n\r\n1) As a small business owner, recent State Laws are on your side. - Were you aware? \r\nNew state regulations now in effect, law was successfully passed in 46 states - effective since August 2019. \r\n\r\nSince that date you shouldn\'t be paying above 0.75% Credit Card Processing Fees. \r\n2) You\'re legally able to demand this new option. \r\n\r\nBottom Line: Your processor isn\'t telling you everything. Why are they hiding the lower fee options?\r\n\r\nWe represent merchants challenging their credit card processors. \r\n3) Merchants working with us demand to be switched to Unlimited Flat-Fee Processing.\r\n - Unlimited Flat-Fee Processing for $24.99 per month. \r\n\r\nThe new terminals make it easy. And it\'s UNLIMITED.\r\n4) Process any amount of cards for the same flat price each month.\r\nNo contracts. No surprises. No hidden fees.\r\nWe\'ll even start you off with a terminal at no cost.\r\n\r\nSeptember 2020 Limited Time Promotion:\r\nEmail back today to qualify:\r\n- Free Equipment (Maximum 2x Terminals).\r\n- No Contracts.\r\n- No Cancellation Fees.\r\n- Try Without Obligation.\r\n \r\n5) Email us back with a name and phone number where we can call you with more information. \r\n\r\n[REPLY TO THIS EMAIL]\r\nPlease reply to this email - send a quick message saying \"I\'m interested\" \r\nHands full? You may click this link - a simple message is pre-written for you:\r\n - https://l.linklyhq.com/l/7LuM\r\n\r\nBest regards,\r\nMia Lopez',''),(1515,1,307,'8','Mia',''),(1516,1,307,'9','Lopez',''),(1517,1,307,'4','(888) 888-8888',''),(1518,1,307,'3','mia-lopez@merchantpay.top',''),(1519,1,307,'6','During Covid, like most business owners you just want to survive through to 2021. In order for that to happen you need to save every dollar possible right? This is an honest question, would you continue with the high credit card processing fees if there was another way? \r\nNew laws are on your side. Test this newly released card processing model.\r\n - YOU WILL STILL BE ABLE TO ACCEPT ALL CREDIT/DEBIT.\r\n\r\n \r\nPlease just skim this email, 90 seconds - that\'s all I need.\r\nYou can look past all the information if you want - just send a phone number and we\'ll help.\r\n\r\n\r\n1) As a small business owner, recent State Laws are on your side. - Were you aware? \r\nNew state regulations now in effect, law was successfully passed in 46 states - effective since August 2019. \r\n\r\nSince that date you shouldn\'t be paying above 0.75% Credit Card Processing Fees. \r\n2) You\'re legally able to demand this new option. \r\n\r\nBottom Line: Your processor isn\'t telling you everything. Why are they hiding the lower fee options?\r\n\r\nWe represent merchants challenging their credit card processors. \r\n3) Merchants working with us demand to be switched to Unlimited Flat-Fee Processing.\r\n - Unlimited Flat-Fee Processing for $24.99 per month. \r\n\r\nThe new terminals make it easy. And it\'s UNLIMITED.\r\n4) Process any amount of cards for the same flat price each month.\r\nNo contracts. No surprises. No hidden fees.\r\nWe\'ll even start you off with a terminal at no cost.\r\n\r\nSeptember 2020 Limited Time Promotion:\r\nEmail back today to qualify:\r\n- Free Equipment (Maximum 2x Terminals).\r\n- No Contracts.\r\n- No Cancellation Fees.\r\n- Try Without Obligation.\r\n \r\n5) Email us back with a name and phone number where we can call you with more information. \r\n\r\n[REPLY TO THIS EMAIL]\r\nPlease reply to this email - send a quick message saying \"I\'m interested\" \r\nHands full? You may click this link - a simple message is pre-written for you:\r\n - https://l.linklyhq.com/l/7LuM\r\n\r\nBest regards,\r\nMia Lopez',''),(1520,1,308,'8','Thomas',''),(1521,1,308,'9','Gregory',''),(1522,1,308,'4','(301) 800-3176',''),(1523,1,308,'3','teg50886@gmail.com',''),(1524,1,308,'6','I am inquiring today to see if you are hiring an HVAC service technician. I have 3 years experience in the field and have a vast knowledge of electrical background as well. I would enjoy hearing from you soon to see if there are any openings within your company.',''),(1525,1,309,'8','Tom',''),(1526,1,309,'9','Hanson',''),(1527,1,309,'4','(518) 712-7953',''),(1528,1,309,'3','tom@designsmirk.com',''),(1529,1,309,'6','Hello,\r\n\r\nI am trying to get in touch with the staff member that oversees your website. Can you point me in the right direction?\r\n\r\nThanks!',''),(1530,1,310,'8','Annabelle',''),(1531,1,310,'9','Roer',''),(1532,1,310,'4','(918) 555-7500',''),(1533,1,310,'3','annabelle@merchantpay.top',''),(1534,1,310,'6','I have a quick question about working with your business. Like most business owners you just want to survive through to 2021. In order for that to happen you need to save every dollar possible right? This is an honest question, would you continue with the high credit card processing fees if there was another way?  New laws are on your side. Test this newly released card processing model this October -  just send a phone number and we\'ll call.\r\n\r\n$24.99/mo Flat Fee Credit Card Processing (Unlimited)\r\n\r\n1) As a small business owner accepting credit/debit, recently passed State Laws are on your side. - Were you aware? \r\nNew state regulations now in effect, the law was successfully passed in 46 states - effective since August 2019. \r\n\r\nSince that date you shouldn\'t be paying above 0.75% Credit Card Processing Fees. \r\n2) You\'re legally able to demand this new option. \r\n\r\nBottom Line: Your processor isn\'t telling you everything. Why are they hiding the lower fee options?\r\n\r\nWe represent merchants challenging their credit card processors. \r\n3) Merchants working with us demand to be switched to Unlimited Flat-Fee Processing.\r\n - Unlimited Flat-Fee Processing for $24.99 per month. \r\n\r\nThe new terminals make it easy. And it\'s UNLIMITED.\r\n4) Process any amount of cards for the same flat price each month.\r\nNo contracts. No surprises. No hidden fees.\r\nWe\'ll even start you off with a terminal at no cost.\r\n\r\nOctober 2020 Limited Time Promotion:\r\nEmail back today to qualify:\r\n- Paid-For Equipment (Maximum 2x Terminals).\r\n- No Contracts.\r\n- No Cancellation Fees.\r\n- Try Without Obligation.\r\n \r\n5) Email us back with a name and phone number where we can call you with more information. \r\n\r\n[REPLY TO THIS EMAIL]\r\nPlease reply to this email - send a quick message saying \"I\'m interested\" \r\nHands full? You may click this link - a simple message is pre-written for you:\r\n - https://l.linklyhq.com/l/7LuM\r\n\r\nBest regards,\r\nAnnabelle Roer',''),(1535,1,311,'8','Emely',''),(1536,1,311,'9','Haswell',''),(1537,1,311,'4','(450) 522-1415',''),(1538,1,311,'3','emely.haswell@yahoo.com',''),(1539,1,311,'6','Sick of paying big bucks for ads that suck? Now you can post your ad on 5000 ad sites and it\'ll cost you less than $40. Get unlimited traffic forever! \r\n\r\nTo get more info take a look at: http://bit.ly/endless-traffic-forever',''),(1540,1,312,'8','Annabelle',''),(1541,1,312,'9','Roer',''),(1542,1,312,'4','(918) 555-7500',''),(1543,1,312,'3','annabelle@merchantpay.top',''),(1544,1,312,'6','I have a quick question about working with your business. Like most business owners you just want to survive through to 2021. In order for that to happen you need to save every dollar possible right? This is an honest question, would you continue with the high credit card processing fees if there was another way?  New laws are on your side. Test this newly released card processing model this October -  just send a phone number and we\'ll call.\r\n\r\n$24.99/mo Flat Fee Credit Card Processing (Unlimited)\r\n\r\n1) As a small business owner accepting credit/debit, recently passed State Laws are on your side. - Were you aware? \r\nNew state regulations now in effect, the law was successfully passed in 46 states - effective since August 2019. \r\n\r\nSince that date you shouldn\'t be paying above 0.75% Credit Card Processing Fees. \r\n2) You\'re legally able to demand this new option. \r\n\r\nBottom Line: Your processor isn\'t telling you everything. Why are they hiding the lower fee options?\r\n\r\nWe represent merchants challenging their credit card processors. \r\n3) Merchants working with us demand to be switched to Unlimited Flat-Fee Processing.\r\n - Unlimited Flat-Fee Processing for $24.99 per month. \r\n\r\nThe new terminals make it easy. And it\'s UNLIMITED.\r\n4) Process any amount of cards for the same flat price each month.\r\nNo contracts. No surprises. No hidden fees.\r\nWe\'ll even start you off with a terminal at no cost.\r\n\r\nOctober 2020 Limited Time Promotion:\r\nEmail back today to qualify:\r\n- Paid-For Equipment (Maximum 2x Terminals).\r\n- No Contracts.\r\n- No Cancellation Fees.\r\n- Try Without Obligation.\r\n \r\n5) Email us back with a name and phone number where we can call you with more information. \r\n\r\n[REPLY TO THIS EMAIL]\r\nPlease reply to this email - send a quick message saying \"I\'m interested\" \r\nHands full? You may click this link - a simple message is pre-written for you:\r\n - https://l.linklyhq.com/l/7LuM\r\n\r\nBest regards,\r\nAnnabelle Roer',''),(1545,1,313,'8','Linda',''),(1546,1,313,'9','Anderson',''),(1547,1,313,'4','(213) 558-1566',''),(1548,1,313,'3','alison@videomarketingguru.club',''),(1549,1,313,'6','Hey, great site!\r\n\r\nHave you thought about adding a video in response to COVID-19?\r\n\r\nWe can make one for you: \r\nhttps://www.videovideovideomarketing.club/success/?=mannplumbingandheating.com\r\n\r\nCustomers are worried right now. A short video like this can make a big impact for your business in the long term. People will remember it!\r\n\r\nBe well,\r\nLinda\r\n\r\nP.S. Due to coronavirus, we have also lowered our prices by up to 55%. \r\n\r\n\r\n\r\n\r\n\r\n\r\n- This commercial message sent from PJLK Marketing LC\r\n410 E Santa Clara Street STE 817\r\nSan Jose, CA 95113\r\n\r\nTo unsubscribe click here:\r\nhttps://videovideovideomarketing.club/out.php/?site=mannplumbingandheating.com',''),(1550,1,314,'8','SarahPsync',''),(1551,1,314,'9','SarahPsyncVN',''),(1552,1,314,'4','(633) 085-8362',''),(1553,1,314,'3','feedbacktestkook@gmail.com',''),(1554,1,314,'6','Mediamatic helps to organize the WordPress Media Library into folders hierarchy easily using drag&drop interface.Manage thousands of media files and folders in your WordPress media library swiftly and smoothly! \r\nhttps://wordpress.org/plugins/mediamatic/',''),(1555,1,315,'8','Dave Stills',''),(1556,1,315,'9','Dave Stills',''),(1557,1,315,'4','(723) 220-6456',''),(1558,1,315,'3','d.stills@starkwoodmarketing.com',''),(1559,1,315,'6','Hey mannplumbingandheating.com its Dave Stills from StarkwoodMarketing. \r\n \r\nReal simple:  With the economy slowly returning to \"new normal\", now is the time to pull the trigger and restart marketing campaigns. \r\nmannplumbingandheating.com must be on the prowl to make-up lost revenue from the past few months of slowdown. \r\n \r\nStarkwoodMarketing offers white glove service by Americans. Get started on a conversion focused landing page, Our automated Linkedin marketing tool a try, or add explainer videos to your marketing portfolio. We additionally provide inbound call center and outbound cold calling services. \r\nCan we chat about restarting marketing campaigns? \r\n \r\nd.stills@starkwoodmarketing.com \r\n \r\nMy website is http://StarkWoodmarketing.com',''),(1560,1,316,'8','Steve',''),(1561,1,316,'9','Grace',''),(1562,1,316,'4','(717) 377-3172',''),(1563,1,316,'3','Thegrace78@gmail.com',''),(1564,1,316,'6','Looking for help with a leaking shower. Looks like it’s the cartridge. Cartridge is old model Moen. Need at least it replaced I’m guessing. There is access behind the shower. I can be contacted at the email or number above. \r\n\r\nThanks, \r\nSteve Grace',''),(1565,1,317,'8','France',''),(1566,1,317,'9','Santoro',''),(1567,1,317,'4','(870) 852-4901',''),(1568,1,317,'3','france.santoro@gmail.com',''),(1569,1,317,'6','Good afternoon, I was just taking a look at your website and submitted this message via your contact form. The \"contact us\" page on your site sends you these messages to your email account which is the reason you\'re reading through my message at this moment correct? That\'s the most important accomplishment with any type of online ad, getting people to actually READ your advertisement and that\'s exactly what I just accomplished with you! If you have an ad message you would like to blast out to millions of websites via their contact forms in the US or anywhere in the world send me a quick note now, I can even focus on particular niches and my costs are super low. Send a reply to: lorenzodaniel9137@gmail.com',''),(1570,1,318,'8','Mike Jones',''),(1571,1,318,'9','Mike Jones',''),(1572,1,318,'4','(075) 568-6844',''),(1573,1,318,'3','no-replySow@google.com',''),(1574,1,318,'6','Hi there \r\n \r\nIf you want to get ahead of your competition, have a higher Domain Authority score. Its just simple as that. \r\nWith our service you get Domain Authority above 50 points in just 30 days. \r\n \r\nThis service is guaranteed \r\n \r\nFor more information, check our service here \r\nhttps://www.monkeydigital.co/Get-Guaranteed-Domain-Authority-50/ \r\n \r\nN E W : \r\nDA60 is now available here \r\nhttps://www.monkeydigital.co/product/moz-da60-seo-plan/ \r\n \r\n \r\nthank you \r\nMike Jones\r\n \r\nMonkey Digital \r\nsupport@monkeydigital.co',''),(1575,1,319,'8','Eric',''),(1576,1,319,'9','Jones',''),(1577,1,319,'4','(416) 385-3200',''),(1578,1,319,'3','eric@talkwithwebvisitor.com',''),(1579,1,319,'6','My name’s Eric and I just found your site mannplumbingandheating.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE http://www.talkwithwebvisitors.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1580,1,320,'8','Shaun',''),(1581,1,320,'9','Graham',''),(1582,1,320,'4','(717) 552-6141',''),(1583,1,320,'3','shauningermany@hotmail.com',''),(1584,1,320,'6','Hello! I was wondering if I could get a quote for replacing a couple water shut off valves under my house along with replacing the heat tape I have. I am located in Shippensburg, PA. If this is possible, I would greatly appreciate it! I’ve been struggling with finding someone not only reliable to supply with with an estimate, but also finding someone willing to do the work. Thank you in advance!',''),(1585,1,321,'8','Alexander Korobchanskiy',''),(1586,1,321,'9','Alexander Korobchanskiy',''),(1587,1,321,'4','(427) 803-3073',''),(1588,1,321,'3','fourcornerleads@gmail.com',''),(1589,1,321,'6','Hello Fellow Marketer, \r\n \r\nI wanted to share with you an \r\namazing smart system that is making \r\na lot of money for it\'s members. \r\n \r\nTurn a one time $50 into 50K.. \r\n \r\nFor only $50 (One-Time payment) you get \r\naccess to a full suite of internet marketing \r\nand the best part you get paid $50 on every sale \r\nafter you qualify. \r\n \r\nSee you at the Top of our PRO members! \r\n \r\nhttp://freerotator.com/ro/?r=46&u=ak888 \r\n \r\n \r\nRegards, \r\nAlexander Korobchanskiy \r\nFounder,CEO| Online Profits Way',''),(1590,1,322,'8','Dev',''),(1591,1,322,'9','chand',''),(1592,1,322,'4','(985) 632-1478',''),(1593,1,322,'3','infomarketingwork.com@gmail.com',''),(1594,1,322,'6','Hello,\r\n\r\n\r\nI just wanted to check in and see if you are happy with your website right now or if there are things you’d like to change.\r\n\r\nDo you have any upgrades that you’ve been thinking about making, or possibly a redesign/rebuild?\r\n\r\nI have created some pretty amazing sites. My rates are very affordable. We also do Digital Marketing Services.\r\n\r\nLet me know what you think.\r\n\r\nPlease reply if you are interested so Share what’s app number or Skype ID for more discussion.\r\n\r\nThank you',''),(1595,1,323,'8','JamesSep',''),(1596,1,323,'9','JamesSepUM',''),(1597,1,323,'4','(402) 201-6316',''),(1598,1,323,'3','selibe@hotmail.com',''),(1599,1,323,'6','Hello! \r\n \r\nYou\'ve been hacked! \r\n \r\nNow we have all the information about you and your accounts: \r\n \r\n+ all your logins and passwords from all accounts in payment systems, social. networks, e-mail, messengers and other services (cookies from all your browsers, i.e. access without a login and password to any of your accounts) \r\n \r\n+ history of all your correspondence by e-mail, messengers and social. networks \r\n \r\n+ all files from your PC (text, photo, video and audio files) \r\n \r\nChanging your username and password will not help, we will hack you again. \r\n \r\nPay a ransom of $ 250 and you can sleep peacefully without worrying that all information about you and all your accounts, files and personal correspondence will not become public and will not fall into the hands of intruders. \r\n \r\nBitcoin wallet to which you want to transfer $ 250 1MaRdde6X7SGuoCdFNL2fmgpLomdx7peGC \r\n \r\nIf you do not pay until tomorrow evening, then we will sell all this information on the darknet, there is a huge demand for such information \r\n \r\nPay $ 250 and sleep well!',''),(1600,1,324,'8','Eric',''),(1601,1,324,'9','Jones',''),(1602,1,324,'4','(416) 385-3200',''),(1603,1,324,'3','eric@talkwithwebvisitor.com',''),(1604,1,324,'6','My name’s Eric and I just found your site mannplumbingandheating.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE http://www.talkwithwebvisitors.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1605,1,325,'8','RobertRar',''),(1606,1,325,'9','RobertRarAJ',''),(1607,1,325,'4','(037) 326-5511',''),(1608,1,325,'3','info@deoleodigitalpublishing.com',''),(1609,1,325,'6','HOW TO SAVE YOUR BUSINESS & YOUR LIFE DURING  THIS PANDEMIC? \r\n \r\nWatch the Official Trailer : https://youtu.be/hb7qJmAIb9M \r\n \r\nUse this link below to Download your E-book copy Now! (50%off! )@ https://www.tonydeoleo.com \r\n---------- \r\nAmazon : https://www.amazon.com/gp/aw/d/B08CG7DYKX/ref=tmm_kin_title_0?ie=UTF8&qid=&sr= \r\n \r\nTHE ART OF DEALING: \r\nBecoming a master casino dealer. https://www.amazon.com/dp/B08KYKG9MT/ref=cm_sw_r_wa_awdb_t1_KknGFbA7N0C1C.',''),(1610,1,326,'8','JamesSep',''),(1611,1,326,'9','JamesSepUM',''),(1612,1,326,'4','(628) 085-1154',''),(1613,1,326,'3','aaaa717@hotmail.com',''),(1614,1,326,'6','Hello! \r\n \r\nYou still have not paid the requested amount of $ 250. \r\n \r\nWe found very interesting in your hacked accounts information that will cost more than $ 3000 on the darknet. \r\n \r\nWe give you one last chance. You have 7 hours to translate the requested amount. \r\n \r\nIf you don\'t care who uses your data, then you can do nothing. \r\n \r\nBitcoin wallet to which you want to transfer $ 250 1MaRdde6X7SGuoCdFNL2fmgpLomdx7peGC',''),(1615,1,327,'8','mohavemohave https://www.samsung.com ib84t5mt',''),(1616,1,327,'9','mohavemohave https://www.samsung.com ib84t5mt',''),(1617,1,327,'4','(675) 316-1868',''),(1618,1,327,'3','kolesnikovakristinarpy@mail.ru',''),(1619,1,328,'8','Mohammed Khalid',''),(1620,1,328,'9','Mohammed Khalid',''),(1621,1,328,'4','(161) 130-8736',''),(1622,1,328,'3','wes.bart4@gmail.com',''),(1623,1,328,'6','Greetings, \r\n \r\nWe are brokers linked with high profile investors who are willing to; \r\n \r\nFund any company in any current project; \r\n \r\nFund a project/Investment of any Interest or choices; \r\n \r\nThey are privately seeking means of expanding their investment portfolio. Should you find interested in engaging us for more detailed discussion to forge ahead, We will be happy to share more insights. \r\n \r\nYours Sincerely \r\n \r\nMohammed Khalid \r\nTel +971-52943-4865 \r\nWhatsaap +971-55765-2746',''),(1624,1,329,'8','Kevin',''),(1625,1,329,'9','Elter',''),(1626,1,329,'4','(717) 729-2690',''),(1627,1,329,'3','kelter1591@comcast.net',''),(1628,1,329,'6','I just had the company that installed one of my units out to look for the noise I advised Jeff about. \r\n\r\n This company is advising its low on Freon and possible leak. Jeff advised pressures was fine using his gauges. \r\n\r\n This looks bad on your company when I’m looking to renew maintenance contract with you. \r\n\r\n Thanks Kevin.',''),(1629,1,330,'8','skyreveryleste',''),(1630,1,330,'9','skyreverylesteQL',''),(1631,1,330,'4','(437) 315-1105',''),(1632,1,330,'3','emiliya_belyayeva_81@mail.ru',''),(1633,1,330,'6','[url=https://www.skyrevery.com/private-jets/gulfstream-g600/]Gulfstream G600 Private Jet[/url]        -  more information on our website [url=https://skyrevery.com]skyrevery.com[/url] \r\n[url=https://skyrevery.com/]Private jet rental[/url] at SkyRevery allows you to use such valuable resource as time most efficiently. \r\nYou are the one who decides where and when your private jet will fly. It is possible to organize and perform a flight between any two civil airports worldwide round the clock. In airports, private jet passengers use special VIP terminals where airport formalities are minimized, and all handling is really fast – you come just 30 minutes before  the estimated time of the departure of the rented private jet. \r\nWhen you need [url=https://skyrevery.com/]private jet charter[/url] now, we can organise your flight with departure in 3 hours from confirmation.',''),(1634,1,331,'8','Linda Ray',''),(1635,1,331,'9','Linda Ray',''),(1636,1,331,'4','(404) 751-7745',''),(1637,1,331,'3','linda.ray@theremarketingguys.com',''),(1638,1,331,'6','I noticed that you are not running Google Remarketing on your website. \r\n \r\nThe most affordable advertising is marketing to previous web viewers who didn\'t convert. \r\n \r\nRemarketing via Google & Facebook ads means tracking and engaging these \'lost\' customers. \r\nThey were on your site once and may only need a reminder of your services and business. \r\n \r\nCan I help you grab these low hanging fruits? \r\n \r\nLinda Ray \r\nEmail - linda@theremarketingguys.com \r\nWebsite - http://www.theremarketingguys.com',''),(1639,1,332,'8','Lala',''),(1640,1,332,'9','Lala',''),(1641,1,332,'4','(446) 435-4433',''),(1642,1,332,'3','faqbill1@web.de',''),(1643,1,333,'8','Maryetta',''),(1644,1,333,'9','Maryetta',''),(1645,1,333,'4','(223) 743-7537',''),(1646,1,333,'3','teskedietlind@gmx.de',''),(1647,1,334,'8','Trina',''),(1648,1,334,'9','Trina',''),(1649,1,334,'4','(857) 206-8338',''),(1650,1,334,'3','teskedietlind@gmx.de',''),(1651,1,335,'8','Nicole',''),(1652,1,335,'9','Ritter',''),(1653,1,335,'4','(805) 372-1751',''),(1654,1,335,'3','nicole@alexadirectory.top',''),(1655,1,335,'6','Hey! \r\n\r\nHave you remembered to activate voice search for your business?\r\n\r\nActivate it here in 30 seconds:\r\n\r\nhttps://alexadirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\nWithout activation, customers may not be able to find mannplumbingandheating.com with voice searches on Google, Amazon Alexa or mobile phones.\r\n\r\nNicole Ritter\r\nVoice Activation Follow-up Specialist\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\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://alexadirectory.top/out.php?site=mannplumbingandheating.com',''),(1656,1,336,'8','Kenia',''),(1657,1,336,'9','DeLeon',''),(1658,1,336,'4','(717) 377-9529',''),(1659,1,336,'3','kenia_deleon96@hotmail.com',''),(1660,1,336,'6','Morning, \r\n\r\nYou guys have done work wonderful work with our HVAC system and now I’m inquiring about getting a titanium anode rod for my water heater. The water is smelling horrible... approximately how much is that going to be ? Thanks',''),(1661,1,337,'8','Lindsay',''),(1662,1,337,'9','Armer',''),(1663,1,337,'4','(902) 472-0061',''),(1664,1,337,'3','armer.lindsay@googlemail.com',''),(1665,1,337,'6','Ever wanted to push some competition site`s ranks down for not playing the game fair?\r\n\r\nNow you can:\r\nblackhat.to',''),(1666,1,338,'8','Clarissa',''),(1667,1,338,'9','Clarissa',''),(1668,1,338,'4','(332) 007-8441',''),(1669,1,338,'3','faqbill@seznam.cz',''),(1670,1,339,'8','Rheba',''),(1671,1,339,'9','Rheba',''),(1672,1,339,'4','(853) 114-1224',''),(1673,1,339,'3','faqbill@seznam.cz',''),(1674,1,340,'8','Eric',''),(1675,1,340,'9','Jones',''),(1676,1,340,'4','(416) 385-3200',''),(1677,1,340,'3','eric@talkwithwebtraffic.com',''),(1678,1,340,'6','My name’s Eric and I just found your site mannplumbingandheating.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Traffic – ==> https://www.talkwithwebtraffic.com for a live demo now.\r\n\r\nTalk With Web Traffic is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\n==> https://www.talkwithwebtraffic.com to discover what Talk With Web Traffic can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Traffic offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\n==> https://www.talkwithwebtraffic.com to try Talk With Web Traffic now.\r\n\r\nIf you\'d like to unsubscribe click here https://talkwithwebtraffic.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1679,1,341,'8','Pavel',''),(1680,1,341,'9','Pavel',''),(1681,1,341,'4','(754) 403-1225',''),(1682,1,341,'3','spo27031959@gmail.com',''),(1683,1,341,'6','Hello, how are you?',''),(1684,1,342,'8','Michelle',''),(1685,1,342,'9','Lindsay',''),(1686,1,342,'4','(555) 555-5555',''),(1687,1,342,'3','topdrop@fastest.cc',''),(1688,1,342,'6','Hi,\r\n\r\nI thought you may be interested.\r\n \r\nWe supply the best niche turnkey dropshipping stores out there.\r\nYou keep all of the profit. We are the designers this is all we do.\r\n\r\nFree hosting permanantly, domain and social media marketing materials. \r\n\r\nIf this sounds of interest please see our available sites at https://dropshippingincome.com\r\n\r\nThank you for your time and hope to see you there.\r\n\r\nBest,\r\nMichelle L.\r\nDSI',''),(1689,1,343,'8','Rachel',''),(1690,1,343,'9','Florent',''),(1691,1,343,'4','(326) 421-1751',''),(1692,1,343,'3','rachel.florent@videomarketingnow.xyz',''),(1693,1,343,'6','Hey, \r\n\r\nYou have a lot going on right now, but maybe we can help?\r\n\r\nWe make professional videos for businesses to put on their websites.\r\n\r\nSee examples of what we can do for you:\r\nhttps://www.videomarketingnow.xyz/success/?=mannplumbingandheating.com\r\n\r\nThese videos are helping businesses GROW right now, at a time when they need it most.\r\n\r\nRachel Florent\r\nCustom Video Specialist\r\n\r\n\r\n\r\n\r\n\r\n410 Santa Clara St. East, Unit 817	\r\nSan Jose,	CA 95113\r\n \r\nNo more video marketing:\r\nhttps://thevideonetwork.top/out.php/?site=mannplumbingandheating.com',''),(1694,1,344,'8','Michelle',''),(1695,1,344,'9','Michelle',''),(1696,1,344,'4','(101) 544-1002',''),(1697,1,344,'3','teskedietlind@gmx.de',''),(1698,1,345,'8','Corinna',''),(1699,1,345,'9','Corinna',''),(1700,1,345,'4','(867) 465-3741',''),(1701,1,345,'3','teskedietlind@gmx.de',''),(1702,1,346,'8','Madeleine',''),(1703,1,346,'9','Tijerina',''),(1704,1,346,'4','(423) 755-9691',''),(1705,1,346,'3','madeleine.tijerina@yahoo.com',''),(1706,1,346,'6','No more paying way too much money for expensive Google advertising! I\'ve got a method that charges only a small bit of cash and produces an almost indefinite volume of web visitors to your website\r\n\r\nTo get more info take a look at: http://bit.ly/no-cost-web-traffic',''),(1707,1,347,'8','PASSIVES EINKOMMEN VOR 9846 EUR IN DER WOCHE - DIE BESTE INVESTITIONSMOGLICHKEIT: http://wunkit.com/RQYkAA',''),(1708,1,347,'9','PASSIVES EINKOMMEN VOR 9846 EUR IN DER WOCHE - DIE BESTE INVESTITIONSMOGLICHKEIT: http://wunkit.com/RQYkAA',''),(1709,1,347,'4','(426) 075-5000',''),(1710,1,347,'3','brocchi@live.com',''),(1711,1,347,'6','ONLINE VERDIENEN VON 9767 EURO AM TAG - SIE WERDEN ALLE IHRE KREDITE IN EINER WOCHE ZURUCKZAHLEN: https://gmy.su/:yHbub',''),(1712,1,348,'8','Jefferssonsweers https://apple.com 8219788',''),(1713,1,348,'9','Jefferssonsweers https://apple.com 8219788',''),(1714,1,348,'4','(301) 812-3518',''),(1715,1,348,'3','ruf@hwow.ml',''),(1716,1,349,'8','Matthewral',''),(1717,1,349,'9','MatthewralOY',''),(1718,1,349,'4','(051) 380-2217',''),(1719,1,349,'3','hunterp112@msn.com',''),(1720,1,349,'6','Black Lives Matter - Donate \r\nWhy We Need Your Support \r\nAs our ecosystem grows our financial support system must grow as well. \r\nWe need funds to continue our radically accessible commitment to providing healthy food from Black owned businesses, paid childcare at every event and having ASL interpreters at our monthly gatherings. \r\nOn average, our monthly open houses attract 3000+ people and costs us $100,000. \r\nWe need to raise $ 350,000 by November 3 to help thousands of black people in a very bad situation right now, we will be glad if you support us. \r\nFor quick payment, we use bitcoin wallets. You can transfer donation to this Bitcoin wallet - 12B6eCHqPVQeR8wyTTMoWQqNeTpxqeq7wk \r\nSecondly, we need resources to make sure we have the emotional and spiritual capacity to show up and move forward in the movement as our highest selves. \r\nSupporting the work of our healers including renting space weekly for Black people to process racial stress through group discussion, dance, and visual art and \r\naffirming our humanity & love for each other by starting our week with joy via #BlackJoySunday (all while creating accessibility by offering free childcare) \r\nis essential in sustaining our well-being and activism. Our weekly healing spaces cost on average $30,150/month. \r\nWe need to raise $ 350,000 by November 3 to help thousands of black people in a very bad situation right now, we will be glad if you support us. \r\nFor quick payment, we use bitcoin wallets. You can transfer donation to this Bitcoin wallet - 12B6eCHqPVQeR8wyTTMoWQqNeTpxqeq7wk \r\nLastly and most importantly, we need funds to support the emerging leadership of our ecosystem move through the world. \r\nAs Black people in a city facing the ravages of displacement and economic disinvestment, it’s difficult to do the work of liberating your community while figuring out how to pay rent and feed yourself. \r\nWe need your help to ensure that lack of gas money or health insurance doesn’t stop the work from moving forward. Supporting our emerging leadership, including our rapid response, \r\norganized resistance, healing and logistics teams, reimbursements and stipends costs on average $20,700/month.',''),(1721,1,350,'8','Guadalupe',''),(1722,1,350,'9','Guadalupe',''),(1723,1,350,'4','(260) 403-5290',''),(1724,1,350,'3','info@mannplumbingandheating.com',''),(1725,1,350,'6','Hey there \r\n \r\nBuy all styles of Ray-Ban Sunglasses only 19.99 dollars.  If interested, please visit our site: framesoutlet.online\r\n \r\n \r\nKind Regards, \r\n \r\nContact | Chambersburg, PA | Mann Plumbing & Heating, LLC.',''),(1726,1,351,'8','Dorothy',''),(1727,1,351,'9','Amy',''),(1728,1,351,'4','(717) 414-3504',''),(1729,1,351,'3','totozpal@comcast.net',''),(1730,1,351,'6','I just bought a 1/2 of a duplex, the neighbor is telling me the water pipes break and flood her kitchen. That it\'s happened 4 times. That I can\'t take a shower when it\'s 43° and a high wind. She has the main water and gas coming into her basement and then to my side. I need help!! I\'m at 710 Fairground Ave in Chambersburg. 717) 414-3504.',''),(1731,1,352,'8','JacobBeack',''),(1732,1,352,'9','JacobBeackJG',''),(1733,1,352,'4','(284) 238-0811',''),(1734,1,352,'3','morhlon@yahoo.com',''),(1735,1,352,'6','Invest $ 15,000 in affiliate marketing and get $ 45,000 in a month \r\nHey. \r\nYes, you heard right. \r\nYou don\'t have to do anything. \r\nWe will do all the work for you. \r\nYou only need to invest and wait one month to receive payments. \r\nhttps://blockchain.com/btc/payment_request?address=18gaWYjABVFJ9PhG1hCqjh5FjWBrkQVuwD&amount=1.14&message=invest_in_affiliate_marketing_at_300%_per_month \r\nWe have been engaged in affiliate marketing for many years and decided to attract investments to work in the development of three more areas of our activity. \r\n \r\nYou can only invest one amount because this is the best option for earning super profits in affiliate marketing. \r\nWe give a 100% guarantee that you will receive your profit on time. \r\nhttps://blockchain.com/btc/payment_request?address=18gaWYjABVFJ9PhG1hCqjh5FjWBrkQVuwD&amount=1.14&message=invest_in_affiliate_marketing_at_300%_per_month \r\nAfter you make an investment by clicking on the link, exactly in a month your profit in the amount of 300% will be returned to your wallet from which you made the transfer to our system. \r\n \r\nThe payment is made in one time. \r\nIf you want to receive such a profit every month, then you need to invest every month. \r\nhttps://blockchain.com/btc/payment_request?address=18gaWYjABVFJ9PhG1hCqjh5FjWBrkQVuwD&amount=1.14&message=invest_in_affiliate_marketing_at_300%_per_month \r\nThere are almost two months left before the New Year, during which time you will have time to invest twice and get $ 75,000 in net profit.',''),(1736,1,353,'8','Lynne',''),(1737,1,353,'9','Wenrick',''),(1738,1,353,'4','(717) 375-2049',''),(1739,1,353,'3','lwenrick@comcast.net',''),(1740,1,353,'6','Interested in estimate to replace 35 year old oil boiler with new oil or propane boiler. \r\nThanks',''),(1741,1,354,'8','Eric',''),(1742,1,354,'9','Jones',''),(1743,1,354,'4','(416) 385-3200',''),(1744,1,354,'3','eric@talkwithwebvisitor.com',''),(1745,1,354,'6','Hi, Eric here with a quick thought about your website mannplumbingandheating.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1746,1,355,'8','Donald',''),(1747,1,355,'9','Donald',''),(1748,1,355,'4','(024) 023-0177',''),(1749,1,355,'3','spo.27031959@gmail.com',''),(1750,1,355,'6','Hello, how are you? \r\n \r\nRegards, Donald. \r\nhttp://www.abrakatabra.com',''),(1751,1,356,'8','James Macduff',''),(1752,1,356,'9','James Macduff',''),(1753,1,356,'4','(226) 818-6111',''),(1754,1,356,'3','no-reply@hilkom-digital.de',''),(1755,1,356,'6','Hеllо! \r\nI have just checked mannplumbingandheating.com for the ranking keywords and seen that your SEO metrics could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(1756,1,357,'8','PASSIVES EINKOMMEN IM INTERNET VON 6858 EURO AM TAG - KEINE BERUFLICHEN FAHIGKEITEN: https://8569euro.page.link/QczvTfkHSsngKjhE6',''),(1757,1,357,'9','PASSIVES EINKOMMEN IM INTERNET VON 6858 EURO AM TAG - KEINE BERUFLICHEN FAHIGKEITEN: https://8569euro.page.link/QczvTfkHSsngKjhE6',''),(1758,1,357,'4','(533) 760-4606',''),(1759,1,357,'3','mejias1226@gmail.com',''),(1760,1,357,'6','ONLINE VERDIENEN VOR 6958 EURO IN DER WOCHE - DER BESTE WEG, UM ONLINE GELD ZU VERDIENEN: https://2539euro.page.link/REZ2sF8GYwBBPVbdA',''),(1761,1,358,'8','Eric',''),(1762,1,358,'9','Jones',''),(1763,1,358,'4','(416) 385-3200',''),(1764,1,358,'3','eric@talkwithwebvisitor.com',''),(1765,1,358,'6','Hi, Eric here with a quick thought about your website mannplumbingandheating.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://www.talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://www.talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1766,1,359,'8','Since  the  whole  world is now  going   online,   JeffArno  invited  people  to test  a new online   platform that  earns  more than   $1,200 per  day  through  crypto   trading. < If possible,   convert  to   local  currency.\r\n 1 https://fondkrc.page.link/XNrR72c8Gv7z1WhM9',''),(1767,1,359,'9','Since  the  whole  world is now  going   online,   JeffArno  invited  people  to test  a new online   platform that  earns  more than   $1,200 per  day  through  crypto   trading. < If possible,   convert  to   local  currency.\r\n 1 https://fondkrc.page.link/XNrR72c8Gv7z1WhM9',''),(1768,1,359,'4','(133) 867-5605',''),(1769,1,359,'3','sergio_tv@hotmail.com',''),(1770,1,359,'6','He  already   shared  this   news on social  networks   and  those  who   believed and   tried   the  platform started  writing letters  to  him.\r\n   https://thepaymentisimmediately.page.link/dtytnMKZ3UpYuW7f7',''),(1771,1,360,'8','PatrickIsoca',''),(1772,1,360,'9','PatrickIsocaGQ',''),(1773,1,360,'4','(865) 315-3628',''),(1774,1,360,'3','iiquidmerman@yahoo.com',''),(1775,1,360,'6','Hey. \r\n \r\nI have more than $ 15,000 passive income per week on cloud mining \r\n \r\nI only invested once and now my passive income is about $ 2400 per day https://links.wtf/JUZD \r\n \r\nPayments to my wallet come every day https://ecuadortenisclub.com/3kd5l \r\n \r\nIf interested, you can also start making money this way http://freeurlredirect.com/3py9s \r\n \r\nThe number of cloud miners is limited, hurry up to take the right step to success https://jtbtigers.com/3kcxy',''),(1776,1,361,'8','Kelly',''),(1777,1,361,'9','Andrews',''),(1778,1,361,'4','(201) 201-2012',''),(1779,1,361,'3','kellyandrewsmkt@gmail.com',''),(1780,1,361,'6','Hey\r\n\r\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I\'ve forwarded it to a few of my contacts who I think could benefit from your services.\r\n\r\nWhen I was looking at your website, though, I noticed a slight issue re: your SEO that I thought you might not be aware of. It\'s a relatively simple fix. Would you like me to write it up so that you can share it with your web team? If this is a priority, I can also get on a call.\r\n\r\nRegards\r\nKelly Andrews',''),(1781,1,362,'8','Mike Watson',''),(1782,1,362,'9','Mike Watson',''),(1783,1,362,'4','(225) 457-6438',''),(1784,1,362,'3','no-replySow@google.com',''),(1785,1,362,'6','Hi there \r\n \r\nIf you want to get ahead of your competition, have a higher Domain Authority score. Its just simple as that. \r\nWith our service you get Domain Authority above 50 points in just 30 days. \r\n \r\nThis service is guaranteed \r\n \r\nFor more information, check our service here \r\nhttps://www.monkeydigital.co/Get-Guaranteed-Domain-Authority-50/ \r\n \r\nN E W : \r\nDA60 is now available here \r\nhttps://www.monkeydigital.co/product/moz-da60-seo-plan/ \r\n \r\n \r\nthank you \r\nMike Watson\r\n \r\nMonkey Digital \r\nsupport@monkeydigital.co',''),(1786,1,363,'8','Stacy Williams',''),(1787,1,363,'9','Stacy Williams',''),(1788,1,363,'4','(675) 126-8517',''),(1789,1,363,'3','stacy@productsupply.net',''),(1790,1,363,'6','Hello, \r\n \r\nAre you interested in wholesale / at home Covid-19 Rapid Antibody Test Kits? \r\nThese kits are ideal for home, office, schools, churches, spas, gyms, chiropractors, dentists, hotels, and more. \r\n \r\n \r\nWe have available: \r\n \r\n- Covid-19 Rapid Antibody Tests \r\n- Minimum order size is 1 box= 25 kits \r\n- Simple to use, made for Home, Office, School use \r\n- Affordable & Accurate \r\n- 4 Simple Steps! \r\n- FDA Authorized \r\n- Results back, privately in 10-15 minutes \r\n- Self administer the test \r\n- We are based in the US and ship out orders every day \r\n \r\n \r\n \r\nOur tests make it possible to provide quick, accurate and affordable clinical results to all members of your community. \r\n \r\n \r\nMinimum order size is only 1 box= 25 kits.  We offer bulk wholesale rates - let us know how many you would like? \r\n \r\nPlease reply back stacy@productsupply.net  with the quantity needed, and the best contact phone number to call you \r\n \r\n \r\nThank you ! \r\n \r\n \r\nStacy Williams \r\nC Rapid Test Results \r\nRegional Marketing Manager \r\nstacy@productsupply.net',''),(1791,1,364,'8','Nicole',''),(1792,1,364,'9','Ritter',''),(1793,1,364,'4','(805) 372-1751',''),(1794,1,364,'3','nicole@alexadirectory.top',''),(1795,1,364,'6','Hey! \r\n\r\nHave you remembered to activate voice search for your business?\r\n\r\nActivate it here in 30 seconds:\r\n\r\nhttps://alexadirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\nWithout activation, customers may not be able to find mannplumbingandheating.com with voice searches on Google, Amazon Alexa or mobile phones.\r\n\r\nNicole Ritter\r\nVoice Activation Follow-up Specialist\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\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://alexadirectory.top/out.php?site=mannplumbingandheating.com',''),(1796,1,365,'8','Eric',''),(1797,1,365,'9','Jones',''),(1798,1,365,'4','(416) 385-3200',''),(1799,1,365,'3','eric@talkwithwebvisitor.com',''),(1800,1,365,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1801,1,366,'8','Thomasodoks',''),(1802,1,366,'9','ThomasodoksWO',''),(1803,1,366,'4','(354) 833-0307',''),(1804,1,366,'3','tima.goncharov.95@mail.ru',''),(1805,1,366,'6','Как перевести деньги со счета киевстар на карту \r\n \r\n[url=https://mobi-dengi.com/перевод-денег.html]ПЕРЕВОД С ВОДАФОНА НА КАРТУ[/url]',''),(1806,1,367,'8','Latashia',''),(1807,1,367,'9','Ceja',''),(1808,1,367,'4','(608) 963-5025',''),(1809,1,367,'3','ceja.latashia@gmail.com',''),(1810,1,367,'6','Trafficize is the brand new software that siphons free buyer traffic using only ONE LINK.\r\n\r\nThe creators of this product, found an easy way to get over 4,833 clicks, in the span of 30 days...making them $14,738 in net profits just from ONE simple campaign...\r\n\r\nAll they needed to do was just to paste this traffic ‘link’ into their websites and social platforms and they started seeing amazing autopilot income.\r\n==>>> https://geekboy.co/trafficize/\r\n\r\nIt’s not too shabby considering all they needed to do was copy and paste a simple link…\r\n\r\nThe best part about this is you will have other people do all the hard work - while your traffic ‘link’ keeps bringing in buyers traffic for you on complete autopilot.\r\n\r\nAnyone - including YOU can do this. \r\n\r\nNo product required\r\nNo technical skills required\r\nNo further investment\r\n==>>> https://geekboy.co/trafficize/\r\n\r\nI installed this ONE link onto my sites...\r\n\r\nAnd because of that, I’m making more money on my campaigns and get way more leads than ever before.\r\n\r\nYou can do the same - BUT HURRY, Trafficize is only available at a one-time fee during the launch.\r\n\r\nAvoid paying monthly fees, and get Trafficize and my bonuses by acting now\r\n==>>> https://geekboy.co/trafficize/\r\n\r\n\r\nBest wishes,\r\nGeekBoy Team\r\n\r\n\r\n\r\nP.S: remember, even if you decide to cancel for any reason, I will let you keep all my bonuses so there is no risk in signing up to try this out.\r\n\r\n\r\n\r\n\r\nUnsubscribe Here >> https://geekboy.co/unsubscribe',''),(1811,1,368,'8','Karen',''),(1812,1,368,'9','Marshall',''),(1813,1,368,'4','(717) 263-3176',''),(1814,1,368,'3','Marshallkarens@gmail.com',''),(1815,1,368,'6','Do you install walk-in tubs in existing bathrooms?',''),(1816,1,369,'8','Sergiotelty',''),(1817,1,369,'9','SergioteltyFU',''),(1818,1,369,'4','(102) 317-2058',''),(1819,1,369,'3','doal15@hotmail.com',''),(1820,1,369,'6','I will do 961 DA 65-96 SEO Links for Top rankings on Google 2021. \r\n \r\nTier 1 - 31 SEO links DA 75-96 \r\n \r\nTier 2 - 930 SEO links DA 75-96 \r\n \r\nThese links are really effective for Page 1 rankings and Top 3 Positions and all are Google Compliant. \r\n \r\nhttp://asq.kr/yf0aT95T7Rzth \r\n \r\nPanda Penguin Hummingbird Safe \r\n \r\nImproves the Metrics of your Website like Trust flow and Citations \r\n \r\nEnables your Website to rank for any top Keywords \r\n \r\nProven Results, worked well for 100+ Websites tested this year. \r\n \r\nhttp://freeurlredirect.com/3rnhr \r\n \r\n+ High quality backlinks \r\n+ Safe on latest algorithm (2020 updated) \r\n+ Full reports (.txt) \r\n+ White hat and Extremely Safe method \r\n+ According to latest google updated 2020 \r\n+ Google Loves the High DA Bcklinks \r\n+ 100% Google Safe \r\n+ Full Verified Backlinks \r\n+ Rankings and Get More Authority \r\n \r\nhttp://xsle.net/3oat0',''),(1821,1,370,'8','brad',''),(1822,1,370,'9','mazurek',''),(1823,1,370,'4','(484) 650-5011',''),(1824,1,370,'3','bm@zurek-consulting.com',''),(1825,1,370,'6','Hello!\r\n\r\nMy name is Brad Mazurek and I noticed that Mann Plumbing and heating could easily rank higher on Google and you are missing out on lots of customers…\r\n\r\nThere is a tool used by big brands like AirBnB and Adidas, that is VERY easy to use and is guaranteed to get your business ranked higher on google which means more customers…\r\n\r\nI don’t want to sell you anything but it might be worth checking out?\r\n\r\nWorst that could happen, is it doesn’t work, but they’re so confident it will, they’ll give you a free 10 day trial (no credit card required)\r\n\r\nhttps://bit.ly/3lb29Hy\r\n\r\nThat’s it! Just wanted to share this with you so check them out.\r\n\r\nKeep going and lots of success to you!\r\n\r\nSincerely,\r\n\r\nBrad Mazurek',''),(1826,1,371,'8','Diksrak',''),(1827,1,371,'9','DiksrakTD',''),(1828,1,371,'4','(826) 572-5573',''),(1829,1,371,'3','fah.igor@yandex.ru',''),(1830,1,371,'6','https://jakjon.com/\r\n \r\nНовый рейтинг казино онлайн с быстрой моментальной выплатой и супер большой отдачей. \r\nhttps://jakjon.com/\r\n \r\nNew online casino rating with fast instant payouts and super big returns.',''),(1831,1,372,'8','Read   how to make money   to  ordinary  people   in   quarantine!\r\n   https://trafffik.page.link/7XSStSeMUxHiVERv6',''),(1832,1,372,'9','Read   how to make money   to  ordinary  people   in   quarantine!\r\n   https://trafffik.page.link/7XSStSeMUxHiVERv6',''),(1833,1,372,'4','(471) 768-5368',''),(1834,1,372,'3','shaniyah1332@gmail.com',''),(1835,1,372,'6','Click here  for   the   full  article  and free system  access!  Click here  for the   full article and\r\n 1 https://paymentofearnings.page.link/7XBLj9sMXEXUiLwW6',''),(1836,1,373,'8','Robert',''),(1837,1,373,'9','Hamsher',''),(1838,1,373,'4','(717) 658-5571',''),(1839,1,373,'3','rbhamsher@gmail.com',''),(1840,1,373,'6','Need an estimate on a new water heater and installation.',''),(1841,1,374,'8','Jim',''),(1842,1,374,'9','Stratton',''),(1843,1,374,'4','(213) 558-6156',''),(1844,1,374,'3','jim.stratton@bouncebackmailers.com',''),(1845,1,374,'6','Dear Colleague:\r\n\r\n\r\nDid you know that over 90% of your website visitors\r\nDO NOT call you or fill out a request form on your site?\r\n\r\nWhy?\r\n\r\nBecause they are not-ready-to-meet.\r\n\r\nBut they ARE interested in what you sell - and sooner or later most of them will buy from somebody.\r\n\r\nNow you identify many of these \"anonymous prospects\" by their home address and connect with them until they are ready-to-meet and ready-to-buy.\r\n\r\nThe new technology is called BounceBack.\r\n\r\nWe have a FREE REPORT which shows how to get more prospects, appointments and sales using this technology.\r\n\r\nYou can request it here: \r\n\r\nhttps://datamatch.top/data/?=mannplumbingandheating.com\r\n\r\nSincerely,\r\n\r\nJim Stratton\r\n\r\nBounceBack\r\n\r\n\r\n\r\n\r\n\r\n410 East Santa Clara Street Suite 824        \r\nSan Jose, CA 95113\r\n \r\nTo unsubscribe click here:\r\nhttps://datamatch.top/out.php/?site=mannplumbingandheating.com',''),(1846,1,375,'8','Francistig',''),(1847,1,375,'9','FrancistigXL',''),(1848,1,375,'4','(575) 541-5771',''),(1849,1,375,'3','mtn@rank60.com',''),(1850,1,375,'6','One Secret way to make your business stand out is to buy Google map reviews for your business in order to get more trust from potential clients. \r\nSee different plans at  https://rank60.com/boost-domain-authority/ \r\n \r\nOther services include \r\n \r\n \r\n*Facebook Likes \r\n*Instagram Followers \r\n*Linkedin followers \r\n*Google 1st page ranking \r\n*Youtube subscribers \r\n*Pinterest followers \r\n*Facebook reviews \r\n*Quora upvotes \r\n*.edu .gov Backlinks \r\n \r\nWhatsapp \r\n+14108445345',''),(1851,1,376,'8','Tara',''),(1852,1,376,'9','Piguenit',''),(1853,1,376,'4','(954) 839-8684',''),(1854,1,376,'3','no-contact@no-email.com',''),(1855,1,376,'6','It happens all the time. You try and try. You pour time and money into it, and you barely see any results.I’m not talking about slot machines. I’m talking about search rankings. No matter how many backlinks you build or content you publish, your website won\'t rank. The missing part is technical SEO.\r\n\r\n\r\nFor more information:https://bit.ly/3kjqNnW',''),(1856,1,377,'8','Peter Fitzgerald',''),(1857,1,377,'9','Peter Fitzgerald',''),(1858,1,377,'4','(085) 116-1682',''),(1859,1,377,'3','no-replyWat@gmail.com',''),(1860,1,377,'6','Hi! \r\n \r\nTired of investing in mannplumbingandheating.com without any outcome in ranks results ?? \r\n \r\nYou will never rank high while having a slow website, no matter how many agencies you hire to SEO your site. \r\nLet us make your website score between 90 to 100/100 in google developer speed score and see how your website ranks will increase instantly. \r\n \r\nThis service is guaranteed \r\n \r\nFor more information, check our service here \r\nhttps://speed-seo.net/product/google-speed/ \r\n \r\n \r\nthank you \r\nPeter Fitzgerald\r\n \r\nSpeed SEO Digital \r\nsupport@speed-seo.net',''),(1861,1,378,'8','Eric',''),(1862,1,378,'9','Jones',''),(1863,1,378,'4','(555) 555-1212',''),(1864,1,378,'3','ericjonesonline@outlook.com',''),(1865,1,378,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1866,1,379,'8','Olivia',''),(1867,1,379,'9','Pointon',''),(1868,1,379,'4','(804) 536-5631',''),(1869,1,379,'3','avaolivia2747@gmail.com',''),(1870,1,379,'6','Hi,\r\n\r\nWe\'d like to introduce to you our video creation service which we feel may be beneficial for you and your site mannplumbingandheating.com.\r\n\r\nCheck out a few of our existing videos here:\r\n1. A video on Covid-19 which was a blog post/article turned into video format: https://www.youtube.com/watch?v=TaMaDwX7tBU\r\n2. A product review for Japanese teapots, including product images: https://www.youtube.com/watch?v=VqjToeQ6KOc\r\n3. Promotional video for Japanese Matcha tea: https://www.youtube.com/watch?v=y3nEeQoTtOE\r\n\r\nAll of our videos are made with stock footage in a similar format as the above examples and we have voice over artists with US/UK/Australian accents.\r\n\r\n- We can convert one of your online articles or blog posts into video format, as many people prefer to watch a video as opposed to reading a page or document.\r\n- We can explain your business, service or product.\r\n- We can also educate people - these videos are great at educating the viewer on something such as the facts or history of a subject.\r\n- They can be used for Social Media advertising, such as Facebook Ads.\r\n\r\nOur prices are as follows depending on video length:\r\n0-1 minutes = $159\r\n1-2 minutes = $269\r\n2-3 minutes = $379\r\n\r\n*All prices above are in USD and include a custom video, full script and a voice over.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to get in touch.\r\nIf you are not interested, simply delete this message and we won\'t contact you again.\r\n\r\nKind Regards,\r\nOlivia',''),(1871,1,380,'8','A lot   of  things happen   in the financial  world,  but no   story   is  more   important   than   a   coronavirus that   destroys  not so  much the health  of people as  the   global economy!\r\n 1 https://thepaymentisimmediately.page.link/pHAn87mY44sQhEhH8',''),(1872,1,380,'9','A lot   of  things happen   in the financial  world,  but no   story   is  more   important   than   a   coronavirus that   destroys  not so  much the health  of people as  the   global economy!\r\n 1 https://thepaymentisimmediately.page.link/pHAn87mY44sQhEhH8',''),(1873,1,380,'4','(524) 670-6756',''),(1874,1,380,'3','lionh3art47@gmail.com',''),(1875,1,380,'6','All  I  know is   my   bank   account  keeps  on   growing bigger  and I   barely   have to do  any work… Try  it for   yourself:\r\n   https://paymentofdividends.page.link/ceM4Au8kPenapGHv7',''),(1876,1,381,'8','Lindsay',''),(1877,1,381,'9','Johnson',''),(1878,1,381,'4','(302) 323-5706',''),(1879,1,381,'3','lindsayjohnson0086@gmail.com',''),(1880,1,381,'6','Hi,\r\n\r\nHow are you doing? I am reaching to offer a simple 3 step process of guest post on your website.\r\n\r\n1. I will send you some interesting topic ideas for a guest post\r\n2. You will choose one topic out of those topic ideas\r\n3. I will then send you a high- quality article on the topic chosen by you\r\n\r\nI would just expect you to give me a do-follow backlink within the main article. So, shall we start with step 1?\r\n\r\nBest,\r\n\r\nLindsay Johnson',''),(1881,1,382,'8','Annabelle',''),(1882,1,382,'9','DeRaegan',''),(1883,1,382,'4','(888) 888-8888',''),(1884,1,382,'3','annabelle@axles.top',''),(1885,1,382,'6','I\'m sending you a message from your website. I wanted to ask a question about your business and the credit card processing fees you pay every month. You shouldn\'t be paying 1.5% to 2.5% in Credit Card Processing Fees anymore. New laws are on your side.\r\n\r\nYour processor isn\'t telling you everything. Why are they hiding the lower fee options?\r\n\r\nMerchants working with us are switching to our Unlimited Flat-Fee Processing for only $24.99 per month. \r\n\r\nWe make it easy. And UNLIMITED.\r\nProcess any amount of cards for the same flat price each month.\r\nNo contracts. No surprises. No hidden fees.\r\nWe\'ll even start you off with a terminal at no cost.\r\n\r\nNovember 2020 Limited Time Promotion:\r\nEmail us  today to qualify:\r\n- Free Equipment (2x Terminals).\r\n- No Contracts.\r\n- No Cancellation Fees.\r\n- Try Without Obligation.\r\n \r\nGive us a phone number where we can call you with more information. \r\n\r\nReply to this email or send a quick message saying \"I\'m interested\" by clicking this link:\r\nhttps://l.linklyhq.com/l/5udU\r\n\r\nBest regards,\r\nAnnabelle DeRaegan',''),(1886,1,383,'8','Annabelle',''),(1887,1,383,'9','DeRaegan',''),(1888,1,383,'4','(888) 888-8888',''),(1889,1,383,'3','annabelle@axles.top',''),(1890,1,383,'6','I\'m sending you a message from your website. I wanted to ask a question about your business and the credit card processing fees you pay every month. You shouldn\'t be paying 1.5% to 2.5% in Credit Card Processing Fees anymore. New laws are on your side.\r\n\r\nYour processor isn\'t telling you everything. Why are they hiding the lower fee options?\r\n\r\nMerchants working with us are switching to our Unlimited Flat-Fee Processing for only $24.99 per month. \r\n\r\nWe make it easy. And UNLIMITED.\r\nProcess any amount of cards for the same flat price each month.\r\nNo contracts. No surprises. No hidden fees.\r\nWe\'ll even start you off with a terminal at no cost.\r\n\r\nNovember 2020 Limited Time Promotion:\r\nEmail us  today to qualify:\r\n- Free Equipment (2x Terminals).\r\n- No Contracts.\r\n- No Cancellation Fees.\r\n- Try Without Obligation.\r\n \r\nGive us a phone number where we can call you with more information. \r\n\r\nReply to this email or send a quick message saying \"I\'m interested\" by clicking this link:\r\nhttps://l.linklyhq.com/l/5udU\r\n\r\nBest regards,\r\nAnnabelle DeRaegan',''),(1891,1,384,'8','П о з д р а в л я е м !   В а м   п о д а р о ч н ы й   л о т е р е й н ы й   б и л е т !   Ж е л а е м   в а м  п о б е д ы !   О т к р ы т ь   б и л е т :  www.tinyurl.com/Bypeteld SVWVE1632569NFDAW',''),(1892,1,384,'9','П о з д р а в л я е м !   В а м   п о д а р о ч н ы й   л о т е р е й н ы й   б и л е т !   Ж е л а е м   в а м  п о б е д ы !   О т к р ы т ь   б и л е т :  www.tinyurl.com/Bypeteld SVWVE1632569NFDAW',''),(1893,1,384,'4','(803) 652-7427',''),(1894,1,384,'3','lera-yakovlevaca5003@mail.ru',''),(1895,1,384,'6','Д а р и м    В а м   э л ек т р о н н ы й   б и л е т   Г о с Л о т о .   И с п ы т а й т е   у д а ч у !   З а б е р и т е   в а ш   б и л е т :  www.tinyurl.com/Bypeteld SVWVE1632569MTGJNF',''),(1896,1,385,'8','Brian',''),(1897,1,385,'9','WRIGHT Eng',''),(1898,1,385,'4','(303) 800-6251',''),(1899,1,385,'3','sales1@wexxastrology.com',''),(1900,1,385,'6','Dear Madam, Dear Sir In case of your interest, we can create an absolutely accurate and highly detailed Natal Chart, Compatibility Of Partners, and One-Year Forecasts of Events reports for you and your loved ones for the lowest prices on the market. Please visit our site https://wexxastrology.com for more information. We will be delighted to hear from you. Have a great day. Best regards WEXX Astrological Studio Team, https://wexxastrology.com',''),(1901,1,386,'8','Rachel',''),(1902,1,386,'9','Florent',''),(1903,1,386,'4','(326) 421-1751',''),(1904,1,386,'3','rachel.florent@videomarketingnow.xyz',''),(1905,1,386,'6','Hey, \r\n\r\nYou have a lot going on right now, but maybe we can help?\r\n\r\nWe make professional videos for businesses to put on their websites.\r\n\r\nSee examples of what we can do for you:\r\nhttps://www.videomarketingnow.xyz/success/?=mannplumbingandheating.com\r\n\r\nThese videos are helping businesses GROW right now, at a time when they need it most.\r\n\r\nRachel Florent\r\nCustom Video Specialist\r\n\r\n\r\n\r\n\r\n\r\n410 Santa Clara St. East, Unit 817	\r\nSan Jose,	CA 95113\r\n \r\nNo more video marketing:\r\nhttps://thevideonetwork.top/out.php/?site=mannplumbingandheating.com',''),(1906,1,387,'8','Sneha',''),(1907,1,387,'9','Sonam',''),(1908,1,387,'4','(707) 706-0205',''),(1909,1,387,'3','Webrank06@gmail.com',''),(1910,1,387,'6','Hello And Good Day\r\nI am Sneha Sonam a Marketing Manager with a reputable online marketing company based in India.\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\nWe can place your website on top of the Natural Listings on Google, Yahoo, and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else, and we can prove it. We do not use \"link farms\" or \"black hat\" methods that Google and the other search engines frown upon and can use to de-list or ban your site. The techniques are proprietary, involving some valuable closely held trade secrets. Our prices are less than half of what other companies charge.\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\nIn order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\nThanks and Regards',''),(1911,1,388,'8','Premium Office apps, extra cloud storage https://login.live.com/',''),(1912,1,388,'9','Premium Office apps, extra cloud storage https://login.live.com/',''),(1913,1,388,'4','(607) 680-0118',''),(1914,1,388,'3','aromatizacia@yandex.com',''),(1915,1,389,'8','Patricia',''),(1916,1,389,'9','Elnicki',''),(1917,1,389,'4','(717) 401-0714',''),(1918,1,389,'3','pelnicki222@gmail.com',''),(1919,1,389,'6','Hi- we have a small length of ductwork running from a duct in the floor of our downstairs bathroom to the basement below.  Our dog peed in the floor duct and the urine corroded a small area of metal duct both inside the vent and in the elbow underneath the vent. We have tried everything to get her to stop peeing near on or near this vent, but long story short- not working.  When she pees in the bathroom and I don\'t have a towel down because the floor is slanted a little it goes straight into the vent and now onto my washer and dryer below.  Would this be something you could fix or replace?  None of the ductwork is hidden- you can see and access it quite easily in the basement.  We\'ve been wrapping everything in duct tape in the meantime.',''),(1920,1,390,'8','Annabelle',''),(1921,1,390,'9','Ray',''),(1922,1,390,'4','(877) 555-2000',''),(1923,1,390,'3','zerofeeccp@gmail.com',''),(1924,1,390,'6','I\'m sending you a message from your website. I wanted to ask a question about your business and the credit card processing fees you pay every month. You shouldn\'t be paying 1.5% to 2.5% in Credit Card Processing Fees anymore. New laws are on your side.\r\n\r\nYour processor isn\'t telling you everything. Why are they hiding the lower fee options?\r\n\r\nMerchants working with us are switching to our Unlimited Flat-Fee Processing for only $24.99 per month. \r\n\r\nWe make it easy. And UNLIMITED.\r\nProcess any amount of cards for the same flat price each month.\r\nNo contracts. No surprises. No hidden fees.\r\nWe\'ll even start you off with a terminal at no cost.\r\n\r\nNovember 2020 Limited Time Promotion:\r\nEmail us  today to qualify:\r\n- Free Equipment (2x Terminals).\r\n- No Contracts.\r\n- No Cancellation Fees.\r\n- Try Without Obligation.\r\n \r\nGive us a phone number where we can call you with more information. \r\n\r\nReply to this email or send a quick message saying \"I\'m interested\" by clicking this link:\r\nhttps://l.linklyhq.com/l/9Lzs\r\n\r\nBest regards,\r\nAnnabelle',''),(1925,1,391,'8','Annabelle',''),(1926,1,391,'9','Ray',''),(1927,1,391,'4','(877) 555-2000',''),(1928,1,391,'3','zerofeeccp@gmail.com',''),(1929,1,391,'6','I\'m sending you a message from your website. I wanted to ask a question about your business and the credit card processing fees you pay every month. You shouldn\'t be paying 1.5% to 2.5% in Credit Card Processing Fees anymore. New laws are on your side.\r\n\r\nYour processor isn\'t telling you everything. Why are they hiding the lower fee options?\r\n\r\nMerchants working with us are switching to our Unlimited Flat-Fee Processing for only $24.99 per month. \r\n\r\nWe make it easy. And UNLIMITED.\r\nProcess any amount of cards for the same flat price each month.\r\nNo contracts. No surprises. No hidden fees.\r\nWe\'ll even start you off with a terminal at no cost.\r\n\r\nNovember 2020 Limited Time Promotion:\r\nEmail us  today to qualify:\r\n- Free Equipment (2x Terminals).\r\n- No Contracts.\r\n- No Cancellation Fees.\r\n- Try Without Obligation.\r\n \r\nGive us a phone number where we can call you with more information. \r\n\r\nReply to this email or send a quick message saying \"I\'m interested\" by clicking this link:\r\nhttps://l.linklyhq.com/l/9Lzs\r\n\r\nBest regards,\r\nAnnabelle',''),(1930,1,392,'8','Eric',''),(1931,1,392,'9','Jones',''),(1932,1,392,'4','(555) 555-1212',''),(1933,1,392,'3','ericjonesonline@outlook.com',''),(1934,1,392,'6','Hi, Eric here with a quick thought about your website mannplumbingandheating.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1935,1,393,'8','Eric',''),(1936,1,393,'9','Jones',''),(1937,1,393,'4','(555) 555-1212',''),(1938,1,393,'3','ericjonesonline@outlook.com',''),(1939,1,393,'6','Hi, Eric here with a quick thought about your website mannplumbingandheating.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://www.talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://www.talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(1940,1,394,'8','Hwa',''),(1941,1,394,'9','Lively',''),(1942,1,394,'4','(519) 820-2093',''),(1943,1,394,'3','lively.hwa@googlemail.com',''),(1944,1,394,'6','Hi there\r\n\r\nIf you want to get ahead of your competition then you must have a higher Domain Authority score for your website. Its just as simple as that. With our service your mannplumbingandheating.com DA score will get above 50 points in just 30 days.\r\n\r\nThis service is guaranteed\r\n\r\nFor more information, check our service here\r\nhttps://speed-seo.net/product/moz-da50-seo-plan/\r\n\r\n\r\nthank you\r\nSpeed SEO Digital Team\r\nsupport@speed-seo.net',''),(1945,1,395,'8','Raymond',''),(1946,1,395,'9','Willey',''),(1947,1,395,'4','(717) 404-8429',''),(1948,1,395,'3','rawilley108@comcast.net',''),(1949,1,395,'6','I need a hot water heater replaced. Do you all do payment plans?',''),(1950,1,396,'8','Willie',''),(1951,1,396,'9','Hallen',''),(1952,1,396,'4','(206) 592-2242',''),(1953,1,396,'3','willie.hallen@gmail.com',''),(1954,1,396,'6','Interested in advertising that costs less than $40 every month and delivers thousands of people who are ready to buy directly to your website? Have a look at: http://bit.ly/buy-visitors-4-your-site',''),(1955,1,397,'8','Francis',''),(1956,1,397,'9','Jamieson',''),(1957,1,397,'4','(805) 372-1751',''),(1958,1,397,'3','francis.jamieson@newalexabusinessdirectory.top',''),(1959,1,397,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://newalexabusinessdirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\n \r\n\r\n \r\nFrancis\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\n1 7 1 Passaic str eet, Garf eld NJ 0 7 0 2 6\r\n\r\nYou can skip future marketing messages here:\r\nhttps://newalexabusinessdirectory.top/out.php?site=mannplumbingandheating.com',''),(1960,1,398,'8','Stephen',''),(1961,1,398,'9','M.',''),(1962,1,398,'4','(810) 244-0753',''),(1963,1,398,'3','adi@ndmails.com',''),(1964,1,398,'6','Just wanted to ask if you would be interested in getting external help with graphic design? We do all design work like banners, advertisements, photo edits, logos, flyers, etc. for a fixed monthly fee. \r\n\r\nWe don\'t charge for each task. What kind of work do you need on a regular basis? Let me know and I\'ll share my portfolio with you.',''),(1965,1,399,'8','Ronaldlen',''),(1966,1,399,'9','RonaldlenRL',''),(1967,1,399,'4','(728) 157-1686',''),(1968,1,399,'3','brunoladauge@hotmail.com',''),(1969,1,399,'6','Your reputation and business are at stake! \r\n \r\nWe on your behalf in the message your website address mannplumbingandheating.com and your contact information (including in social. Networks and messengers) will send: \r\n \r\n+ on 15,897,318 sites, threats with insults to site owners, US residents, Europeans, LGBT and BLM. \r\n \r\n+ 790,000 messages to bloggers with threats and insults \r\n \r\n+ 2 367 896 public figures and politicians (from the USA and Europe) with threats and insults \r\n \r\n+ 70,000 negative reviews about you and your website mannplumbingandheating.com \r\n \r\n+ 23 467 849 contact forms of sites with threats and insults \r\n \r\n+ 150,000 emails messages to people with disabilities with threats and insults, many of them will definitely sue you \r\n \r\n+ 57000 emails of messages to veterans with threats and insults, FOR THIS YOU WILL BE EXACTLY SITTED \r\n \r\nFollowing from all of the above, you will get a lot of losses: \r\n \r\n+ an abuse from spam house, amazon and many webmasters (for spam, insults and threats) will come to your site mannplumbingandheating.com, as a result, your domain will be banned and blacklisted \r\n \r\n+ people will sue you because you threatened and humiliated them \r\n \r\n+ in court you will not prove anything, everything will look as if you did it all, MOST YOU WILL GO TO PRISON \r\n \r\n+ internet will be inundated with negative reviews about you and your website mannplumbingandheating.com \r\n \r\n+ threats and reprisals from BLM and LGBT community members, in fact, these are dangerous community guys \r\n \r\nTotal: you will lose your business, all your money, you will spend on lawyers and compensation for court decisions, you will go to jail, your life will turn to hell ... \r\n \r\nWe already have everything ready to launch all of the above, but we decided to give you a chance to avoid all this, you can buy off a small amount of money. \r\n \r\nMake a payment, transfer 0.39 Bitcoins to this address \r\n \r\n1JDYfBMP3vg8TcuFuwSHc1Wop3rREqupC4 \r\n \r\nWe are waiting for the transfer from you until November 27, on Saturday November 28, if payment does not come from you, we will begin to destroy your business and you along with it.',''),(1970,1,400,'8','shawn',''),(1971,1,400,'9','spencer',''),(1972,1,400,'4','(240) 997-4210',''),(1973,1,400,'3','bharwood@outlook.com',''),(1974,1,400,'6','please email. What brands of HVAC equipment do you sell and service?',''),(1975,1,401,'8','James Jerome',''),(1976,1,401,'9','James Jerome',''),(1977,1,401,'4','(126) 550-8553',''),(1978,1,401,'3','no-reply@google.com',''),(1979,1,401,'6','Hi there \r\nI have just checked mannplumbingandheating.com for the ranking keywords and seen that your SEO metrics could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(1980,1,402,'8','Rickieduh',''),(1981,1,402,'9','RickieduhRW',''),(1982,1,402,'4','(684) 611-7437',''),(1983,1,402,'3','michaelmaync@gmail.com',''),(1984,1,402,'6','Hello! \r\nI earn from cloud mining from $ 4000+ per day! \r\nDo you want to do the same ... ??? \r\nFollow the link and check out the great offer \r\nhttp://www.altzone.ru/go.php?url=https%3A%2F%2Fvk.cc%2FaCX6FI%3Fqx%3Dq \r\nTomorrow your income will grow by $ 4000+ per day \r\nHurry up, places are limited! \r\nhttp://tesay.com.tr/en?go=https%3A%2F%2Fvk.cc%2FaCX6FI%3Fqe%3Dq',''),(1985,1,403,'8','HYDEE',''),(1986,1,403,'9','ACIERDA',''),(1987,1,403,'4','(000) 000-0000',''),(1988,1,403,'3','YourDomainGuru.Hydee1@gmail.com',''),(1989,1,403,'6','Furnace-Service.com\r\n \r\nHello, my name is Hydee from TDS. We have a domain that is currently on sale that you might be interested in - Furnace-Service.com\r\n \r\nAnytime someone types Furnace-Service, Furnace Service Near Me, The Best Furnace Service, or any other phrase with these keywords into their browser your site could be the first they see!\r\n\r\nThe internet is the most efficient way to acquire new customers\r\n\r\nAvg Google Search Results for this domain is: 145,000,000\r\nYou can easily redirect all the traffic this domain gets to your current site!    \r\n\r\nGoDaddy.com appraises this domain at $797. \r\n \r\nPriced at only $398 for a limited time! If interested please go to Furnace-Service.com and select Buy Now, or purchase directly at GoDaddy.  \r\nAct Fast! First person to select Buy Now gets it!  \r\n\r\nThank you very much for your time.\r\nTop Domain Sellers (TDS)\r\nHydee Acierda',''),(1990,1,404,'8','Justinkftetr',''),(1991,1,404,'9','JustinkftetrDD',''),(1992,1,404,'4','(026) 213-8610',''),(1993,1,404,'3','shashkinaa.anna@mail.ru',''),(1994,1,404,'6','Exclusive to the mannplumbingandheating.com\r\n\r\nTOR is a software that with a unquestionably exuberant marked concealed allows you to protect up from prying eyes the entirety you do and did on the Internet. That\'s just on the basis of this technology and works tor Browser, which today matrix wishes as be discussed. In the gen, it puts a complex technology within reach to any Internet proprietor peel ordinary-looking browser that peculiar can use.\r\n I do not be incomplete in to amass you with industrial terms and concepts, which, by and thickset, purposefulness be superfluous. Fair in a intermittent words (on the fingers) I will-power characterization the attentiveness of the tor technology and the Tor Browser built on its basis. This mutual nous ordain authorize you to be posted of what to conjecture from this SOFTWARE, what strengths and weaknesses it has, to already consciously buckle down to it in the cards for your needs.\r\n So, the technology of TOR allows you to be got rid of to sites and download something from the network without leaving any traces. That is, when you unhampered, the street representing original, approval of a Tor Browser some placement, it remonstrate over be unresolvable to roadway the IP betoken of your computer on this close to (and that being so you assess). Not excessive your Internet provider pop off for not become into the glaring (if you regulation) that you be struck during visited this precincts (and it will be imbecilic to affirm it). Grandly, the browser itself will-power not build-up all traces of your wanderings on the Internet.\r\n How does TOR work? This is called onion routing. Look. There is a network of nodes relationship to the adherents of this technology. Three iffy nodes are employed for observations transmission. But which ones? And this is becoming no at anybody knows.\r\n Tor browser sends a millions to the elder node, and it contains the encrypted clobber of the in the backer place node. The in express node knows the charge in as a replacement into the cipher and, having guru the talk of the stunt man, forwards the loads there (it\'s like a curtsey removed the principal wrong layer). The younger node, having received the case in point, has a outreach to decrypt the discoloration of the third node (removed another layer from the salaam). Non-standard thusly, from the unconnected it is not believable to know what humanitarian of purlieus you in the good old days opened in the window of your Tor Browser.\r\n But note that at most the motorway (routing) is encrypted, and the walking on ventilate of the packets is not encrypted. Wherefore, serving perquisites of the transmit of attuned tidings it is more safely a improved to encrypt them in impudent (at least in the above-mentioned Manuscript), because the outlook of interception (in the advice of cross-section, using sniffers) exists.\r\n Obturate turn one\'s back on lapse, all surreptitiousness (anonymity) settings are enabled, but the protection household is at the lowest uniform paraphernalia to the genuineness that lonely in this crate you topsoil tendency and testament be bout to access all the functions of this browser. When you variation b antagonize the custodianship settings of the tor browser to \"concentrated\", a heavy-set accumulate of browser functions pleasure be at one-liner\'s fingertips partition after their afflicted activation (i.e., by disappear thoughtless, the aggregate is non-functioning). In the professional worry of me, it\'s overkill, so I pink the all things considered shooting tally as it was, but you can critic something in the hub (compromise).\r\n As as a replacement as far as something the purpose up, Tor Browser is refer affirmatively with to Mozilla Firefox, because in facts in fact it is built on its basis.\r\n\r\n You undoubtedly want to despise and determination Tor. Voyage to www.torproject.org and download the Tor Browser, which contains all the required tools. After all is said the downloaded interfile, determine an uprooting ukase, then elbow the folder and click Start Tor Browser. To from Tor browser, Mozilla Firefox be required to be installed on your computer.\r\n\r\nOnion sites wiki Tor http://toronionurlsdir.biz\r\n\r\n\r\n[url=http://oniondir.site]Directory onion tor sites[/url]\r\n\r\n\r\n\r\n\r\n<a href=http://onionurls.com>Deep Web Tor</a> \r\n \r\n<a href=http://deepweblinks.biz>Tor Wiki list</a> \r\n \r\n[url=http://deepweblinks.biz]Links to onion sites tor browser[/url]',''),(1995,1,405,'8','Sean',''),(1996,1,405,'9','Adams',''),(1997,1,405,'4','(307) 201-4936',''),(1998,1,405,'3','sean@interserveestimation.com',''),(1999,1,405,'6','Hi,\r\n \r\nWe provide Costing and takeoff services. Mainly we cover all building trades including residential and commercial projects. At the present time, we are giving half concessions to our services.\r\n\r\nIf you are bidding for a project and need an accurate estimate, we can help you ease your workload and difficulties. For your review I can send some of our sample estimates that would give you an idea of our work format\r\n\r\nSend us the plans/link if you are interested in getting a citation for charges and turnaround time. Normally our turnaround time is 2 working days.',''),(2000,1,406,'8','ContactMob',''),(2001,1,406,'9','ContactMobDW',''),(2002,1,406,'4','(334) 480-5661',''),(2003,1,406,'3','no-replyRondus@gmail.com',''),(2004,1,406,'6','Gооd dаy!  mannplumbingandheating.com \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd соmmеrсiаl оffеr fully lеgаlly? \r\nWе prоvidе а nеw lеgаl mеthоd оf sеnding businеss prоpоsаl thrоugh соntасt fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh businеss оffеrs аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh соntасt Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis оffеr is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  live:feedbackform2019 \r\nWhatsApp - +375259112693',''),(2005,1,407,'8','An operation 4qx was performed to send the receipt - see the document http://apple.com',''),(2006,1,407,'9','An operation 4qx was performed to send the receipt - see the document http://apple.com',''),(2007,1,407,'4','(360) 242-0338',''),(2008,1,407,'3','valrysmagin9977@gmail.com',''),(2009,1,408,'8','Andrew',''),(2010,1,408,'9','Eyer',''),(2011,1,408,'4','(717) 491-3613',''),(2012,1,408,'3','eyer.andrew.tr@gmail.com',''),(2013,1,408,'6','Hello, I was wondering if you were hiring any helpers or apprentices at this time? Willing to work any hours. Thank you.',''),(2014,1,409,'8','Mike Mansfield',''),(2015,1,409,'9','Mike Mansfield',''),(2016,1,409,'4','(708) 331-5341',''),(2017,1,409,'3','no-replyRondus@gmail.com',''),(2018,1,409,'6','Hеllо! \r\n \r\nDo you want a quick boost in ranks and sales for your mannplumbingandheating.com website? \r\nHaving a high DA score, always helps \r\n \r\nGet your mannplumbingandheating.com to have a 50+ points in Moz DA with us today and rip the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nFYI: \r\nWe also give big discounts for multiple plans \r\n \r\n \r\nthank you \r\nMike Mansfield\r\n \r\nsupport@monkeydigital.co',''),(2019,1,410,'8','Louis',''),(2020,1,410,'9','Nelson',''),(2021,1,410,'4','(732) 497-8827',''),(2022,1,410,'3','louis@brinkbids.com',''),(2023,1,410,'6','Hi there,\r\n\r\nHope you are doing well.\r\n\r\nThis message is from Brink Estimating,LLC to let you know about our services. We are a NEW JERSEY based cost estimating & quantity take-off firm, having extensive experience of cost estimation and deal with both residential and commercial projects for general and sub contractors.We are providing this service at a price of 50% less than market.\r\nDo send over the plans/blueprints/drawings if you need any job/project to be quoted.\r\n\r\nThank you.',''),(2024,1,411,'8','Brian',''),(2025,1,411,'9','WRIGHT Eng',''),(2026,1,411,'4','(303) 800-6251',''),(2027,1,411,'3','sales1@astrologicalstudio.com',''),(2028,1,411,'6','Dear Madam, Dear Sir Are you looking for an unique Xmas gift for your loved ones and friends? If so then our astrological reports could be a right choice. We can evolve precise and highly detailed Natal Horoscope, Compatibility Of Partners, and Forecasts of Events reports for them. Please visit astrologicalstudio.com for more information. We will be very pleased to hear from you. Have a great day. Best regards Brian WRIGHT Eng., ASTROLOGICAL STUDIO, Denver, CO, sales@astrologicalstudio.com, https://astrologicalstudio.com',''),(2029,1,412,'8','Tom',''),(2030,1,412,'9','Hanson',''),(2031,1,412,'4','(518) 712-7953',''),(2032,1,412,'3','tom@designsmirk.com',''),(2033,1,412,'6','Hello,\r\n\r\nI am trying to get in touch with the staff member that oversees your website. Can you point me in the right direction?\r\n\r\nThanks!',''),(2034,1,413,'8','Ethan',''),(2035,1,413,'9','Conner',''),(2036,1,413,'4','(107) 324-9788',''),(2037,1,413,'3','ethan@brinkbids.com',''),(2038,1,413,'6','Hi there,\r\n\r\nHope you are doing well.\r\n \r\nThis message is from Brink Estimating,LLC to let you know about our services. We are a NEW JERSEY based cost estimating & quantity take-off firm, having extensive experience of cost estimation and deal with both residential and commercial projects for general and sub contractors.\r\nWe are providing this service at a price of 50% less than market. \r\nDo send over the plans/blueprints/drawings if you need any job/project to be quoted.\r\n\r\nThank you.\r\n\r\nEthan Conner\r\nMarketing Lead\r\nBrink Estimating LLC.\r\n445 Virginia Ave Jersey City, New Jersey 07304\r\nPhone: 732-497-8827\r\nEmail:ethan[@]brinkbids[.]com\r\nEmail:brinkestimating[@]gmail[.]com\r\nWeb:Brinkbids[.]com',''),(2039,1,414,'8','Lindsay',''),(2040,1,414,'9','Harrison',''),(2041,1,414,'4','(805) 372-1751',''),(2042,1,414,'3','lindsay@topalexadirectory.top',''),(2043,1,414,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttp://topalexadirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\nLindsay\r\nVoice Activation Follow-up Specialist\r\nTop Alexa Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://topalexadirectory.top/out.php?site=mannplumbingandheating.com',''),(2044,1,415,'8','Ester',''),(2045,1,415,'9','Cobb',''),(2046,1,415,'4','(303) 935-0671',''),(2047,1,415,'3','zerofeeccp@gmail.com',''),(2048,1,415,'6','Subject: RE: New Covid Relief for local business; Waive your processing fees. \r\n\r\nAre you paying more than $300 a month to process credit cards?\r\nWith covid going from bad to worse, companies are seeking better options to cut expenses.\r\nIs processing a big expense for you?\r\n\r\nThese days, I’m working with a really innovative company that combines the latest payment technology with the most advanced POS terminals, to process your payments and get you cash in the bank as soon as the same day. \r\n\r\nWe’re like Netflix for processing! \r\nNo more high processing costs, or expensive hidden fees. \r\nOnly $24.99 per month, gets you unlimited processing. \r\nHow much is that going to save you?\r\n\r\nWhy are big brands like Starbucks, Budget Blinds, and many local businesses making the switch?\r\n \r\nWe let the excellent quality of our service speak for itself. \r\nNo Contracts. \r\nNo cancellation fees. \r\nMention this email and get 2 fully mobile terminals, absolutely free. \r\n\r\nTry us risk free and get $200.\r\n\r\n \r\nGive us a phone number where we can call you with more information. \r\nSend a quick message saying \"I\'m interested\" by clicking this link:\r\nhttps://l.linklyhq.com/l/9Lzs\r\n\r\nStay Safe!',''),(2049,1,416,'8','Mike Wood',''),(2050,1,416,'9','Mike Wood\r\nXE',''),(2051,1,416,'4','(313) 361-3030',''),(2052,1,416,'3','no-replyWat@gmail.com',''),(2053,1,416,'6','Hi! \r\n \r\nAs per the chat we had on our website, we recommended our Local SEO plan for mannplumbingandheating.com to increase its visibility in the local search as well as in the Google maps. \r\n \r\nMore info on the plan can be found here \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nAs promised we`ll include 1500 Gmaps citations for free. \r\n \r\nThank you \r\nMike Wood\r\n \r\nsupport@speed-seo.net',''),(2054,1,417,'8','Dorothy',''),(2055,1,417,'9','Amy',''),(2056,1,417,'4','(717) 414-3504',''),(2057,1,417,'3','totozpal@comcast.net',''),(2058,1,417,'6','I\'d like to schedule my gas furnace for maintenance, the ducts need cleaned out and I can\'t get the Honeywell thermostat to go above 49 degrees. Also get information on a new heating/ac unit.\r\n\r\n I\'d also like to have the small sink and small toilet in my downstairs \"bathroom\" (closet really) removed and the pipes capped off in the basement, turning the room back into interior access to the basement.\r\n \r\nI also need to have the pipes to my washer fixed, both of them leak, even when they\'re shut off, they drip. I\'d like to have my water dispenser to my fridge attached, right now it\'s hooked up at the base of the cold water pipe for the washer, so it doesn\'t work even when the pipe is turned on.\r\n\r\nI\'d also like to have the pipes in the basement labeled so I know what goes to what in the event there\'s ever a problem. There are many pipes with spigot\'s on them, so I have no idea what they go to.',''),(2059,1,418,'8','Linda',''),(2060,1,418,'9','Anderson',''),(2061,1,418,'4','(213) 558-1566',''),(2062,1,418,'3','alison@videomarketingguru.club',''),(2063,1,418,'6','Hey, great site!\r\n\r\nHave you thought about adding a video in response to COVID-19?\r\n\r\nWe can make one for you: \r\nhttps://www.videovideovideomarketing.club/success/?=mannplumbingandheating.com\r\n\r\nCustomers are worried right now. A short video like this can make a big impact for your business in the long term. People will remember it!\r\n\r\nBe well,\r\nLinda\r\n\r\nP.S. Due to coronavirus, we have also lowered our prices by up to 55%. \r\n\r\n\r\n\r\n\r\n\r\n\r\n- This commercial message sent from PJLK Marketing LC\r\n410 E Santa Clara Street STE 817\r\nSan Jose, CA 95113\r\n\r\nTo unsubscribe click here:\r\nhttps://videovideovideomarketing.club/out.php/?site=mannplumbingandheating.com',''),(2064,1,419,'8','iAquaLinkmif',''),(2065,1,419,'9','iAquaLinkmif',''),(2066,1,419,'4','(528) 372-8415',''),(2067,1,419,'3','eren@picassotravel.com',''),(2068,1,419,'6','number of surviving European',''),(2069,1,420,'8','Batterywdf',''),(2070,1,420,'9','Batterywdf',''),(2071,1,420,'4','(060) 737-7734',''),(2072,1,420,'3','ross054@telus.net',''),(2073,1,420,'6','multiplies (see also article',''),(2074,1,421,'8','Juicerkpg',''),(2075,1,421,'9','Juicerkpg',''),(2076,1,421,'4','(821) 468-4468',''),(2077,1,421,'3','wiltondoreen@gmail.com',''),(2078,1,421,'6','Middle Ages as in Western',''),(2079,1,422,'8','Mel',''),(2080,1,422,'9','Wright',''),(2081,1,422,'4','(122) 913-4571',''),(2082,1,422,'3','Mphotographer546@gmail.com',''),(2083,1,422,'6','Hello there!\r\n\r\nThis is Melaina and I am a qualified photographer and illustrator.\r\n\r\nI was puzzled, mildly speaking, when I recognised my images at your web-site. If you use a copyrighted image without an owner\'s approval, you must be aware that you could be sued by the owner.\r\n\r\nIt\'s unlawful to use stolen images and it\'s so сheap!\r\n\r\nCheck out this document with the links to my images you used at www.mannplumbingandheating.com and my earlier publications to get the evidence of my legal copyrights.\r\n\r\nDownload it now and check this out for yourself: \r\n\r\nhttps://sites.google.com/view/id8230017720014/google/drive/file/downloads/storage?FileID=803118750918539227 \r\n\r\nIf you don\'t remove the images mentioned in the document above within the next few days, I\'ll file a  to your hosting provider stating that my copyrights have been severely infringed and I am trying to protect my intellectual property. \r\n\r\nAnd if it is not enough, for damn sure I am going to report and sue you! And I will not bother myself to let you know of it in advance.',''),(2084,1,423,'8','PremiumOffice apps, extracloudstorage https://live.com/',''),(2085,1,423,'9','PremiumOffice apps, extracloudstorage https://live.com/',''),(2086,1,423,'4','(174) 828-8133',''),(2087,1,423,'3','pavel.drotch@yandex.com',''),(2088,1,424,'8','Brian',''),(2089,1,424,'9','WRIGHT Eng',''),(2090,1,424,'4','(303) 800-6251',''),(2091,1,424,'3','sales1@astrologicalstudio.com',''),(2092,1,424,'6','Dear Madam, Dear Sir Are you looking for an unique Xmas gift for your loved ones and friends? If so then our astrological reports could be a right choice. We can evolve precise and highly detailed Natal Horoscope, Compatibility Of Partners, and Forecasts of Events reports for them. Please visit astrologicalstudio.com for more information. We will be very pleased to hear from you. Have a great day. Best regards Brian WRIGHT Eng., ASTROLOGICAL STUDIO, Denver, CO, sales@astrologicalstudio.com, https://astrologicalstudio.com',''),(2093,1,425,'8','Michael Randolph',''),(2094,1,425,'9','Michael Randolph',''),(2095,1,425,'4','(431) 228-7426',''),(2096,1,425,'3','randolphmichael79@gmail.com',''),(2097,1,425,'6','Hello, \r\nI was wondering if there was any possible way we could promote our clients’ products and services to your audience via sponsored posts containing links back to their sites. \r\nIf that is something you do, then please get in touch to discuss how we can work together. \r\nKind regards, \r\nMichael Randolph \r\nContent Marketing Specialist | Adsy',''),(2098,1,426,'8','James Gustman',''),(2099,1,426,'9','James Gustman',''),(2100,1,426,'4','(880) 444-8230',''),(2101,1,426,'3','no-reply@google.com',''),(2102,1,426,'6','Hеllо! \r\nI have just checked mannplumbingandheating.com for the ranking keywords and seen that your SEO metrics could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(2103,1,427,'8','April',''),(2104,1,427,'9','Reese',''),(2105,1,427,'4','(717) 377-1069',''),(2106,1,427,'3','Areese1021@yahoo.com',''),(2107,1,427,'6','I have a Miller gas furnace that runs on propane. It has started running differently. The blower will only run for a few seconds and then shut off and it keeps repeating that cycle.',''),(2108,1,428,'8','Henryevoli',''),(2109,1,428,'9','Henryevoli',''),(2110,1,428,'4','(363) 657-1274',''),(2111,1,428,'3','mathew_1155@yahoo.com',''),(2112,1,428,'6','Online Bot will bring you wealth and satisfaction. \r\nLink - http://2olega.ru/go?https://hdredtube3.mobi/btsmart',''),(2113,1,429,'8','Eric',''),(2114,1,429,'9','Jones',''),(2115,1,429,'4','(555) 555-1212',''),(2116,1,429,'3','ericjonesonline@outlook.com',''),(2117,1,429,'6','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at mannplumbingandheating.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://www.talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://www.talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(2118,1,430,'8','James',''),(2119,1,430,'9','Jenkins',''),(2120,1,430,'4','(717) 414-9995',''),(2121,1,430,'3','jjenkins47@icloud.com',''),(2122,1,430,'6','I want to find out if your plumbers can install an advanced Touchless-style kitchen faucet which I would like to purchase from Amazon. It has some battery-powered electronic connects in addition to the water-line connections.\r\n\r\nHere is the link to the faucet I\'d like to have installed:\r\n\r\nhttps://www.amazon.com/Touchless-Kitchen-Sprayer-ARRISEA-Activation/dp/B08DLK7T7K/ref=sr_1_11?crid=GFQ30QR11340&dchild=1&keywords=no+touch+kitchen+faucet&qid=1608494421&sprefix=no+touch+kitchen+%2Caps%2C195&sr=8-11\r\n\r\nWe are customers of your in the past for faucet installations.\r\n\r\nThanks.',''),(2123,1,431,'8','Nicola Slamm',''),(2124,1,431,'9','Nicola Slamm',''),(2125,1,431,'4','(746) 113-0372',''),(2126,1,431,'3','nicolaslamm1978@gmail.com',''),(2127,1,431,'6','Get more Followers, Likes, Views to all your social media channels instantly. \r\n100% Safe, Real Human (No bots). \r\n \r\n250 Instagram followers @ $3.99: https://store.marketingchoice.com/buy-instagram-followers \r\n100 Facebook page followers @ $3.99: https://store.marketingchoice.com/facebook-page-followers \r\n100 LinkedIn followers @ $4.99: https://store.marketingchoice.com/linkedin-company-page-followers \r\n100 TikTok followers @ $3.99: https://store.marketingchoice.com/tiktok-followers \r\n \r\nAnd many more channels and options at: https://Store.MarketingChoice.com \r\n \r\nFor custom package or more information please contact: MarketingChoice.com@gmail.com',''),(2128,1,432,'8','Rachel',''),(2129,1,432,'9','Florent',''),(2130,1,432,'4','(326) 421-1751',''),(2131,1,432,'3','rachel.florent@videomarketingnow.xyz',''),(2132,1,432,'6','Hey, \r\n\r\nYou have a lot going on right now, but maybe we can help?\r\n\r\nWe make professional videos for businesses to put on their websites.\r\n\r\nSee examples of what we can do for you:\r\nhttps://www.videomarketingnow.xyz/success/?=mannplumbingandheating.com\r\n\r\nThese videos are helping businesses GROW right now, at a time when they need it most.\r\n\r\nRachel Florent\r\nCustom Video Specialist\r\n\r\n\r\n\r\n\r\n\r\n410 Santa Clara St. East, Unit 817	\r\nSan Jose,	CA 95113\r\n \r\nNo more video marketing:\r\nhttps://thevideonetwork.top/out.php/?site=mannplumbingandheating.com',''),(2133,1,433,'8','Francis',''),(2134,1,433,'9','Jamieson',''),(2135,1,433,'4','(805) 372-1751',''),(2136,1,433,'3','francis.jamieson@alexabusinessdirectory.link',''),(2137,1,433,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://alexabusinessdirectory.link/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\n \r\n\r\n \r\nFrancis\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\n2764 Pleasant Road Suite        Suite A PMB 708        Fort Mill        SC        29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://alexabusinessdirectory.link/out.php?site=mannplumbingandheating.com',''),(2138,1,434,'8','ShaneHep',''),(2139,1,434,'9','ShaneHepDD',''),(2140,1,434,'4','(524) 222-8177',''),(2141,1,434,'3','danielFlece@ggmaail.com',''),(2142,1,434,'6','Sie konnen frei sein. Sie konnen uberall auf der Welt leben und arbeiten. Sie konnen unabhangig vom Trott leben und niemandem untergeben sein. \r\n \r\nEvery day your passive income will grow by about $ 100 per day. \r\n \r\n>>>>>>>>>>     http://pro-balanse.com/bitrix/redirect.php?event1=&event2=&event3=&goto=https%3A%2F%2Fvk.cc%2FbWfgn3%3F37459-EURO-am-Tag   <<<<<<<<<<< \r\n \r\nI have been using this system for three weeks and at the moment my passive income is $ 2450 per day. \r\n \r\nI have already quit my job. I have enough money for absolutely everything. \r\n \r\n>>>>>>>>>>     http://sarvesamachar.com/click.php?url=https%3A//vk.cc/bWfgeN%2F   <<<<<<<<<<<',''),(2143,1,435,'8','Henryevoli',''),(2144,1,435,'9','Henryevoli',''),(2145,1,435,'4','(337) 502-7226',''),(2146,1,435,'3','spidermanje@hotmail.com',''),(2147,1,435,'6','Online job can be really effective if you use this Robot. \r\nLink - https://plbtc.page.link/aF8A',''),(2148,1,436,'8','Henryevoli',''),(2149,1,436,'9','Henryevoli',''),(2150,1,436,'4','(856) 351-7804',''),(2151,1,436,'3','meganporter14@gmail.com',''),(2152,1,436,'6','Make money in the internet using this Bot. It really works! \r\nLink - https://plbtc.page.link/aF8A',''),(2153,1,437,'8','Henryevoli',''),(2154,1,437,'9','Henryevoli',''),(2155,1,437,'4','(684) 708-7810',''),(2156,1,437,'3','lone.thomsen@gmail.com',''),(2157,1,437,'6','Make your money work for you all day long. \r\nLink - https://plbtc.page.link/aF8A',''),(2158,1,438,'8','Henryevoli',''),(2159,1,438,'9','Henryevoli',''),(2160,1,438,'4','(240) 445-4512',''),(2161,1,438,'3','viv@vodafone.net.nz',''),(2162,1,438,'6','Looking for an easy way to make money? Check out the financial robot. \r\nLink - https://plbtc.page.link/aF8A',''),(2163,1,439,'8','Henryevoli',''),(2164,1,439,'9','Henryevoli',''),(2165,1,439,'4','(425) 241-0046',''),(2166,1,439,'3','centurion2xx6@rambler.ru',''),(2167,1,439,'6','Make your money work for you all day long. \r\nLink - https://plbtc.page.link/aF8A',''),(2168,1,440,'8','Henryevoli',''),(2169,1,440,'9','Henryevoli',''),(2170,1,440,'4','(248) 712-5025',''),(2171,1,440,'3','wnq_hero@sina.com',''),(2172,1,440,'6','One dollar is nothing, but it can grow into $100 here. \r\nLink - https://plbtc.page.link/aF8A',''),(2173,1,441,'8','Henryevoli',''),(2174,1,441,'9','Henryevoli',''),(2175,1,441,'4','(124) 604-5484',''),(2176,1,441,'3','bryn_burkard@yahoo.com',''),(2177,1,441,'6','The additional income for everyone. \r\nLink - https://plbtc.page.link/aF8A',''),(2178,1,442,'8','Henryevoli',''),(2179,1,442,'9','Henryevoli',''),(2180,1,442,'4','(084) 677-5381',''),(2181,1,442,'3','youshine@hotmail.com',''),(2182,1,442,'6','Everyone who needs money should try this Robot out. \r\nLink - https://plbtc.page.link/aF8A',''),(2183,1,443,'8','Henryevoli',''),(2184,1,443,'9','Henryevoli',''),(2185,1,443,'4','(772) 111-4231',''),(2186,1,443,'3','tomv057@hotmail.fr',''),(2187,1,443,'6','Start your online work using the financial Robot. \r\nLink - https://plbtc.page.link/coin',''),(2188,1,444,'8','Thomasdrelt',''),(2189,1,444,'9','ThomasdreltLM',''),(2190,1,444,'4','(878) 115-1228',''),(2191,1,444,'3','randyCit@ggmaail.com',''),(2192,1,444,'6','I finally know what it\'s like to live the dream. \r\n \r\nI no longer feel like I\'m on the outside looking in while everyone else has all the fun. \r\n \r\n>>>>>>>>>>     http://www.608788.com/gourl.asp?url=https://vk.cc/bWfgeN   <<<<<<<<<<< \r\n \r\nThe Bitcoin Superstar has allowed me to retire early and live the 1% lifestyle \r\n \r\nNow my passive income is $ 15,000 per week ... \r\n \r\n>>>>>>>>>>     http://www.chessmiass.ru/r.php?url=https%3A%2F%2Fvk.cc%2FbWfgn3%3F37459-EURO-am-Tag   <<<<<<<<<<<',''),(2193,1,445,'8','Henryevoli',''),(2194,1,445,'9','Henryevoli',''),(2195,1,445,'4','(783) 814-8078',''),(2196,1,445,'3','toc_seine@hotmail.com',''),(2197,1,445,'6','New Year\'s time for gifts! We\'ve put together a list of the best casinos with the most generous bonuses! Play now and win! \r\nLink - http://bestcasinos2019.com/',''),(2198,1,446,'8','Henryevoli',''),(2199,1,446,'9','Henryevoli',''),(2200,1,446,'4','(218) 168-3512',''),(2201,1,446,'3','rajamitra@basecoms.com',''),(2202,1,446,'6','New Year\'s time for gifts! We\'ve put together a list of the best casinos with the most generous bonuses! Play now and win! \r\nLink - http://bestcasinos2019.com/',''),(2203,1,447,'8','Henryevoli',''),(2204,1,447,'9','Henryevoli',''),(2205,1,447,'4','(201) 464-3506',''),(2206,1,447,'3','gdidi@mail.ru',''),(2207,1,447,'6','New Year\'s time for gifts! We\'ve put together a list of the best casinos with the most generous bonuses! Play now and win! \r\nLink - http://bestcasinos2019.com/',''),(2208,1,448,'8','Henryevoli',''),(2209,1,448,'9','Henryevoli',''),(2210,1,448,'4','(607) 486-7255',''),(2211,1,448,'3','joshweins@comcast.net',''),(2212,1,448,'6','New Year\'s time for gifts! We\'ve put together a list of the best casinos with the most generous bonuses! Play now and win! \r\nLink - http://bestcasinos2019.com/',''),(2213,1,449,'8','Henryevoli',''),(2214,1,449,'9','Henryevoli',''),(2215,1,449,'4','(852) 487-3853',''),(2216,1,449,'3','surface.donald@yahoo.com',''),(2217,1,449,'6','New Year\'s time for gifts! We\'ve put together a list of the best casinos with the most generous bonuses! Play now and win! \r\nLink - http://bestcasinos2019.com/',''),(2218,1,450,'8','Henryevoli',''),(2219,1,450,'9','Henryevoli',''),(2220,1,450,'4','(617) 313-1267',''),(2221,1,450,'3','mcleaf@gmail.com',''),(2222,1,450,'6','Your money keep grow 24/7 if you use the financial Robot. \r\nLink - https://plbtc.page.link/v2EF',''),(2223,1,451,'8','Henryevoli',''),(2224,1,451,'9','Henryevoli',''),(2225,1,451,'4','(775) 846-6663',''),(2226,1,451,'3','eyecycle78@yahoo.com',''),(2227,1,451,'6','Make yourself rich in future using this financial robot. \r\nLink - https://plbtc.page.link/v2EF',''),(2228,1,452,'8','Hector',''),(2229,1,452,'9','Guerrero',''),(2230,1,452,'4','(717) 377-9717',''),(2231,1,452,'3','brownclay08@gmail.com',''),(2232,1,452,'6','Our heating is having trouble turning on and we suspect it is the furnace. We need a repair as soon as possible.',''),(2233,1,453,'8','Henryevoli',''),(2234,1,453,'9','Henryevoli',''),(2235,1,453,'4','(213) 606-7845',''),(2236,1,453,'3','fa553738@skynet.be',''),(2237,1,453,'6','Earning money in the Internet is easy if you use Robot. \r\nLink - https://plbtc.page.link/Dw1j',''),(2238,1,454,'8','CarolCypex',''),(2239,1,454,'9','CarolCypexOE',''),(2240,1,454,'4','(178) 178-4736',''),(2241,1,454,'3','miraclesreport@gmail.com',''),(2242,1,454,'6','Dropshipping business is a method of retail where the store owner never physically holds the products it sells.... You don’t need upfront investments to get the products that you sells.                            Instead, when the store owner sells one of the products it stocks on its website, the store owner  then buy the item from a third-party supplier (that is after store owner deducts his/her profit) The supplier  then ships the item directly to the end customer on behalf of the store owner. \r\nFor only $99.99, get your 100% ready made dropshipping e-commerce store preloaded with 12,000 hot selling products - comes with  support,sales & marketing training to drive traffic to your store \r\nOr create amazing website for your existing business- We Have All the Tools You Need \r\nfor more information or to sign up,  pls visit us at  http://www.NETSKIEL.COM',''),(2243,1,455,'8','Henryevoli',''),(2244,1,455,'9','Henryevoli',''),(2245,1,455,'4','(848) 670-6380',''),(2246,1,455,'3','ifoltyn@ig.com.br',''),(2247,1,455,'6','Check out the new financial tool, which can make you rich. \r\nLink - https://crypto24.page.link/personal',''),(2248,1,456,'8','Henryevoli',''),(2249,1,456,'9','Henryevoli',''),(2250,1,456,'4','(682) 283-1310',''),(2251,1,456,'3','jjuselma@ncsu.edu',''),(2252,1,456,'6','No worries if you are fired. Work online. \r\nLink - https://24crypto.de/fund-trading-bitcoin.php',''),(2253,1,457,'8','Henryevoli',''),(2254,1,457,'9','Henryevoli',''),(2255,1,457,'4','(152) 602-0452',''),(2256,1,457,'3','ashwinhyd@gmail.com',''),(2257,1,457,'6','The best online investment tool is found. Learn more! \r\nLink - https://24crypto.de/how-to-trade-eth-for-btc.php',''),(2258,1,458,'8','Henryevoli',''),(2259,1,458,'9','Henryevoli',''),(2260,1,458,'4','(080) 006-4768',''),(2261,1,458,'3','bamj6@yahoo.com',''),(2262,1,458,'6','Even a child knows how to make $100 today. \r\nLink - https://24crypto.de/bitcoin-marketing-campaign.php',''),(2263,1,459,'8','Henryevoli',''),(2264,1,459,'9','Henryevoli',''),(2265,1,459,'4','(876) 247-5645',''),(2266,1,459,'3','tediik@gmail.com',''),(2267,1,459,'6','The additional income for everyone. \r\nLink - https://24crypto.de/robo-trader-bitcoins.php',''),(2268,1,460,'8','Henryevoli',''),(2269,1,460,'9','Henryevoli',''),(2270,1,460,'4','(532) 006-3850',''),(2271,1,460,'3','calvycec@hotmail.fr',''),(2272,1,460,'6','No need to work anymore. Just launch the robot. \r\nLink - https://24crypto.de/bitcoin-total-market-cap.php',''),(2273,1,461,'8','contactydlcct',''),(2274,1,461,'9','contactydlcct',''),(2275,1,461,'4','(680) 045-2751',''),(2276,1,461,'3','damsonxristinja1992@rambler.ru',''),(2277,1,461,'6','I\'m happy to welcome you! \r\n \r\nSending newsletters via  forms of Your offers into the \"Contact us\" section to the sites of companies via any countries of the world.  \r\n \r\nThe Letter is sent to email of institution hundred % will get to the inbox! \r\n \r\n2000 bases: \r\nhttps://xn----7sbb1bbndheurc1a.xn--p1ai/prajs-list/ \r\n \r\nTest: \r\n20000 messages on foreign zones to your electronic box - 20 $. \r\nWe need from You only electronic box, title and text of the letter. \r\n \r\nIn our price list there are more 800 databases for all domain zones of the world. \r\nCommon databases: \r\nAll Europe 44 countries 60726150 of domain names - 1100$ \r\nAll European Union 28 countries 56752547 of domain names- 1000$ \r\nAll Asia 48 countries 14662004 of domains - 300$ \r\nAll Africa 50 countries 1594390 of sites - 200$ \r\nAll North and Central America in 35 countries 7441637 of domains - 300$ \r\nAll South America 14 countries 5826884 of sites - 200$ \r\nNew domain names from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) - 500$ \r\nCompanies and Enterprises of Russia 4025015 - 300$ \r\nUkraine 1114526 of sites - 100$ \r\nAll Russian-speaking countries minus Russia are 14 countries and there are 1979217 of sites - 200$ \r\nNew sites of the Russia, registered 24-48 hours ago (A cycle of 15 mailings during the month) - 250$ \r\n \r\nDatabases: \r\nWHOIS databases of sites for all nations of the world. \r\nYou can purchase our databases separately from newsletter\'s service at the request. \r\n \r\nP.S. \r\nPlease, do not respond to this commercial offer from your electronic box, as it has been generated in automatic mode and will not reach us! \r\nContact Feedback form =» https://xn----7sbb1bbndheurc1a.xn--p1ai/to-order/ \r\n \r\nPRICE LIST: \r\n \r\nTest mailing: $20 – 20000 contact forms websites \r\n \r\nAll Europe 44 countries there are 60726150 websites – $1100 \r\n \r\nAll EU 28 countries there are 56752547 websites – $1000 \r\n \r\nAll Asia 48 countries there are 14662004 websites – $500 \r\n \r\nAll Africa 50 countries there are 1594390 websites – $200 \r\n \r\nAll North and Central America is 35 countries there are 7441637 websites – $300 \r\n \r\nAll South America 14 countries there are 5826884 websites – $200 \r\n \r\nTop 1 Million World’s Best websites – $100 \r\n \r\nTop 16821856 the most visited websites in the world – $300 \r\n \r\nNew websites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 500$ \r\n \r\nBusinesses and organizations of the Russian Federation – there are 4025015 websites – $300 \r\n \r\nAll Russian-speaking countries minus Russia – there are 14 countries and 2440822 websites – $200 \r\n \r\nNew websites of the Russian Federation, registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 250$ \r\n \r\n1499203 of hosting websites around the world (there are selections for all countries, are excluded from databases for mailings) – $150 \r\n \r\n295285 websites of public authorities of all countries of the world (selections for all countries, are excluded from databases for mailings) – $100 \r\n \r\n3516251 websites online stores Worldwide – $250 \r\n \r\nCMS mailings: \r\n \r\n3dCart 14689 websites - $50 \r\nAdobe CQ5 133567 websites - $80 \r\nAdvance 17589 websites - $50 \r\nAdVantShop.NET 2453 websites - $30 \r\nALMA 7095 websites - $30 \r\nAmetys 2389 websites - $30 \r\nAmiro 29587 websites - $30 \r\nAngora 20357 websites - $50 \r\nAVS 1369 websites - $30 \r\nBbPress 1487 websites - $30 \r\nBESTWEB 2699 websites - $30 \r\nBigCommerce 78257 websites - $50 \r\nBitrix 319687 websites - $80 \r\nBlogger 658267 websites - $80 \r\nBlogspot 279865 websites - $80 \r\nBuddyPress 51477 websites - $50 \r\nBurning Board 4659 websites - $30 \r\nCatalyst Web 11689 websites - $50 \r\nClassiPress 11796 websites - $50 \r\nCMSimple 11052 websites - $30 \r\nConcrete5 72100 websites - $50 \r\nContao 110897 websites - $80 \r\nCONTENIDO 5069 websites - $30 \r\nConvio 2268 websites - $30 \r\nCoppermine Photo 1296 websites - $30 \r\nCS Cart 11400 websites - $30 \r\nDatalife Engine	42587 websites - $50 \r\nDede 230589 websites - $100 \r\nDedeEIMS 96068 websites - $50 \r\nDIAFAN 4058 websites - $30 \r\nDiscuz 47962 websites - $50 \r\nDjango 71167 websites - $50 \r\nDokuWiki 9588 websites - $30 \r\nDotnetnuke 82964 websites - $50 \r\nDrupal 978298 websites - $100 \r\nEasyBlog 1165978 websites - $100 \r\nEPiServer 29876 websites - $50 \r\nExpressionEngine 1769823 websites - $150 \r\neZ Publish 5367 websites - $30 \r\nF- 9356 websites - $30 \r\nFireBoard 1567 websites - $30 \r\nGeneral Blogs 2067 websites - $30 \r\nGetSimple 23094 websites - $50 \r\nHost 6871 websites - $30 \r\nHostCMS	5042 websites - $30 \r\nHubSpot 31762 websites - $50 \r\ni- 9438 websites - $30 \r\nImage 1368 websites - $30 \r\nInSales 14149 websites - $50 \r\nInSales	 11081 websites - $30 \r\nInstantCMS 4136 websites - $30 \r\nInteractiveBBS 32367 websites - $50 \r\nInvision Power Board 2430 websites - $30 \r\nIPBoard 2266 websites - $30 \r\nIT 15189 websites - $50 \r\njforum 1056 websites - $30 \r\njobberBase 3387 websites - $30 \r\nJoomla K2 154367 websites - $80 \r\nJoomla	 1906994 websites - $200 \r\nKoobi 3722 websites - $30 \r\nLiferay	 5137 websites - $30 \r\nMade Simple 20567 websites - $50 \r\nMagento	 369447 websites - $80 \r\nMediaMaxScript 103896 websites - $80 \r\nMediaWiki 41468 websites - $50 \r\nMicrosoft SharePoint 13198 \r\nMODx	 64023 websites - $50 \r\nMoodle 8195 websites - $30 \r\nMovable Type 13096 websites - $50 \r\nMyBB 4367 websites - $30 \r\nmyUPB 3397 websites - $30 \r\nNetCat	 7294 websites - $30 \r\nNG 18356 websites - $50 \r\nNING 3687 websites - $30 \r\nNopCommerce 18600 websites - $30 \r\nOpen 5916 websites - $30 \r\nOpenCart 667000 websites - $80 \r\nOsclass 4652 websites - $30 \r\nosCommerce 68468 websites - $50 \r\nOUR- 3096 websites - $30 \r\nOXID eShop 12200 websites - $50 \r\nOxwall 6800 websites - $30 \r\nParallels Plesk Sitebuilder 174216 websites - $80 \r\nphp 14367 websites - $50 \r\nphp Link 2298 websites - $30 \r\nphpBB	 24400 websites - $30 \r\nPHP-Fusion 2596 websites - $30 \r\nPHPMelody 2365 websites - $30 \r\nPHP-Nuke 2489 websites - $30 \r\nPHPShop 2667 websites - $30 \r\nPHPWeb 29789 websites - $50 \r\nPHPWind 4032 websites - $30 \r\nPlone 84962 websites - $50 \r\nPowerEasy 1697 websites - $30 \r\nPrestashop 434100 websites - $80 \r\nQuestion2Answer 5598 websites - $30 \r\nR 296498 websites - $80 \r\nReadyScript 6487682 websites - $80 \r\nS.Builder 394367 websites - $80 \r\nShopify	 6093709 sites websites - $400 \r\nShoutbox 145564 websites - $80 \r\nSilverStripe 31721 websites - $50 \r\nSimpla 17429 websites - $50 \r\nSitecore 74861 websites - $50 \r\nSitefinity 4183 websites - $30 \r\nSMF 8111 websites - $30 \r\nSocialGO 54267 websites - $50 \r\nSPIP 28269 websites - $50 \r\nSquarespace 1098231 websites - $100 \r\nStoreLand 8257 websites - $30 \r\nSupeSite 12367 websites - $50 \r\nTextpattern 10900 websites - $30 \r\nTikiWiki 1446 websites - $30 \r\nTilda 47396 websites - $50 \r\nTumblr 302357 websites - $80 \r\nTYPO3 845009 websites - $80 \r\nUmbraco 146064 websites - $80 \r\nUMI.CMS	 13191 websites - $50 \r\nVamShop 1737 websites - $30 \r\nvBulletin 14460 websites - $30 \r\nVolusion 16006 websites - $50 \r\nWallpaperSiteScript 2811 websites - $30 \r\nWeebly 191753 websites - $80 \r\nWix 3379081 sites websites - $250 \r\nWooCommerce 4459525 websites - $310 \r\nWordpress 35354537 websites - $650 \r\nXenForo 21105 websites - $30 \r\nXOOPS 20467 websites - $50 \r\nXpressEngine 8565 websites - $30 \r\nZen Cart 26524 websites - $30 \r\n \r\nCountry: \r\n \r\n.ae 200462 websites UAE - $50 \r\n.ae 1820 websites International zone UAE:.com .net .biz .info .name .tel \r\n.ag 11931 websites Antigua and Barbuda - $50 \r\n.ai 33130 websites Anguilla - $50 \r\n.am 21995 websites Armenia - $50 \r\n.am 1684 websites International zone Armenia:.com .net .biz .info .name .tel \r\n.ar 782608 websites Argentina - $80 \r\n.ar 75496 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ar.com 135 websites - $30 \r\n.at 1356722 websites Austria - $100 \r\n.at 181907 websites International zone Austria :.com .net .biz .info .name \r\n.au 2432174 websites Australia - $150 \r\n.au 461279 websites International zone Australia:.com .net .biz .info .name \r\n.az 17855 websites Azerbaijan - $50 \r\n.az 2036 websites International zone Azerbaijan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ba 15725 websites Bosnia and Herzegovina - $30 \r\n.ba 2291 websites international zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia-$30 \r\n.be 1349658 websites Belgium - $100 \r\n.be 1056248 websites International zone Belgium:.com .net .biz .info .name \r\n.bg 54418 websites Bulgaria - $50 \r\n.bg 50685 websites International zone Bulgaria:.com .net .biz .info .name \r\n.bo 2602 websites Bolivia - $30 \r\n.bo 29415 websites International zone Bolivia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.br 3205100 websites Brazil - $200 \r\n.br 1230078 websites International zone Brazil:.com .net .biz .info .name . \r\n.by 99148 websites Belarus - $50 \r\n.by 1574 websites International zone Belarus:.com .net .biz .info .name .tel \r\n.ca 2587463 websites Canada - $150 \r\n.ca 288395 websites International zone Canada:.com .net .biz .info .name \r\n.cc 436396 websites - $80 \r\n.cc 1920589 websites Cocos Keeling Islands- $150 \r\n.cf 2461460 websites Central African Republic - $150 \r\n.cg 526 websites Congo - $30 \r\n.ch 1629450 websites Switzerland - $100 \r\n.ch 205292 websites International zone Switzerland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ci 5794 websites Cote d\'Ivoire - $30 \r\n.ci 112 websites International zone Cote d\'Ivoire:.com .net .biz .info .name \r\n.cl 590401 websites Chile - $80 \r\n.cl 65996 websites International zone Chile:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.cm 29221 websites Cameroon- $50 \r\n.cn 23160610 websites China - $600 \r\n.cn 1372416 websites International zone China:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.co 1878923 websites Colombia - $100 \r\n.co 10854 websites International zone Colombia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cx 15753 websites Christmas Island - $50 \r\n.cy 11092 websites Cyprus - $50 \r\n.cy 744 websites International zone Cyprus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cz 1001208 websites Czech Republic - $100 \r\n.cz 193400 websites International zone Czech Republic:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.de 15078512 websites Germany - $350 \r\n.de 3894156 websites International zone Germany:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.dk 1319155 websites Denmark - $100 \r\n.dk 148164 websites International zone Denmark:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dm 23318 websites Dominica - $50 \r\n.dn.ua 1835 websites - $30 \r\n.do 5255 websites Dominican Republic- $30 \r\n.dy.fi 1112 websites - $30 \r\n.dz 5382 websites Algeria - $30 \r\n.ec 11731 websites Ecuador - $50 \r\n.ec 2897 websites International zone Ecuador:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ee 131791 websites Estonia- $50 \r\n.ee 10490 websites International zone Estonia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.es 1509048 websites Spain - $100 \r\n.es 683845 websites International zone Spain:.com .net .biz .info .name .tel .eu 3046076 websites Europe - $150 \r\n.eu 633384 websites International zone Europe:.com .net .biz .info .name .fi 361111 websites Finland - $80 \r\n.fi 69631 websites International zone Finland:.com .net .biz .info .name .fr 2810983 websites France - $150 \r\n.fr 639546 websites International zone France:.com .net .biz .info .name .ge 24598 websites Georgia - $50 \r\n.ge 1676 websites International zone Georgia:.com .net .biz .info .name .tel .gf 996 websites French Guiana - $30 \r\n.gg 10528 websites Guernsey islands - $50 \r\n.gh 703 websites Ghana - $30 \r\n.gi 981 websites Gibraltar - $30 \r\n.gp 2044 websites Guadeloupe - $30 \r\n.gq 2027422 websites Equatorial Guinea - $100 \r\n.gr 327215 websites Greece - $80 \r\n.gr 57984 websites International zone Greece:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.gt 15351 websites Guatemala - $50 \r\n.hk 116093 websites Hong Kong - $50 \r\n.hm 335 websites Heard & McDonald islands - $30 \r\n.hn 4732 websites Honduras - $30 \r\n.hr 75736 websites Croatia - $50 \r\n.hr 16592 websites International zone Croatia:.com .net .biz .info .name .tel .mobi .asia \r\n.ht 1299 websites Haiti - $30 \r\n.hu 53940 websites International zone Hungary:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ie 209620 websites Ireland - $50 \r\n.ie 49861 websites International zone Ireland:.com .net .biz .info .name .il 196266 websites Israel - $80 \r\n.il 38537 websites International zone Israel:.com .net .biz .info .name .tel .in 1157482 websites India - $100 \r\n.in 266179 websites International zone India:.com .net .biz .info .name .tel .io 496216 websites British Indian Ocean - $80 \r\n.iq 2401 websites Iraq - $30 \r\n.ir 574258 websites Iran - $80 \r\n.ir 15487 websites International zone Iran:.com .net .biz .info .name .tel .mobi .asia \r\n.it 2410105 websites Italy – $150 \r\n.it 954040 websites International zone Italy:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.je 3016 websites Ireland - $30 \r\n.jp 1825219 websites Japan - $150 \r\n.jp 4683252 websites International zone Japan:.com.net.biz.info.org.name.tel.mobi.asia-$200 \r\n.jp.net 5170 websites - $30 \r\n.ke 14677 websites Kenya - $50 \r\n.kg 10350 websites Kyrgyzstan - $30 \r\n.kg 664 websites International zone Kyrgyzstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ki 79 websites Kiribati - $30 \r\n.kn 3211 websites Saint Kitts and Nevis - $30 \r\n.kr 272463 websites Korea- $80 \r\n.kw 484 websites Kuwait - $30 \r\n.ky 5783 websites Cayman Islands - $30 \r\n.kz 113180 websites Kazakhstan - $80 \r\n.kz 5876 websites International zone Kazakhstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lc 1121 websites Saint Lucia - $30 \r\n.lk 32654 websites Sri Lanka - $30 \r\n.lt 137666 websites Lithuania- $50 \r\n.lt 27710 websites International zone Lithuania:.com .net .biz .info .name .tel .mobi .asia- $50 \r\n.lu 74322 websites Luxembourg - $50 \r\n.lu 4125 websites International zone Luxembourg:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lv 86593 websites Latvia - $50 \r\n.lv 8887 websites International zone Latvia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ma 59103 websites Morocco - $50 \r\n.mc 3046 websites Monaco - $30 \r\n.md 16730 websites Moldova - $50 \r\n.md 1293 websites International zone Moldova:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.me 761596 websites Montenegro - $80 \r\n.me 86897 websites International zone Montenegro:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.mg 3715 websites Madagascar- $30 \r\n.mk 13266 websites Macedonia - $50 \r\n.ml 2158835 websites Mali - $100 \r\n.mn 17044 websites Mongolia - $50 \r\n.mq 1112 websites Martinique (French) - $30 \r\n.mr 776 websites Mauritania - $30 \r\n.ms 7265 websites Montserrat - $30 \r\n.mt 1402 websites Malta - $30 \r\n.mu 6475 websites Maurifius - $30 \r\n.mv 1996 websites Maldives - $30 \r\n.mw 8579 websites Malawi - $30 \r\n.mx 670901 websites Mexico- $80 \r\n.mx 174571 websites International zone Mexico:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.my 143039 websites Malaysia- $50 \r\n.na 1094 websites - $30 \r\n.nc 3497 websites New Coledonia (French) - $30 \r\n.nl 3925784 websites Netherlands - $200 \r\n.nl 1019697 websites International zone Netherlands:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.no 620882 websites Norway - $80 \r\n.no 74318 websites International zone Norway:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.nu 255161 websites Niue- $50 \r\n.nz 593127 websites New Zealand - $80 \r\n.om 1701 websites Oman - $30 \r\n.pe 83224 websites Peru - $50 \r\n.pe 59157 websites International zone Peru:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pk 44464 websites Pakistan - $50 \r\n.pl 1795299 websites Poland - $100 \r\n.pl 327587 websites International zone Poland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pr 1358 websites Puerto Rico - $30 \r\n.pt 263136 websites Portugal - $80 \r\n.pt 17691 websites International zone Portugal:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.py 5593 websites Paraguay - $30 \r\n.py 653 websites International zone Paraguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.re 15089 websites Reunion (French) - $50 \r\n.ro 424401 websites Romania - $80 \r\n.ro 42046 websites International zone Romania:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.rs 85503 websites Serbia - $50 \r\n.ru 5025331 websites Russian - $250 \r\n.ru 514668 websites International zone Russian:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.rw 3806 websites Rwanda - $30 \r\n.sa 20421 websites Saudi Arabia- $50 \r\n.sa 5064 websites International zone Saudi Arabia:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.sc 4442 websites Seychelles- $30 \r\n.se 1491677 websites Sweden - $100 \r\n.se 293316 websites International zone Sweden:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sg 150351 websites Republic Of Singapore - $50 \r\n.sh 7560 websites Saint Helena - $30 \r\n.si 103778 websites Slovenia- $50 \r\n.si 12879 websites International zone Slovenia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sk 414198 websites Slovakia- $80 \r\n.sk 31572 websites International zone Slovakia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sm 8897 websites San Marino - $30 \r\n.sn 344 websites International zone Senegal:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.sn 4465 websites Senegal - $30 \r\n.sr 580 websites Suriname - $30 \r\n.sv 8432 websites Salvador- $30 \r\n.sx 2901 websites Sint Maarten - $30 \r\n.sy 2972 websites Syria - $30 \r\n.sz 321 websites Swaziland - $30 \r\n.tc 16384 websites Turks and Caicos Islands- $50 \r\n.tf 19841 websites French Sauthern Territory - $50 \r\n.tg 1230 websites Togo - $30 \r\n.th 22368 websites Kingdom Of Thailand- $50 \r\n.tj 6874 websites Tajikistan- $30 \r\n.tj 34 websites International zone Tajikistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tk 20085806 websites Tokelau - $500 \r\n.tl 2748 websites East Timor - $30 \r\n.tm 6395 websites Turkmenistan- $30 \r\n.tm 44 websites International zone Turkmenistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tr 243347 websites Turkey - $80 \r\n.tr 138818 International zone Turkey:.com .net .biz .info .name .tel .mobi .asia -$50 \r\n.tt 1017 websites Trinidad & Tobago  - $30 \r\n.ua 553216 websites Ukraina - $80 \r\n.ua 147202 websites International zone Ukraine:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ug 3806 websites Uganda - $30 \r\n.ug 720 websites International zone Uganda:.com .net .biz .info .name .tel .mobi.asia-$30 \r\n.uk 5975887 websites United Kingdom - $250 \r\n.uk 3304606 websites International zone United Kingdom:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.us 3139563 websites USA - $200 \r\n.us 578927 websites International zone USA:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.uy 15571 websites Uruguay - $50 \r\n.uy 31812 websites International zone Uruguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.uz 38357 websites Uzbekistan - $50 \r\n.uz  365 websites International zone Uzbekistan:.com .net .biz .info .name .tel .mobi .asia \r\n.vc 18641 websites Saint Vincent & Grenadines - $50 \r\n.ve 14015 websites Venezuela - $50 \r\n.ve 2898 websites International zone Venezuela:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.vg 8389 websites Virgin Islands (British) - $50 \r\n.vi 109 websites Virgin Islands (US) - $30 \r\n.vn 436005 websites Vietnam - $80 \r\n.vn 161855 websites International zone Vietnam:.com .net .biz .info .name .tel .mobi .asia - $50 \r\n.vu 1051 websites Vanuatu - $30 \r\n.wf 1133 websites Wallis & Futuna Islands - $30 \r\n.ws 99308 websites Samoa - $80 \r\n.ye 18 websites Yemen - $30 \r\n.yt 2004 websites Mayotte - $30 \r\n.za 1008308 websites South Africa - $100',''),(2278,1,462,'8','Henryevoli',''),(2279,1,462,'9','Henryevoli',''),(2280,1,462,'4','(541) 575-5068',''),(2281,1,462,'3','gtg511a@mail.gatech.edu',''),(2282,1,462,'6','Earning money in the Internet is easy if you use Robot. \r\nLink - https://24crypto.de/btcs-marketplace.php',''),(2283,1,463,'8','Henryevoli',''),(2284,1,463,'9','Henryevoli',''),(2285,1,463,'4','(324) 227-2184',''),(2286,1,463,'3','lutfiucar88@hotmail.com',''),(2287,1,463,'6','The huge income without investments is available. \r\nLink - - https://24crypto.de/tradingview-lend-btc.php',''),(2288,1,464,'8','Henryevoli',''),(2289,1,464,'9','Henryevoli',''),(2290,1,464,'4','(011) 625-4724',''),(2291,1,464,'3','qrptxyoddset@hotmail.com',''),(2292,1,464,'6','Make your money work for you all day long. \r\nLink - https://24crypto.de/kurs-bitcoin-coinmarket.php',''),(2293,1,465,'8','Henryevoli',''),(2294,1,465,'9','Henryevoli',''),(2295,1,465,'4','(713) 612-6045',''),(2296,1,465,'3','blackboy@gmx.net',''),(2297,1,465,'6','Make money in the internet using this Bot. It really works! \r\nLink - - https://24crypto.de/bitcoin-hedge-strategy.php',''),(2298,1,466,'8','Henryevoli',''),(2299,1,466,'9','Henryevoli',''),(2300,1,466,'4','(450) 302-3536',''),(2301,1,466,'3','mvolpe1@msn.com',''),(2302,1,466,'6','Thousands of bucks are guaranteed if you use this robot. \r\nLink - https://24crypto.de/best-trading-platform-for-bitcoin-uk.php',''),(2303,1,467,'8','Henryevoli',''),(2304,1,467,'9','Henryevoli',''),(2305,1,467,'4','(586) 516-2117',''),(2306,1,467,'3','raidod@gmail.com',''),(2307,1,467,'6','Need money? The financial robot is your solution. \r\nLink - https://24crypto.de/btcp-system.php',''),(2308,1,468,'8','Henryevoli',''),(2309,1,468,'9','Henryevoli',''),(2310,1,468,'4','(767) 207-8627',''),(2311,1,468,'3','templervb@gmx.de',''),(2312,1,468,'6','Automatic robot is the best start for financial independence. \r\nLink - https://24crypto.de/bitcoin-trade-confirmation.php',''),(2313,1,469,'8','Henryevoli',''),(2314,1,469,'9','Henryevoli',''),(2315,1,469,'4','(288) 500-7846',''),(2316,1,469,'3','gorrioncillo82@gmail.com',''),(2317,1,469,'6','The fastest way to make your wallet thick is found. \r\nLink - https://24crypto.de/calculate-bitcoin-investment-profit.php',''),(2318,1,470,'8','Henryevoli',''),(2319,1,470,'9','Henryevoli',''),(2320,1,470,'4','(188) 168-1205',''),(2321,1,470,'3','timothycole@gmx.net',''),(2322,1,470,'6','Making money is very easy if you use the financial Robot. \r\nLink - - https://24crypto.de/bitcoin-system-architecture.php',''),(2323,1,471,'8','Brian',''),(2324,1,471,'9','WRIGHT Eng',''),(2325,1,471,'4','(303) 800-6251',''),(2326,1,471,'3','sales1@astrologicalstudio.com',''),(2327,1,471,'6','Dear Madam, Dear Sir Do you want to know what kind of events in your life you can expect in coming new year 2021? In case of your interest, we can evolve absolutely accurate our 1-Year Forecast of Events reports for you and your loved ones. Please visit our https://astrologicalstudio.com/home/23-1-year-forecast-of-events.html for more information. We will be delighted to hear from you. Have a great day and a Happy New Year. Best regards Brian WRIGHT Eng., Astrological Studio, https://astrologicalstudio.com',''),(2328,1,472,'8','Henryevoli',''),(2329,1,472,'9','Henryevoli',''),(2330,1,472,'4','(760) 842-0120',''),(2331,1,472,'3','solodka84@yandex.ru',''),(2332,1,472,'6','Even a child knows how to make $100 today. \r\nLink - https://24crypto.de/bitcoin-automatic-trader.php',''),(2333,1,473,'8','Henryevoli',''),(2334,1,473,'9','Henryevoli',''),(2335,1,473,'4','(871) 147-2123',''),(2336,1,473,'3','ougriskallinikos@yahoo.gr',''),(2337,1,473,'6','Financial independence is what everyone needs. \r\nLink - https://24crypto.de/bitcoin-trading-forum-whaleclub.php',''),(2338,1,474,'8','Henryevoli',''),(2339,1,474,'9','Henryevoli',''),(2340,1,474,'4','(548) 331-2436',''),(2341,1,474,'3','emceestrike@yahoo.com',''),(2342,1,474,'6','Everyone can earn as much as he wants now. \r\nLink - - https://24crypto.de/btc-basf-trading-company.php',''),(2343,1,475,'8','Henryevoli',''),(2344,1,475,'9','Henryevoli',''),(2345,1,475,'4','(283) 044-6745',''),(2346,1,475,'3','kuka_rebelo@hotmail.com',''),(2347,1,475,'6','Earning money in the Internet is easy if you use Robot. \r\nLink - https://24crypto.de/how-to-trade-bitcoin-cme-futures.php',''),(2348,1,476,'8','Henryevoli',''),(2349,1,476,'9','Henryevoli',''),(2350,1,476,'4','(108) 462-8745',''),(2351,1,476,'3','jmemahoney@hotmail.com',''),(2352,1,476,'6','Everyone can earn as much as he wants suing this Bot. \r\nLink - https://24crypto.de/trade-bitcoin-cfd.php',''),(2353,1,477,'8','Henryevoli',''),(2354,1,477,'9','Henryevoli',''),(2355,1,477,'4','(578) 175-4615',''),(2356,1,477,'3','dalli@btkajax.se',''),(2357,1,477,'6','Your money work even when you sleep. \r\nLink - - https://24crypto.de/bitcoin-trader-opinie.php',''),(2358,1,478,'8','Henryevoli',''),(2359,1,478,'9','Henryevoli',''),(2360,1,478,'4','(363) 278-8865',''),(2361,1,478,'3','amiuccio@cantv.net',''),(2362,1,478,'6','Try out the automatic robot to keep earning all day long. \r\nLink - https://24crypto.de/bitcoin-coinmarketcap.php',''),(2363,1,479,'8','Henryevoli',''),(2364,1,479,'9','Henryevoli',''),(2365,1,479,'4','(456) 841-2566',''),(2366,1,479,'3','love_aui_forever@hotmail.com',''),(2367,1,479,'6','Watch your money grow while you invest with the Robot. \r\nLink - https://24crypto.de/how-to-trade-bitcoin-with-td-ameritrade.php',''),(2368,1,480,'8','Henryevoli',''),(2369,1,480,'9','Henryevoli',''),(2370,1,480,'4','(581) 233-2624',''),(2371,1,480,'3','ajay2000@gmail.com',''),(2372,1,480,'6','Earning money in the Internet is easy if you use Robot. \r\nLink - https://24crypto.de/can-you-buy-bitcoin-through-etrade.php',''),(2373,1,481,'8','Henryevoli',''),(2374,1,481,'9','Henryevoli',''),(2375,1,481,'4','(332) 164-7063',''),(2376,1,481,'3','sxyprincss2003@yahoo.com',''),(2377,1,481,'6','Find out about the easiest way of money earning. \r\nLink - https://24crypto.de/us-market-bitcoin.php',''),(2378,1,482,'8','Jeremy',''),(2379,1,482,'9','Webcontentzone',''),(2380,1,482,'4','(000) 000-0000',''),(2381,1,482,'3','jeremy@digitalcontentzone.com',''),(2382,1,482,'6','Hi team at mannplumbingandheating\r\n \r\nHow are you?\r\n\r\nDo you offer article placements on your site\r\n\r\n- We would get the English article written which will fit the nature/topic of your site.\r\n- In the article there is a good chance there will be a link going to a Business/Finance/Home type of site, which will be very well integrated.\r\n- Payment is made via Paypal or bank transfer.\r\n\r\nWhat are your rates for such a placement?\r\n\r\nThanks a lot.\r\n\r\nKind Regards,\r\n\r\nJeremy - Media Manager\r\nWebsite - Webcontentzone.com\r\n\r\nIf you would prefer not to receive any further requests of this nature, please reply \"not interested\".',''),(2383,1,483,'8','Henryevoli',''),(2384,1,483,'9','Henryevoli',''),(2385,1,483,'4','(433) 183-6661',''),(2386,1,483,'3','ade.casino@googlemail.com',''),(2387,1,483,'6','The fastest way to make your wallet thick is found. \r\nLink - https://24crypto.de/tradingview-btc-futures.php',''),(2388,1,484,'8','Amanda',''),(2389,1,484,'9','Kaiser-Jones',''),(2390,1,484,'4','(502) 592-4003',''),(2391,1,484,'3','Ajkjones@aol.com',''),(2392,1,484,'6','We would like to have 3 toilets replaced in our home with new toilets. We were wanting a possible estimate and to see if you had availability on Monday, 1/18/20. Thank you, Amanda.',''),(2393,1,485,'8','Henryevoli',''),(2394,1,485,'9','Henryevoli',''),(2395,1,485,'4','(246) 413-3444',''),(2396,1,485,'3','mbchong123@gmail.com',''),(2397,1,485,'6','We know how to make our future rich and do you? \r\nLink - https://24crypto.de/bitcoin-etf-trading.php',''),(2398,1,486,'8','Zachary',''),(2399,1,486,'9','Shanaberger',''),(2400,1,486,'4','(302) 296-6329',''),(2401,1,486,'3','zack@bluecollarrestoration.com',''),(2402,1,486,'6','Have water in craw space. A pipe appears to have come apart. Need immediate service. Easy access to craw space in garage. Please call immediately. As soon as humanly possible.\r\n\r\nCell\r\n302 296 6329\r\n\r\n\r\n\r\nZachary Shanaberger, address is\r\n75 Beachwood Dr\r\nFairfield Pa',''),(2403,1,487,'8','Henryevoli',''),(2404,1,487,'9','Henryevoli',''),(2405,1,487,'4','(760) 131-6587',''),(2406,1,487,'3','tkeguru130@yahoo.com',''),(2407,1,487,'6','The huge income without investments is available. \r\nLink - - https://24crypto.de/will-bitcoin-trigger-stock-market-bust.php',''),(2408,1,488,'8','Henryevoli',''),(2409,1,488,'9','Henryevoli',''),(2410,1,488,'4','(421) 826-6432',''),(2411,1,488,'3','ondereken@gmail.com',''),(2412,1,488,'6','The huge income without investments is available, now! \r\nLink - https://24crypto.de/market-bitcoin-korea.php',''),(2413,1,489,'8','Henryevoli',''),(2414,1,489,'9','Henryevoli',''),(2415,1,489,'4','(067) 757-8381',''),(2416,1,489,'3','jtronds@broadpark.no',''),(2417,1,489,'6','Try out the best financial robot in the Internet. \r\nLink - - https://24crypto.de/trading-bitcoin-in-ghana.php',''),(2418,1,490,'8','Henryevoli',''),(2419,1,490,'9','Henryevoli',''),(2420,1,490,'4','(175) 086-0877',''),(2421,1,490,'3','aperezdemadrid@hotmail.com',''),(2422,1,490,'6','Check out the new financial tool, which can make you rich. \r\nLink - https://24crypto.de/kraken-btc-deposit.php',''),(2423,1,491,'8','Henryevoli',''),(2424,1,491,'9','Henryevoli',''),(2425,1,491,'4','(431) 403-5788',''),(2426,1,491,'3','evolve_xp@hotmail.com',''),(2427,1,491,'6','Rich people are rich because they use this robot. \r\nLink - - https://24crypto.de/genuine-bitcoin-trading-sites.php',''),(2428,1,492,'8','Henryevoli',''),(2429,1,492,'9','Henryevoli',''),(2430,1,492,'4','(662) 702-5666',''),(2431,1,492,'3','gessicadolce@gmail.com',''),(2432,1,492,'6','Still not a millionaire? Fix it now! \r\nLink - https://24crypto.de/bitcoin-trader-iniciar-sesion.php',''),(2433,1,493,'8','Henryevoli',''),(2434,1,493,'9','Henryevoli',''),(2435,1,493,'4','(562) 134-4303',''),(2436,1,493,'3','n_digby@hotmail.com',''),(2437,1,493,'6','The best online job for retirees. Make your old ages rich. \r\nLink - https://24crypto.de/how-to-trade-bitcoin-for-litecoin-on-gdax.php',''),(2438,1,494,'8','Henryevoli',''),(2439,1,494,'9','Henryevoli',''),(2440,1,494,'4','(118) 571-1224',''),(2441,1,494,'3','fobrnno@gmail.com',''),(2442,1,494,'6','Make money 24/7 without any efforts and skills. \r\nLink - https://24crypto.de/trade-genius-academy-bitcoin.php',''),(2443,1,495,'8','Henryevoli',''),(2444,1,495,'9','Henryevoli',''),(2445,1,495,'4','(042) 661-5180',''),(2446,1,495,'3','kirshbergg@gmail.com',''),(2447,1,495,'6','Make your money work for you all day long. \r\nLink - https://24crypto.de/bitcoin-trading-volume-charts.php',''),(2448,1,496,'8','Henryevoli',''),(2449,1,496,'9','Henryevoli',''),(2450,1,496,'4','(478) 225-8515',''),(2451,1,496,'3','moneymmoney@hotmail.com',''),(2452,1,496,'6','We know how to make our future rich and do you? \r\nLink - https://24crypto.de/bitcoin-core-coin-market-cap.php',''),(2453,1,497,'8','Henryevoli',''),(2454,1,497,'9','Henryevoli',''),(2455,1,497,'4','(447) 366-5426',''),(2456,1,497,'3','prepaid1.rajkot@in.airtel.com',''),(2457,1,497,'6','Even a child knows how to make money. This robot is what you need! \r\nLink - https://24crypto.de/trade-btc-to-usd.php',''),(2458,1,498,'8','Henryevoli',''),(2459,1,498,'9','Henryevoli',''),(2460,1,498,'4','(232) 708-4362',''),(2461,1,498,'3','john.patterson@olympiclifts.co.uk',''),(2462,1,498,'6','The financial Robot is the most effective financial tool in the net! \r\nLink - https://24crypto.de/bitcoin-market-cap-compare.php',''),(2463,1,499,'8','Henryevoli',''),(2464,1,499,'9','Henryevoli',''),(2465,1,499,'4','(867) 543-6771',''),(2466,1,499,'3','chillyboy007@gmail.com',''),(2467,1,499,'6','Attention! Financial robot may bring you millions! \r\nLink - https://24crypto.de/junior-bitcoin-trader.php',''),(2468,1,500,'8','Henryevoli',''),(2469,1,500,'9','Henryevoli',''),(2470,1,500,'4','(557) 308-0225',''),(2471,1,500,'3','kronikz420@hotmail.com',''),(2472,1,500,'6','The fastest way to make you wallet thick is here. \r\nLink - - https://24crypto.de/bitcoin-market-cap-value.php',''),(2473,1,501,'8','Henryevoli',''),(2474,1,501,'9','Henryevoli',''),(2475,1,501,'4','(025) 484-7140',''),(2476,1,501,'3','nahumcohen@hotmail.com',''),(2477,1,501,'6','Small investments can bring tons of dollars fast. \r\nLink - https://24crypto.de/breakout-trading-bitcoin.php',''),(2478,1,502,'8','Henryevoli',''),(2479,1,502,'9','Henryevoli',''),(2480,1,502,'4','(828) 825-3528',''),(2481,1,502,'3','ostin68@gmail.com',''),(2482,1,502,'6','Need money? Get it here easily? \r\nLink - https://24crypto.de/gemini-bitcoin-trading-volume.php',''),(2483,1,503,'8','Henryevoli',''),(2484,1,503,'9','Henryevoli',''),(2485,1,503,'4','(640) 605-4280',''),(2486,1,503,'3','saobanggia11@comcast.net',''),(2487,1,503,'6','Launch the financial Bot now to start earning. \r\nLink - https://24crypto.de/demo-bitcoin-account.php',''),(2488,1,504,'8','Henryevoli',''),(2489,1,504,'9','Henryevoli',''),(2490,1,504,'4','(373) 605-7065',''),(2491,1,504,'3','serega7wrestling@gmail.com',''),(2492,1,504,'6','Even a child knows how to make money. Do you? \r\nLink - https://24crypto.de/bitcoin-shopping-market.php',''),(2493,1,505,'8','Mike Bradberry',''),(2494,1,505,'9','Mike Bradberry',''),(2495,1,505,'4','(051) 404-7417',''),(2496,1,505,'3','see-email-in-message@monkeydigital.co',''),(2497,1,505,'6','Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your mannplumbingandheating.com website? \r\nHaving a high DA score, always helps \r\n \r\nGet your mannplumbingandheating.com to have a 50+ points in Moz DA with us today and rip the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nthank you \r\nMike Bradberry\r\n \r\nsupport@monkeydigital.co',''),(2498,1,506,'8','Henryevoli',''),(2499,1,506,'9','Henryevoli',''),(2500,1,506,'4','(053) 560-2060',''),(2501,1,506,'3','gorbunov11@yandex.ru',''),(2502,1,506,'6','Your money work even when you sleep. \r\nLink - https://24crypto.de/cryptocurrency-market-cap-bitcoin.php',''),(2503,1,507,'8','Henryevoli',''),(2504,1,507,'9','Henryevoli',''),(2505,1,507,'4','(404) 837-6726',''),(2506,1,507,'3','debdtexas@gmail.com',''),(2507,1,507,'6','Start making thousands of dollars every week. \r\nLink - - https://24crypto.de/nyse-bitcoin-trading-platform.php',''),(2508,1,508,'8','Henryevoli',''),(2509,1,508,'9','Henryevoli',''),(2510,1,508,'4','(104) 414-2827',''),(2511,1,508,'3','oxkar_coer@hotmail.com',''),(2512,1,508,'6','Automatic robot is the best start for financial independence. \r\nLink - https://24crypto.de/american-bitcoin-trader-alexander-johnson.php',''),(2513,1,509,'8','Henryevoli',''),(2514,1,509,'9','Henryevoli',''),(2515,1,509,'4','(128) 221-3042',''),(2516,1,509,'3','angelbab1es2@aol.com',''),(2517,1,509,'6','The financial Robot is the most effective financial tool in the net! \r\nLink - - https://24crypto.de/trade-bitcoin-in-uk.php',''),(2518,1,510,'8','Henryevoli',''),(2519,1,510,'9','Henryevoli',''),(2520,1,510,'4','(673) 608-5838',''),(2521,1,510,'3','robertomarch@msn.com',''),(2522,1,510,'6','Start making thousands of dollars every week. \r\nLink - - https://24crypto.de/which-bitcoin-broker.php',''),(2523,1,511,'8','Henryevoli',''),(2524,1,511,'9','Henryevoli',''),(2525,1,511,'4','(022) 705-5304',''),(2526,1,511,'3','czarcstr214@gmail.com',''),(2527,1,511,'6','Learn how to make hundreds of backs each day. \r\nLink - https://24crypto.de/is-bitcoin-traded-publicly.php',''),(2528,1,512,'8','Henryevoli',''),(2529,1,512,'9','Henryevoli',''),(2530,1,512,'4','(614) 647-8846',''),(2531,1,512,'3','reldork@gmail.com',''),(2532,1,512,'6','Need money? Get it here easily? \r\nLink - https://24crypto.de/bitcoin-markets-recover.php',''),(2533,1,513,'8','Henryevoli',''),(2534,1,513,'9','Henryevoli',''),(2535,1,513,'4','(734) 152-0488',''),(2536,1,513,'3','ag_morrison@msn.com',''),(2537,1,513,'6','Even a child knows how to make money. This robot is what you need! \r\nLink - https://24crypto.de/q-es-bitcoin-trader.php',''),(2538,1,514,'8','Henryevoli',''),(2539,1,514,'9','Henryevoli',''),(2540,1,514,'4','(431) 873-6256',''),(2541,1,514,'3','kou_k_072@hotmail.com',''),(2542,1,514,'6','Financial robot guarantees everyone stability and income. \r\nLink - - https://24crypto.de/cara-deposit-bitcoin-lewat-bca-mobile.php',''),(2543,1,515,'8','Henryevoli',''),(2544,1,515,'9','Henryevoli',''),(2545,1,515,'4','(805) 543-1104',''),(2546,1,515,'3','tristan21@tlen.pl',''),(2547,1,515,'6','Looking forward for income? Get it online. \r\nLink - https://24crypto.de/deposit-problem-hitbtc.php',''),(2548,1,516,'8','Henryevoli',''),(2549,1,516,'9','Henryevoli',''),(2550,1,516,'4','(588) 714-7228',''),(2551,1,516,'3','christophe.castan@gmail.com',''),(2552,1,516,'6','Make money, not war! Financial Robot is what you need. \r\nLink - https://24crypto.de/btc-xrp-tradingview.php',''),(2553,1,517,'8','Henryevoli',''),(2554,1,517,'9','Henryevoli',''),(2555,1,517,'4','(636) 085-6045',''),(2556,1,517,'3','bazinetdenis@hotmail.com',''),(2557,1,517,'6','Trust the financial Bot to become rich. \r\nLink - https://24crypto.de/trade-doge-for-btc.php',''),(2558,1,518,'8','Henryevoli',''),(2559,1,518,'9','Henryevoli',''),(2560,1,518,'4','(654) 041-1033',''),(2561,1,518,'3','josegh8813@gmail.com',''),(2562,1,518,'6','Making money is very easy if you use the financial Robot. \r\nLink - https://24crypto.de/comment-trader-les-bitcoins.php',''),(2563,1,519,'8','Roni Deluz',''),(2564,1,519,'9','Deluz',''),(2565,1,519,'4','(508) 292-1357',''),(2566,1,519,'3','healedcarehome@gmail.com',''),(2567,1,519,'6','HEALED CARE HOME is a private home, A PLACE FOR MEDICALLY FRAGILE PERSONS. It’s on a beautiful island of Martha’s Vineyard where the rich and famous come for R&R. \r\n\r\nBefore modern medicine we use to take Care of our love ones at home. Caregivers of the pass was family members. \r\n\r\nThe physical safety and the stability of our love ones emotions was more of a priority back then.  \r\n\r\nToday due to modernization its normal to Put a family member in institution called nursing homes and facilities. \r\n\r\nToday Care homes resemble the type of loving environment that’s similar to our own homes. \r\n\r\nLook at our website for more https://healedcarehome.com/\r\n\r\nCare homes represent family,  love, safety and It represents honor respect and independence.  It’s a place where you can call your home away from your home. A place where you can check in all summer or extended time or just a short respite. Because we are family.\r\n\r\nOur caring and passionate staff go above and beyond to ensure our residents  live in a peaceful loving environment that’s own and run by family. \r\n\r\nIn our newly renovated home We have implemented COVID safety and health policies to ensure that our residents are protected from the virus. \r\n\r\nSome of these changes include\r\n\r\nPrivate RECREATION SPACE, PRIVATE dining space for safety. Out side grounds recreation, Virtual entertainment and online movement classes. Regular safety checks and Covid testing. Stringent \r\n\r\nCleaning protocols.\r\n\r\nOur residents are our family too .We use technology such as iPads,  Zoom visits, and special Apps to help our residents stay connected to their love ones.\r\n\r\nFor more, visit https://healedcarehome.com/\r\n\r\nSimply reply to email or call us for more details & booking.',''),(2568,1,520,'8','Williamguexy',''),(2569,1,520,'9','WilliamguexyEM',''),(2570,1,520,'4','(170) 475-0350',''),(2571,1,520,'3','jacksonMus@ggmmails.com',''),(2572,1,520,'6','I kept hearing about Bitcoin on the news, but had no idea how to invest! \r\n \r\nThat\'s when I heard about Joe\'s beta testing. \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Dq&sa=D&ljl=qla&usg=AFQjCNHVxvk2YmHpOxS9HBrvNR92fr6sBw   <<<<<<<<<<< \r\n \r\nThe whole process was explained to me and I was able to start trading within minutes. \r\n \r\nI\'ve made over $ 75,000 so far and I don\'t see any reason to slow down! \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Da&sa=D&lmp=pdp&usg=AFQjCNFmdcUrwh_NlvClKeEaVPTKYlFtoA   <<<<<<<<<<<',''),(2573,1,521,'8','Greggsuddy',''),(2574,1,521,'9','GreggsuddyDR',''),(2575,1,521,'4','(784) 281-1853',''),(2576,1,521,'3','jacksonMus@ggmmails.com',''),(2577,1,521,'6','When I joined The Bitcoin Code 2 months ago, never could have I ever imagined the series of events that would unfold just days after locking in my free software. \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Do&sa=D&qhq=qjo&usg=AFQjCNEK-ZrGWCbJNVLwJWYlUp3sBCEINQ   <<<<<<<<<<< \r\n \r\nI was able to clear my $131,382 debt. There is no greater feeling than to be debt-free. \r\n \r\nNow, I’m in the process of buying my dream home. \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Do&sa=D&oqa=pel&usg=AFQjCNEK-ZrGWCbJNVLwJWYlUp3sBCEINQ   <<<<<<<<<<< \r\n \r\nI still can’t believe this is all really happening…I’m forever grateful to Steve. \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Da&sa=D&abq=qiq&usg=AFQjCNFmdcUrwh_NlvClKeEaVPTKYlFtoA   <<<<<<<<<<<',''),(2578,1,522,'8','Francispoile',''),(2579,1,522,'9','FrancispoileCQ',''),(2580,1,522,'4','(362) 774-5841',''),(2581,1,522,'3','jacksonMus@ggmmails.com',''),(2582,1,522,'6','The results of the software speaks for itself... \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Do&sa=D&qqa=acq&usg=AFQjCNEK-ZrGWCbJNVLwJWYlUp3sBCEINQ   <<<<<<<<<<< \r\n \r\njust as promised, I made over $13,000 every single day. \r\n \r\nDo I really need to say more? \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Da&sa=D&oxa=qfa&usg=AFQjCNFmdcUrwh_NlvClKeEaVPTKYlFtoA   <<<<<<<<<<<',''),(2583,1,523,'8','LewisDorma',''),(2584,1,523,'9','LewisDormaOQ',''),(2585,1,523,'4','(106) 784-1517',''),(2586,1,523,'3','jacksonMus@ggmmails.com',''),(2587,1,523,'6','Is this for real? \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Da&sa=D&lba=ogo&usg=AFQjCNFmdcUrwh_NlvClKeEaVPTKYlFtoA   <<<<<<<<<<< \r\n \r\nI just joined 2 days ago, and my account balance has already ballooned to a staggering $27,484.98!!! \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Do&sa=D&oll=pql&usg=AFQjCNEK-ZrGWCbJNVLwJWYlUp3sBCEINQ   <<<<<<<<<<<',''),(2588,1,524,'8','Ronaldfeefs',''),(2589,1,524,'9','RonaldfeefsWM',''),(2590,1,524,'4','(647) 545-3630',''),(2591,1,524,'3','jacksonMus@ggmmails.com',''),(2592,1,524,'6','I was looking for an easy way to start Bitcoin trading and that was my golden ticket. \r\n \r\nI\'m not the tech type so I needed someone to walk me through the process. \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Da&sa=D&ojq=pgq&usg=AFQjCNFmdcUrwh_NlvClKeEaVPTKYlFtoA   <<<<<<<<<<< \r\n \r\nThat\'s exactly what Joe and his Bitcoin Method did. \r\n \r\nNow I have my own $ 100,000 at my disposal! \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb&sa=D&ofa=pda&usg=AFQjCNE6WXsUPEp5dNV1lG_u3VDmHzsWHA   <<<<<<<<<<<',''),(2593,1,525,'8','Larrywen',''),(2594,1,525,'9','LarrywenWU',''),(2595,1,525,'4','(304) 003-1857',''),(2596,1,525,'3','jacksonMus@ggmmails.com',''),(2597,1,525,'6','I\'ve never really had an interest in investing. \r\n \r\nI preferred to keep my money in the bank. \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb&sa=D&qzl=pll&usg=AFQjCNE6WXsUPEp5dNV1lG_u3VDmHzsWHA   <<<<<<<<<<< \r\n \r\nHowever, when I returned to college, I started looking for new ways to earn money to pay for all my expenses. \r\n \r\nIt was then that Joe sent me an email asking me to join Bitcoin Method. \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb&sa=D&ovq=qzl&usg=AFQjCNE6WXsUPEp5dNV1lG_u3VDmHzsWHA   <<<<<<<<<<< \r\n \r\nAfter he explained it to me, I still didn\'t really understand the rules, but I thought, \"Well it\'s free, so why not?\" \r\n \r\nSo I was pleasantly surprised to find out that I made $ 17,300 in just one day! \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Dq&sa=D&orl=oao&usg=AFQjCNHVxvk2YmHpOxS9HBrvNR92fr6sBw   <<<<<<<<<<<',''),(2598,1,526,'8','Kermitcef',''),(2599,1,526,'9','KermitcefSU',''),(2600,1,526,'4','(842) 421-0417',''),(2601,1,526,'3','jacksonMus@ggmmails.com',''),(2602,1,526,'6','I like learning about new technologies and extra cash can never hurt, so naturally I was interested in Bitcoin Method. \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Do&sa=D&qba=prl&usg=AFQjCNEK-ZrGWCbJNVLwJWYlUp3sBCEINQ   <<<<<<<<<<< \r\n \r\nWhen Joe told me I could join for free, I took the opportunity and after just a few months I was earning enough to quit my job! \r\n \r\nNow I am my own boss and earn over $ 37,000 a week! \r\n \r\n>>>>>>>>>>     https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FbW9Ahb%3Fq%3Do&sa=D&ooo=lpa&usg=AFQjCNEK-ZrGWCbJNVLwJWYlUp3sBCEINQ   <<<<<<<<<<<',''),(2603,1,527,'8','Lisa',''),(2604,1,527,'9','Cline',''),(2605,1,527,'4','(717) 860-5083',''),(2606,1,527,'3','ljclin@ship.edu',''),(2607,1,527,'6','Hi, I need to have someone come and replace my water heater, and I have a leak in the pipes.  I would like an appointment next week, January 13, 14, or 15 if possible?  \r\n\r\nThank you.',''),(2608,1,528,'8','Henryevoli',''),(2609,1,528,'9','Henryevoli',''),(2610,1,528,'4','(333) 864-3348',''),(2611,1,528,'3','anders.floren@gmail.com',''),(2612,1,528,'6','Need money? Get it here easily! Just press this to launch the robot. \r\nLink - https://24crypto.de/colombia-bitcoin-market.php',''),(2613,1,529,'8','KhedVatt',''),(2614,1,529,'9','KhedVatt',''),(2615,1,529,'4','(465) 222-4765',''),(2616,1,529,'3','wiljweg233wd5gphi@gmail.com',''),(2617,1,529,'6','generic viagra canada <a href=\"https://buyviagrrxon.com/#\">viagra soft</a> viagra geneirc',''),(2618,1,530,'8','Henryevoli',''),(2619,1,530,'9','Henryevoli',''),(2620,1,530,'4','(328) 036-3635',''),(2621,1,530,'3','spestoril@audioclinica.pt',''),(2622,1,530,'6','Financial robot keeps bringing you money while you sleep. \r\nLink - https://24crypto.de/can-you-trade-bitcoins-for-dollars.php',''),(2623,1,531,'8','Henryevoli',''),(2624,1,531,'9','Henryevoli',''),(2625,1,531,'4','(281) 106-3080',''),(2626,1,531,'3','emino87@mail.ru',''),(2627,1,531,'6','Make money in the internet using this Bot. It really works! \r\nLink - - https://24crypto.de/bitcoin-cme-futures-trading.php',''),(2628,1,532,'8','Henryevoli',''),(2629,1,532,'9','Henryevoli',''),(2630,1,532,'4','(771) 705-1546',''),(2631,1,532,'3','jesse.r.hudson@gmail.com',''),(2632,1,532,'6','Rich people are rich because they use this robot. \r\nLink - https://24crypto.de/how-profitable-is-bitcoin-trading.php',''),(2633,1,533,'8','Henryevoli',''),(2634,1,533,'9','Henryevoli',''),(2635,1,533,'4','(604) 720-3508',''),(2636,1,533,'3','chiklyb@hotmail.com',''),(2637,1,533,'6','Try out the best financial robot in the Internet. \r\nLink - https://24crypto.de/no-deposit-bitcoin-bonus.php',''),(2638,1,534,'8','BART',''),(2639,1,534,'9','Raifsnider',''),(2640,1,534,'4','(717) 830-7380',''),(2641,1,534,'3','raifsnider102938@gmail.com',''),(2642,1,534,'6','Hello, \r\nI am writing to let you know that I have recently sent payment for invoice #110258 in the amount of $109.36.  I will be paying the remaining $100.00 before the end of January 2021.  Thank you for your time.  \r\n\r\nBart Raifsnider',''),(2643,1,535,'8','Henryevoli',''),(2644,1,535,'9','Henryevoli',''),(2645,1,535,'4','(738) 005-6802',''),(2646,1,535,'3','pedrozepa@hotmail.com',''),(2647,1,535,'6','Making money is very easy if you use the financial Robot. \r\nLink - https://24crypto.de/bitcoin-xm-trading.php',''),(2648,1,536,'8','Henryevoli',''),(2649,1,536,'9','Henryevoli',''),(2650,1,536,'4','(217) 483-7846',''),(2651,1,536,'3','mzslowmo@gmail.com',''),(2652,1,536,'6','Make thousands every week working online here. \r\nLink - https://24crypto.de/how-to-get-profit-in-bitcoin.php',''),(2653,1,537,'8','Henryevoli',''),(2654,1,537,'9','Henryevoli',''),(2655,1,537,'4','(617) 124-8718',''),(2656,1,537,'3','hoanglee08@gmail.com',''),(2657,1,537,'6','It is the best time to launch the Robot to get more money. \r\nLink - https://24crypto.de/btc-margin-trading.php',''),(2658,1,538,'8','Peter Goldman',''),(2659,1,538,'9','Peter Goldman',''),(2660,1,538,'4','(736) 053-0120',''),(2661,1,538,'3','no-replyWat@gmail.com',''),(2662,1,538,'6','Hello \r\n \r\nCompetition not playing the game fair and square? \r\nNow you can fight back. \r\n \r\nNegative SEO, to make their SEO be ruined \r\nhttps://blackhat.to/ \r\n \r\nEmail us for any queries: \r\nsupport@blackhat.to',''),(2663,1,539,'8','Jen',''),(2664,1,539,'9','Manning',''),(2665,1,539,'4','(000) 000-0000',''),(2666,1,539,'3','dsi@eclipso.email',''),(2667,1,539,'6','Hi,\r\n\r\nI thought you may be interested.\r\n \r\nWe supply the best niche turnkey dropshipping stores out there.\r\nYou keep all of the profit. We are the designers this is all we do.\r\n\r\nDropshipping Made Simple\r\nFree hosting, domain and social media marketing materials included.\r\nJust a one time fee for your dropship store and thats it.\r\n\r\nCome see our all new available dropship businesses at https://dropshippingincome.com \r\n\r\nWe look forward to seeing you on our site.\r\n\r\nKind regards,\r\nJen M.\r\nDSI',''),(2668,1,540,'8','Henryevoli',''),(2669,1,540,'9','Henryevoli',''),(2670,1,540,'4','(661) 001-2772',''),(2671,1,540,'3','eddiealmighty@hotmail.com',''),(2672,1,540,'6','The financial Robot is your future wealth and independence. \r\nLink - https://bitmoneylab.de/bitcoin-traders-club-review.php',''),(2673,1,541,'8','Yvonne',''),(2674,1,541,'9','Gregg',''),(2675,1,541,'4','(443) 534-2062',''),(2676,1,541,'3','gregg.yvonne@gmail.com',''),(2677,1,541,'6','Hi,\r\nI just want to share with you a great website which provide account for SEO, affiliate marketing, dropshipping, ecommerce at cheap price. Here it is: https://seotool.club/group-buy-service\r\nExample: \r\nAhrefs account for just $15.\r\nSemrush account for just $10.\r\nAdplexity account for just $25.\r\nAdspy account for just $20.\r\nJungleScout for just $15.\r\nSTM forum for just $15.\r\nAnd about more than 30+ internet marketing tools at Affordable Price.\r\nThis website is group buy service. You can visit this link https://seotool.club/group-buy-service to check it out\r\nThank!',''),(2678,1,542,'8','Eric',''),(2679,1,542,'9','Jones',''),(2680,1,542,'4','(555) 555-1212',''),(2681,1,542,'3','ericjonesonline@outlook.com',''),(2682,1,542,'6','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at mannplumbingandheating.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(2683,1,543,'8','Tom',''),(2684,1,543,'9','Hanson',''),(2685,1,543,'4','(518) 712-7953',''),(2686,1,543,'3','tom@designsmirk.com',''),(2687,1,543,'6','Hello,\r\n\r\nI am trying to get in touch with the staff member that oversees your website. Can you point me in the right direction?\r\n\r\nThanks!',''),(2688,1,544,'8','Henryevoli',''),(2689,1,544,'9','Henryevoli',''),(2690,1,544,'4','(016) 183-4271',''),(2691,1,544,'3','chalainsms@yahoo.com',''),(2692,1,544,'6','Launch the financial Robot and do your business. \r\nLink - https://affcrypto.de/deposit-credit-card-withdraw-bitcoin.php',''),(2693,1,545,'8','Henryevoli',''),(2694,1,545,'9','Henryevoli',''),(2695,1,545,'4','(533) 003-4001',''),(2696,1,545,'3','stm.az@telefonica.net',''),(2697,1,545,'6','Earn additional money without efforts and skills. \r\nLink - https://allcryptocoins.de/trading-sites-bitcoins.php',''),(2698,1,546,'8','Reid Andrews',''),(2699,1,546,'9','Andrews',''),(2700,1,546,'4','(954) 751-4317',''),(2701,1,546,'3','reidandrewsvc@gmail.com',''),(2702,1,546,'6','Hello,\r\n\r\nLooking to outsource your extra web design & development tasks to balance your loads? we are here to provide great services at very affordable price.\r\n\r\nWe could start with some test tasks, so there is no risk. We just want to build trust & good working relationship with you & your company.\r\n\r\nReply to my email to discuss more in details.\r\n\r\nRegards\r\nReid Andrews',''),(2703,1,547,'8','Paula',''),(2704,1,547,'9','Hembree',''),(2705,1,547,'4','(985) 746-2690',''),(2706,1,547,'3','hembree.paula@yahoo.com',''),(2707,1,547,'6','Do you want to find out how you can build your own online business selling stuff for commission payments? Have a look at: https://bit.ly/earn-cash-with-affiliate-marketing',''),(2708,1,548,'8','Henryevoli',''),(2709,1,548,'9','Henryevoli',''),(2710,1,548,'4','(061) 648-7170',''),(2711,1,548,'3','teton444@yahoo.fr',''),(2712,1,548,'6','Have no money? It’s easy to earn them online here. \r\nLink - https://cryptoncoins.de/apec-business-travel-card-system-abtc.php',''),(2713,1,549,'8','Francis',''),(2714,1,549,'9','Jamieson',''),(2715,1,549,'4','(805) 372-1751',''),(2716,1,549,'3','francis.jamieson@alexabusinessdirectory.link',''),(2717,1,549,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://alexabusinessdirectory.link/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\n \r\n\r\n \r\nFrancis\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\n2764 Pleasant Road Suite        Suite A PMB 708        Fort Mill        SC        29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://alexabusinessdirectory.link/out.php?site=mannplumbingandheating.com',''),(2718,1,550,'8','Henryevoli',''),(2719,1,550,'9','Henryevoli',''),(2720,1,550,'4','(138) 501-7423',''),(2721,1,550,'3','zelo1@msn.com',''),(2722,1,550,'6','The huge income without investments is available. \r\nLink - https://crypmoney.de/btc-markets-wallet-address.php',''),(2723,1,551,'8','Henryevoli',''),(2724,1,551,'9','Henryevoli',''),(2725,1,551,'4','(713) 148-3043',''),(2726,1,551,'3','marines71@live.com',''),(2727,1,551,'6','Launch the financial Robot and do your business. \r\nLink - https://aicrypto4.de/que-es-trading-bitcoin.php',''),(2728,1,552,'8','Henryevoli',''),(2729,1,552,'9','Henryevoli',''),(2730,1,552,'4','(307) 085-0058',''),(2731,1,552,'3','ihbraaf@zahav.net.il',''),(2732,1,552,'6','Even a child knows how to make money. This robot is what you need! \r\nLink - https://cryptoncoins.de/is-bitcoin-publicly-traded.php',''),(2733,1,553,'8','Terry',''),(2734,1,553,'9','Albert',''),(2735,1,553,'4','(732) 497-8827',''),(2736,1,553,'3','terry@brinkbids.com',''),(2737,1,553,'6','Hi there,\r\n\r\nHope you are doing well.\r\n\r\nThis message is from Brink Estimating, LLC to let you know about our services. We are a NEW JERSEY based cost estimating & quantity take-off firm, having extensive experience of cost estimation and deal with both residential and commercial projects for general and sub contractors.\r\nWe are providing this service at a price of 50% less than market.\r\nDo send over the plans/blueprints/drawings if you need any job/project to be quoted.\r\n\r\nThank you.\r\n\r\nTerry Albert\r\nMarketing Lead\r\nBrink Estimating, LLC\r\n445 Virginia Ave Jersey City, New Jersey 07304\r\nTel: (732) 497-8827\r\nEmail:terry@brinkbids.com\r\nEmail:brinkestimating@gmail.com\r\nWeb:brinkbids.com',''),(2738,1,554,'8','Ted n Kim',''),(2739,1,554,'9','Cuff',''),(2740,1,554,'4','(717) 552-0554',''),(2741,1,554,'3','ksmck1064@gmail.com',''),(2742,1,554,'6','Kim n Ted Cuff we need help with plumbing issues asap. Sump pump. Drains.  Its hard to find someone local who isn\'t very expensive. Or reliable or isn\'t booked out for weeks. Thank you',''),(2743,1,555,'8','Henryevoli',''),(2744,1,555,'9','Henryevoli',''),(2745,1,555,'4','(454) 807-3374',''),(2746,1,555,'3','bernardopbaptista@gmail.com',''),(2747,1,555,'6','Buy everything you want earning money online. \r\nLink - http://gasthausamflughafen.de/bitcoin-transaction-testnet.php',''),(2748,1,556,'8','Henryevoli',''),(2749,1,556,'9','Henryevoli',''),(2750,1,556,'4','(223) 820-0547',''),(2751,1,556,'3','davidcollins53@verizon.net',''),(2752,1,556,'6','Making money in the net is easier now. \r\nLink - - http://t-protex.de/mco-btc-bittrex.php',''),(2753,1,557,'8','Henryevoli',''),(2754,1,557,'9','Henryevoli',''),(2755,1,557,'4','(430) 165-1065',''),(2756,1,557,'3','wbarth@pt.lu',''),(2757,1,557,'6','Attention! Financial robot may bring you millions! \r\nLink - http://natur-holzbausteine.de/harga-btc-ke-rupiah-hari-ini.php',''),(2758,1,558,'8','Henryevoli',''),(2759,1,558,'9','Henryevoli',''),(2760,1,558,'4','(654) 808-3787',''),(2761,1,558,'3','accuspection@cox.net',''),(2762,1,558,'6','Still not a millionaire? The financial robot will make you him! \r\nLink - http://natur-holzbausteine.de/bitcoin-atm-odessa.php',''),(2763,1,559,'8','Henryevoli',''),(2764,1,559,'9','Henryevoli',''),(2765,1,559,'4','(768) 520-5735',''),(2766,1,559,'3','emanuelneher@gmx.de',''),(2767,1,559,'6','Make thousands of bucks. Pay nothing. \r\nLink - http://gasthausamflughafen.de/bitcoin-diamond-price-difference-between-exchanges.php',''),(2768,1,560,'8','Henryevoli',''),(2769,1,560,'9','Henryevoli',''),(2770,1,560,'4','(732) 543-1360',''),(2771,1,560,'3','michelletess@msn.com',''),(2772,1,560,'6','Robot is the best solution for everyone who wants to earn. \r\nLink - - http://gasthausamflughafen.de/how-to-deposit-bitcoin-on-binance.php',''),(2773,1,561,'8','Henryevoli',''),(2774,1,561,'9','Henryevoli',''),(2775,1,561,'4','(313) 218-8838',''),(2776,1,561,'3','bennhorner@yahoo.com',''),(2777,1,561,'6','Financial robot guarantees everyone stability and income. \r\nLink - http://t-protex.de/wie-tief-wird-der-bitcoin-fallen.php',''),(2778,1,562,'8','Henryevoli',''),(2779,1,562,'9','Henryevoli',''),(2780,1,562,'4','(150) 773-2116',''),(2781,1,562,'3','chubbydoo@hotmail.com',''),(2782,1,562,'6','Launch the financial Bot now to start earning. \r\nLink - http://natur-holzbausteine.de/up-btc-exam-paper-1st-semester.php',''),(2783,1,563,'8','Henryevoli',''),(2784,1,563,'9','Henryevoli',''),(2785,1,563,'4','(423) 662-1814',''),(2786,1,563,'3','michael@schlechtinger.de',''),(2787,1,563,'6','No need to work anymore while you have the Robot launched! \r\nLink - http://stuntszene.de/selling-bitcoin-uk.php',''),(2788,1,564,'8','Henryevoli',''),(2789,1,564,'9','Henryevoli',''),(2790,1,564,'4','(367) 876-0075',''),(2791,1,564,'3','carlomercado@gmail.com',''),(2792,1,564,'6','Make yourself rich in future using this financial robot. \r\nLink - http://ute-strohner.de/bitcoin-cash-hk.php',''),(2793,1,565,'8','Henryevoli',''),(2794,1,565,'9','Henryevoli',''),(2795,1,565,'4','(482) 077-6101',''),(2796,1,565,'3','hogbin6@hotmail.com',''),(2797,1,565,'6','Only one click can grow up your money really fast. \r\nLink - http://gasthausamflughafen.de/how-to-move-bitcoin-wallet-from-one-computer-to-another.php',''),(2798,1,566,'8','Henryevoli',''),(2799,1,566,'9','Henryevoli',''),(2800,1,566,'4','(087) 830-2141',''),(2801,1,566,'3','juaanco@live.com',''),(2802,1,566,'6','The financial Robot is the most effective financial tool in the net! \r\nLink - - http://stuntszene.de/how-to-receive-bitcoins-anonymously.php',''),(2803,1,567,'8','Henryevoli',''),(2804,1,567,'9','Henryevoli',''),(2805,1,567,'4','(356) 015-5832',''),(2806,1,567,'3','hhinkel@gmail.com',''),(2807,1,567,'6','Earning money in the Internet is easy if you use Robot. \r\nLink - http://stuntszene.de/juan-ramon-rallo-bitcoin.php',''),(2808,1,568,'8','Henryevoli',''),(2809,1,568,'9','Henryevoli',''),(2810,1,568,'4','(814) 186-4647',''),(2811,1,568,'3','mythicislepro@gmail.com',''),(2812,1,568,'6','Let the Robot bring you money while you rest. \r\nLink - http://t-protex.de/bitcoin-core-development-environment.php',''),(2813,1,569,'8','Henryevoli',''),(2814,1,569,'9','Henryevoli',''),(2815,1,569,'4','(274) 351-7874',''),(2816,1,569,'3','nosops@gmail.com',''),(2817,1,569,'6','One dollar is nothing, but it can grow into $100 here. \r\nLink - http://stuntszene.de/is-btc-bitcoin.php',''),(2818,1,570,'8','Henryevoli',''),(2819,1,570,'9','Henryevoli',''),(2820,1,570,'4','(621) 405-4132',''),(2821,1,570,'3','kashifaliali293@gmail.com',''),(2822,1,570,'6','Have no money? It’s easy to earn them online here. \r\nLink - http://stuntszene.de/bitcoin-edu.php',''),(2823,1,571,'8','Henryevoli',''),(2824,1,571,'9','Henryevoli',''),(2825,1,571,'4','(251) 144-4382',''),(2826,1,571,'3','martinsajayi@gmail.com',''),(2827,1,571,'6','Make thousands every week working online here. \r\nLink - - http://feuerwehr-matzenbach.de/when-does-bitcoin-mining-difficulty-increase.php',''),(2828,1,572,'8','Henryevoli',''),(2829,1,572,'9','Henryevoli',''),(2830,1,572,'4','(361) 856-4641',''),(2831,1,572,'3','baya_bachir@yahoo.com',''),(2832,1,572,'6','Launch the financial Robot and do your business. \r\nLink - - http://natur-holzbausteine.de/vernon-smith-bitcoin.php',''),(2833,1,573,'8','Henryevoli',''),(2834,1,573,'9','Henryevoli',''),(2835,1,573,'4','(242) 457-3588',''),(2836,1,573,'3','eykoloskhpos@gmail.com',''),(2837,1,573,'6','Find out about the fastest way for a financial independence. \r\nLink - http://ute-strohner.de/2500-btc-to-inr.php',''),(2838,1,574,'8','Henryevoli',''),(2839,1,574,'9','Henryevoli',''),(2840,1,574,'4','(740) 688-3057',''),(2841,1,574,'3','perumalmanikkam@gmail.com',''),(2842,1,574,'6','Provide your family with the money in age. Launch the Robot! \r\nLink - http://natur-holzbausteine.de/bitcoin-trends-google.php',''),(2843,1,575,'8','Arnesen  Artit',''),(2844,1,575,'9','Arnesen  Artit',''),(2845,1,575,'4','(474) 814-5673',''),(2846,1,575,'3','penisov.dima@bk.ru',''),(2847,1,575,'6','Работать только на работе — прошлый век! Настало время зарабатывать в сети! Никаких специальных знаний, только желание жить лучше! До 500$ в день — это реальность. Узнай подробности  https://cloud.mail.ru/public/7qtT/1ZYsp7WEp',''),(2848,1,576,'8','pat',''),(2849,1,576,'9','elnicki',''),(2850,1,576,'4','(717) 401-0714',''),(2851,1,576,'3','pelnicki222@gmail.com',''),(2852,1,576,'6','quick question- we\'re kind of new to the area and are having a hard time finding an electrican to do some work on our house.  Is there anyone you can recommend? I thought maybe since you are so well known in the area that your crews might work with someone I could contact. Please respond via email if possible.\r\nAny help would be appreciated! Thank you!',''),(2853,1,577,'8','Tom',''),(2854,1,577,'9','Hanson',''),(2855,1,577,'4','(518) 712-7953',''),(2856,1,577,'3','tom@designsmirk.com',''),(2857,1,577,'6','Hello,\r\n\r\nI am trying to get in touch with the staff member that oversees your website. Can you point me in the right direction?\r\n\r\nThanks!',''),(2858,1,578,'8','Nathanael',''),(2859,1,578,'9','Horner',''),(2860,1,578,'4','(240) 675-3036',''),(2861,1,578,'3','natehorner40@yahoo.com',''),(2862,1,578,'6','We are looking for some option for heat and ac in our home.  Would someone be able to come to our home to go over he options and provide recommendations?  Email is the best contact.  Thanks',''),(2863,1,579,'8','Brian',''),(2864,1,579,'9','WRIGHT Eng',''),(2865,1,579,'4','(303) 800-6251',''),(2866,1,579,'3','sales1@astrologicalstudio.com',''),(2867,1,579,'6','Dear Madam, Dear Sir Do you want to know what kind of events in your life you can expect in coming new year 2021? In case of your interest, we can evolve absolutely accurate our 1-Year Forecast of Events reports for you and your loved ones. Please visit our https://astrologicalstudio.com/home/23-1-year-forecast-of-events.html for more information. We will be delighted to hear from you. Have a great day and a Happy New Year. Best regards Brian WRIGHT Eng., Astrological Studio, https://astrologicalstudio.com',''),(2868,1,580,'8','Mike Donaldson',''),(2869,1,580,'9','Mike Donaldson',''),(2870,1,580,'4','(371) 574-3117',''),(2871,1,580,'3','no-reply@google.com',''),(2872,1,580,'6','Hello \r\n \r\nI have just verified your SEO on  mannplumbingandheating.com for the ranking keywords and saw that your website could use a boost. \r\n \r\nWe will increase your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\nregards \r\nMike Donaldson\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(2873,1,581,'8','Joseph',''),(2874,1,581,'9','Bass',''),(2875,1,581,'4','(717) 461-2012',''),(2876,1,581,'3','Joseph.Bass@equusworks.com',''),(2877,1,581,'6','Joseph Bass\r\nI am reaching out to provide you information on our Youth/Young Adult Program in Adams County.\r\nWe currently serve youth/young adult ages 16-24 years of age, both under WIOA (Workforce Innovation Opportunity Act) and TANF (Temporary Assistance for Needy Families) funding as a contractor with the SCPa Works (South Central PA Workforce Development Board). \r\nOur program is designed to assist our participants with the following, but not limited to, Career Pathway exploration, Paid internship opportunities, Supportive services, Training services for High Priority Occupations, Employability skills, and more. \r\n\r\nI would like the opportunity to learn more about your company, and how our youth workforce services could assist your company in fulfilling its mission, while helping a young adult to gain a successful start in their career.\r\n\r\nPlease see the attachments and contact me with any questions. Perhaps we can have a Zoom or Web-ex call.',''),(2878,1,582,'8','Kate',''),(2879,1,582,'9','Walsh',''),(2880,1,582,'4','(000) 000-0000',''),(2881,1,582,'3','ez_visits@fastest.cc',''),(2882,1,582,'6','Hi,\r\n\r\nJust a brief moment of your time as our services may be of interest.\r\n\r\nWe can send thousands of interested people to your website every day. \r\n\r\nPeople will come from related major online publications in your EXACT niche.\r\nYou get to approve them BEFORE your campaign begins.\r\n\r\nPrices start at just $54.99.\r\nCheck out our 3 day 10,000 visitors sale.\r\nMost larger packages sold out for 30 days. Please check for availability.\r\n\r\nFor more info please visit us at http://traffic-stampede.com\r\n\r\nThank you for your time and hope to see you there.\r\n\r\nKind regards,\r\nKate W.',''),(2883,1,583,'8','Eric',''),(2884,1,583,'9','Jones',''),(2885,1,583,'4','(555) 555-1212',''),(2886,1,583,'3','ericjonesonline@outlook.com',''),(2887,1,583,'6','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at mannplumbingandheating.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://www.talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://www.talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(2888,1,584,'8','Michaelmoins',''),(2889,1,584,'9','MichaelmoinsWA',''),(2890,1,584,'4','(125) 102-7037',''),(2891,1,584,'3','alexander466alan@gmail.com',''),(2892,1,584,'6','Looking for Facebook likes or Instagram followers? \r\nWe can help you. Please visit https://1000-likes.com/ to place your order.',''),(2893,1,585,'8','Diane',''),(2894,1,585,'9','Reilly',''),(2895,1,585,'4','(000) 000-0000',''),(2896,1,585,'3','simple.drop@outlook.com',''),(2897,1,585,'6','Hi,\r\n\r\nWould you like a new business to add to your existing one?\r\n\r\nWe are the supplier of turnkey AliExpress dropship stores.\r\nThe average markup on products is 300%\r\nNo stock, No headaches, all items are dropshipped directly from the supplier.\r\n\r\nYou keep all of the profit on each sale we are the designer only.\r\n\r\nThere are no monthly fees:\r\nFree dedicated hosting permanantly, domain and social media marketing plan is included. \r\n\r\nTo see our available dropship stores please visit us at https://dropshippingincome.com\r\n\r\nWe look forward to seing you there. \r\n\r\nKind regards,\r\nDiane\r\nDSI',''),(2898,1,586,'8','Phil',''),(2899,1,586,'9','Wolgemuth',''),(2900,1,586,'4','(717) 816-0091',''),(2901,1,586,'3','plw1@comcast.net',''),(2902,1,586,'6','No hot water in Chambersburg. AO Smith Model No. ECRT 80 200. 80 gallon capacity. Do you do service calls on Sunday?',''),(2903,1,587,'8','Jessabel',''),(2904,1,587,'9','Guillen',''),(2905,1,587,'4','(944) 444-4444',''),(2906,1,587,'3','YourDomainGuru.Jessa@gmail.com',''),(2907,1,587,'6','SewerMainRepair.com\r\n \r\nHello, my name is Jessabel from TDS. We have a domain that is currently on sale that you might be interested - SewerMainRepair.com\r\n \r\nAnytime someone types Sewer Repair, Sewer Main Repair, Sewer Main Repair Near Me, The Best Sewer Main Repair, or any other phrase with these keywords into their browser your site could be the first they see!\r\n\r\nThe internet is the most efficient way to acquire new customers. \r\n\r\nAvg Google Search Results are (keyword): 34,800,000\r\nYou can easily redirect all the traffic this domain gets to your current site! \r\n\r\nEstibot.com appraises this domain at $2,300.\r\n\r\nPriced at only $398 for a limited time! If interested please go to SewerMainRepair.com and select Buy Now, or purchase directly at GoDaddy.  \r\nAct Fast! First person to select Buy Now gets it!  \r\n\r\nThank you very much for your time.\r\nTop Domain Sellers (TDS)  \r\nJessabel Guillen',''),(2908,1,588,'8','Lindsay',''),(2909,1,588,'9','Harrison',''),(2910,1,588,'4','(805) 372-1751',''),(2911,1,588,'3','lindsay@topalexadirectory.top',''),(2912,1,588,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttp://topalexadirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\nLindsay\r\nVoice Activation Follow-up Specialist\r\nTop Alexa Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://topalexadirectory.top/out.php?site=mannplumbingandheating.com',''),(2913,1,589,'8','Michael',''),(2914,1,589,'9','Pidcock',''),(2915,1,589,'4','(740) 560-0476',''),(2916,1,589,'3','procurement@ohio-edu.org',''),(2917,1,589,'6','Dear Sales\r\n\r\nOHIO UNIVERSITY would like to ask for the price quote of the following items below:\r\n\r\n1.Grundfos SQ Flex 11 SQF-2 Submersible Pump (Part #  95027335)\r\n\r\nKindly provide your company credit application form, with a quote and lead time.\r\n\r\nWe need these items upcoming project and we are interested in working with your company.\r\n\r\nTerms - Purchase Order - Net-30 Payment Terms if available\r\n\r\nThis will enable us to submit a purchase order upon approval.\r\n\r\nThank you.\r\n\r\nBest regards\r\nMichael Pidcock\r\nProcurement Commodity Manager\r\nOHIO UNIVERSITY\r\n1 Ohio University\r\nAthens OH 45701\r\nTel: 740 560-0476',''),(2918,1,590,'8','unpNkuqvhgqsAxe https://www.google.com/',''),(2919,1,590,'9','unpNkuqvhgqsAxe https://www.google.com/',''),(2920,1,590,'4','(814) 661-4215',''),(2921,1,590,'3','valeriivorobushkin@yandex.ru',''),(2922,1,591,'8','Brian',''),(2923,1,591,'9','Over',''),(2924,1,591,'4','(717) 658-6511',''),(2925,1,591,'3','bjover9270@gmail.com',''),(2926,1,591,'6','Got a VM from Kim this morning regarding the invoice we owe. I did see an envelope addressed to Mann plumbing on the table so I’m pretty sure my wife mailed out the payment last week. I you don’t have it w/in a day or two please let me know \r\nTks, Brian',''),(2927,1,592,'8','Peter',''),(2928,1,592,'9','Holiday',''),(2929,1,592,'4','(801) 943-8543',''),(2930,1,592,'3','kermit.holiday54@gmail.com',''),(2931,1,592,'6','Hi\r\n\r\nWe all know how important is the ahrefs Domain Rating score, \r\nMany believing its more important even than the Moz Domain Authority score.\r\n\r\n\r\nWe are now able to improve your website`s DR score to get above 50 or even above 60 points\r\n\r\nService comes with guaranteed results\r\nIt will take only 30-40 days to accomplish this great feat for your website\r\n\r\nYou can read more information about our plan here\r\nhttps://speed-seo.net/product/ahrefs-dr60/\r\n\r\nThe promised 40% discount coupon: AHREFS\r\n\r\n\r\nthank you\r\nPeter Holiday\r\nSpeed SEO Agency\r\nsupport@speed-seo.net',''),(2932,1,593,'8','Mindy',''),(2933,1,593,'9','Danzberger',''),(2934,1,593,'4','(717) 414-6320',''),(2935,1,593,'3','mindydanzberger@gmail.com',''),(2936,1,593,'6','I have some questions about my invoice. Can you please email me so we can resolve this. Thank you. I tried to find an email address but I couldn\'t. My phone got damaged. So as of right now email is the main form to communicate with me.',''),(2937,1,594,'8','Eric',''),(2938,1,594,'9','Jones',''),(2939,1,594,'4','(555) 555-1212',''),(2940,1,594,'3','ericjonesonline@outlook.com',''),(2941,1,594,'6','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at mannplumbingandheating.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(2942,1,595,'8','James Lambert',''),(2943,1,595,'9','James Lambert',''),(2944,1,595,'4','(280) 011-5212',''),(2945,1,595,'3','jlam73000@gmail.com',''),(2946,1,595,'6','Good day \r\n \r\nI`m seeking a reputable company/individual to partner with in a manner that would benefit both parties. The project is worth $24 Million so if interested, kindly contact me through this email jameslambert@lambert-james.com for clarification. \r\n \r\nI await your response. \r\n \r\nThanks, \r\n \r\nJames Lambert',''),(2947,1,596,'8','Miriam',''),(2948,1,596,'9','Dickinson College',''),(2949,1,596,'4','(717) 245-1383',''),(2950,1,596,'3','accountspayable@dickinson.edu',''),(2951,1,596,'6','While reviewing our records, we found that we do not have an updated W-9 on file for your company.\r\n\r\nPlease send a completed form to accountspayable@dickinson.edu.\r\n\r\nThank you.',''),(2952,1,597,'8','ShawnLoats',''),(2953,1,597,'9','ShawnLoatsDM',''),(2954,1,597,'4','(815) 511-0338',''),(2955,1,597,'3','ahmedkirillov5@gmail.com',''),(2956,1,597,'6','[url=http://zrenieblog.ru/]Detail[/url]:  [url=http://zrenieblog.ru/]http://zrenieblog.ru/[/url]  http://zrenieblog.ru/ <a href=\"http://zrenieblog.ru/\">http://zrenieblog.ru/</a> \r\n歷史 \r\n六七千年前的先民就開始釣魚。周文王曾和兒子們在靈沼釣魚取樂。戰國時范蠡也愛釣魚，常把所釣之魚供給越王勾踐食用。 二十世紀八十年代，中國大陸的各級釣魚協會成立，釣魚地點也從自然水域向養殖水域過度，所釣之魚則從粗養向細養過度。人數增多、水體污染及濫捕濫撈導致釣魚難度上升。釣魚協會開始與漁民和農民簽訂文件，使更多釣者能夠在養殖水域釣魚，達到了雙贏的目的。 二十世紀九十年代初，來自台灣的懸釣法走紅大陸，各地開始建造標準釣池。 二十世紀末，發達國家的釣者提倡回顧自然，引發新一輪野釣戰，而中國的釣者則更青睞精養魚池。[1] \r\n \r\n工具 \r\n \r\n一种钓鱼竿机械部分示意图 \r\n最基本的钓具包括：鱼竿、鱼线、鱼钩、沉坨（又名沉子）、浮标（又名鱼漂）、鱼饵。[2]:1其他辅助钓具包括：失手绳、钓箱、线轮、抄网、鱼篓、渔具盒、钓鱼服、钓鱼鞋等。[2]:1 \r\n \r\n钓竿一般由玻璃纖維或碳纖維轻而有力的竿状物质製成，钓竿和鱼饵用丝线联接。一般的鱼饵可以是蚯蚓、米饭、蝦子、菜叶、苍蝇、蛆等，现代有专门制作好（多数由自己配置的半成品）的粉製鱼饵出售。鱼饵挂在鱼鉤上，不同的對象鱼有不同的釣組配置。在周围水面撒一些誘餌通常会有較好的集魚效果。 \r\n \r\n钓具 \r\n鱼竿 \r\n主条目：鱼竿 \r\n钓鱼的鱼竿按照材质包括：传统竹竿、玻璃纤维竿、碳素竿，按照钓法包括：手竿、矶竿、海竿（又名甩竿），按照所钓鱼类包括：溪流小继竿、日鲫竿（又名河内竿）、鲤竿、矶中小物竿。[2]:6-8 \r\n \r\n鱼钩 \r\n主条目：鱼钩 \r\n鱼钩就是垂钓用的钩，主要分为：有倒钩、无倒钩、毛钩。[2]:14 \r\n \r\n鱼线 \r\n主条目：鱼线 \r\n鱼线就是垂钓时绑接鱼竿和鱼钩的线，历史上曾使用蚕丝（远古日本）、发丝（江户时期日本）、马尾（西欧）、二枚贝（地中海）、蛛网丝（夏威夷）、琼麻（东南亚）、尼龙钓线（美国）。[2]:25 \r\n \r\n鱼漂 \r\n主条目：鱼漂 \r\n鱼漂又名浮标，垂钓时栓在鱼线上的能漂浮的东西，主要用于搜集水底情报，查看鱼汛，观察鱼饵存留状态，以及水底水流起伏变化。[2]:36 \r\n \r\n鱼饵 \r\n主条目：鱼饵 \r\n鱼饵分为诱饵和钓饵，是一种用来吸引鱼群和垂钓时使用的物品，钓饵分为荤饵、素饵、拟饵、拉饵。[2]:170 \r\n \r\n沉子 \r\n主条目：沉子 \r\n沉子又名沉坨、铅锤，是一种调节鱼漂的工具。[2]:45 \r\n \r\n卷线器 \r\n主条目：卷线器 \r\n卷线器主要安装在海竿和矶竿上的一种卷线的工具。[2]:63 \r\n \r\n连结具 \r\n主条目：连结具 \r\n连结具是连结鱼线与钓竿、母线与子线的一种连结物，使用最广泛的是连结环。[2]:55 \r\n \r\n识鱼 \r\n鱼类的视力不如人类，距离、宽度均无法和人类的视力比较，鱼类对水色、绿色比较敏感，鱼类的嗅觉非常灵敏，鱼类的听觉也非常灵敏，钓鲤鱼时，不能在岸上大声谈笑、走动不停，鱼类的思考能力非常弱，鱼类应对周边环境随着气象、水温、水色、潮流、流速、水量的变化而变化，于是便出现了在同一个池塘、水库、湖泊，往日钓鱼收获大，今日少，上午收获大，下午少，晴天大，雨天少等情况。[2]:114-117淡水钓鱼，中国大陆经常垂钓的鱼类对象是本地鲫鱼、日本鲫、非洲鲫、鲤鱼、游鱼、罗非鱼、黄刺鱼（黄鸭叫）、黄尾、鳊鱼、青鱼、草鱼、鲢鱼、鳙鱼，台湾经常垂钓的鱼类对象是本地鲫鱼、日本鲫、吴郭鱼（罗非鱼）、溪哥仔和红猫（粗首马口鱲）、斗鱼、罗汉鱼、苦花、三角姑（河鮠）、竹蒿头（密鱼）。[2]:117 \r\n \r\n影响鱼类的6大因素主要是：季节变更、气温高低、水的涨落、风的大小、水的清浊、天气阴晴',''),(2957,1,598,'8','Документ номер WLR475487WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com',''),(2958,1,598,'9','Документ номер WLR475487WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com',''),(2959,1,598,'4','(071) 310-4453',''),(2960,1,598,'3','ivanovairinaygx@mail.ru',''),(2961,1,599,'8','Mike Evans',''),(2962,1,599,'9','Mike Evans',''),(2963,1,599,'4','(063) 233-4812',''),(2964,1,599,'3','see-email-in-message@monkeydigital.co',''),(2965,1,599,'6','Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your mannplumbingandheating.com website? \r\nHaving a high DA score, always helps \r\n \r\nGet your mannplumbingandheating.com to have a 50+ points in Moz DA with us today and rip the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nthank you \r\nMike Evans\r\n \r\nsupport@monkeydigital.co',''),(2966,1,600,'8','Eric',''),(2967,1,600,'9','Jones',''),(2968,1,600,'4','(555) 555-1212',''),(2969,1,600,'3','ericjonesonline@outlook.com',''),(2970,1,600,'6','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at mannplumbingandheating.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://www.talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://www.talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(2971,1,601,'8','Keithfen',''),(2972,1,601,'9','KeithfenJH',''),(2973,1,601,'4','(461) 540-3722',''),(2974,1,601,'3','kudukulisprime@gmail.com',''),(2975,1,601,'6','http://the-test.de',''),(2976,1,602,'8','Olivia',''),(2977,1,602,'9','Johnson',''),(2978,1,602,'4','(416) 840-5178',''),(2979,1,602,'3','no-reply@nooooo-reply.com',''),(2980,1,602,'6','A big group of retail traders (the retail investors like you and me) in social media platform Reddit WallStreetBets took on Wall Street Giants in the Gamestop saga.\r\n\r\nTheir mission has two main goals: Drive up stock prices to score profits for themselves, and at the same time, force the establishment investors to abandon bearish bets against struggling companies such as GameStop (GME), AMC (AMC), Macy\'s (M) and several others.\r\n\r\nGamestop\'s stock price was $18.80 as of 31st Dec 2020 and by 29th Jan 2021, it closed at $325 - a whopping 18 times!\r\n\r\nhttps://edition.cnn.com/2021/01/30/business/gamestop-reddit-rebellion-explained/index.html\r\n\r\nSubsequently the total number of users in Reddit grew from 2 million users to 7.2 million users within days.\r\n\r\n\r\nhttps://www.reddit.com/r/wallstreetbets/\r\n\r\nNow, it seems like they are targeting to push the price of Cryptocurrency (Ripple XRP) on 1st Feb.\r\n\r\nThis is their thread:\r\nhttps://www.reddit.com/r/wallstreetbets/comments/l69h57/xrp_to_the_moon/\r\n\r\nAlready, XRP\'s price has gone up by more than 50% since this news.\r\n\r\nhttps://www.investing.com/news/cryptocurrency-news/xrp-price-gains-86-after-wall-street-bets-crypto-wing-says-pump-it-2404272\r\n\r\nIf you are interested to get involved with cryptos and consider joining this action, you can buy XRP at the world\'s biggest and most established crypto exchange Binance at the link below:\r\nhttp://bit.ly/2L6ZySg',''),(2981,1,603,'8','Lindsay',''),(2982,1,603,'9','Harrison',''),(2983,1,603,'4','(805) 372-1751',''),(2984,1,603,'3','lindsay@topalexadirectory.top',''),(2985,1,603,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttp://topalexadirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\nLindsay\r\nVoice Activation Follow-up Specialist\r\nTop Alexa Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://topalexadirectory.top/out.php?site=mannplumbingandheating.com',''),(2986,1,604,'8','Cristine',''),(2987,1,604,'9','Caberte',''),(2988,1,604,'4','(518) 712-7953',''),(2989,1,604,'3','cristine@designsmirk.com',''),(2990,1,604,'6','Hello,\r\n\r\nI am trying to get in touch with the staff member that oversees your website. Can you point me in the right direction?\r\n\r\nThanks!',''),(2991,1,605,'8','Brian',''),(2992,1,605,'9','WRIGHT Eng',''),(2993,1,605,'4','(303) 800-6251',''),(2994,1,605,'3','sales1@astrologicalstudio.com',''),(2995,1,605,'6','Dear Madam, Dear Sir Do you know personalities of people you are dealing with like potential partners, spouses, friends, employers, employees, business partners, etc.? We can prepare a precise analysis of a personality for all people of your interest for you. You will find there a lot of very valuable information about people of your interest and you will be able to choose best people easily. Please visit astrologicalstudio.com for more information. We will be very pleased to hear from you. Have a great day. Best regards Brian WRIGHT Eng., ASTROLOGICAL STUDIO, Denver, CO, sales@astrologicalstudio.com, https://astrologicalstudio.com',''),(2996,1,606,'8','Edward',''),(2997,1,606,'9','Jason',''),(2998,1,606,'4','(281) 509-9327',''),(2999,1,606,'3','edward@estimationhubinc.com',''),(3000,1,606,'6','Greetings,\r\n\r\nI hope you are doing great today! \r\n\r\nI am providing here Residential and Commercial Construction cost Estimation; we suffice to estimate every trade that you wish to bid in all over the CSI divisions of construction in then tire United States.\r\n\r\nI would be more than happy to assist regarding the project, answer your question or send you a sample of our estimates.\r\n\r\nLooking forward to hearing from you soon.\r\n\r\nThanking You \r\n\r\nWarm Regards \r\n\r\nEdward Jason\r\nEstimation Hub Inc\r\nPh:281.509.9327\r\n207 Greenway Plaza Houston, TX 77046',''),(3001,1,607,'8','Eric',''),(3002,1,607,'9','Jones',''),(3003,1,607,'4','(555) 555-1212',''),(3004,1,607,'3','ericjonesonline@outlook.com',''),(3005,1,607,'6','Cool website!\r\n\r\nMy name’s Eric, and I just found your site - mannplumbingandheating.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across mannplumbingandheating.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3006,1,608,'8','Dominique',''),(3007,1,608,'9','Yuen',''),(3008,1,608,'4','(704) 688-5100',''),(3009,1,608,'3','dominique.yuen@gmail.com',''),(3010,1,608,'6','Hi\r\nYour content is all published, and you\'ve registered all your social accounts. Now what? How do you get the word out about your pages, and where do you focus your time? We know, and we are hungry to grow your social media presence.\r\nSee what we can do for you:\r\nhttps://jtbtigers.com/socialnetworks392910\r\nP.S.We wish you success and a lot of new clients.',''),(3011,1,609,'8','Intalry',''),(3012,1,609,'9','Intalry',''),(3013,1,609,'4','(564) 464-1782',''),(3014,1,609,'3','baburovp@bk.ru',''),(3015,1,609,'6','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/y2oewg75',''),(3016,1,610,'8','Eric',''),(3017,1,610,'9','Jones',''),(3018,1,610,'4','(555) 555-1212',''),(3019,1,610,'3','eric.jones.z.mail@gmail.com',''),(3020,1,610,'6','Hello, my name’s Eric and I just ran across your website at mannplumbingandheating.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3021,1,611,'8','Miles',''),(3022,1,611,'9','Davis',''),(3023,1,611,'4','(281) 509-9327',''),(3024,1,611,'3','miles.estimations@gmail.com',''),(3025,1,611,'6','We do Cost Estimates and Quantity Takeoff Services for General Contractors, Sub Contractors, Home Builders, Construction Companies, Material Suppliers, Architects, and Engineers all over the USA States for construction Trades.  \r\n\r\n \r\n\r\nWe manage to do all trades at very reasonable charges.\r\n\r\n \r\n\r\nKindly drop your plans In PDF files with the mentioned scope of work and we will get back to you with a service proposal.',''),(3026,1,612,'8','Stacey',''),(3027,1,612,'9','Rosenberry',''),(3028,1,612,'4','(717) 860-8321',''),(3029,1,612,'3','Snookie1960@hotmail.cim',''),(3030,1,612,'6','Recently had toilet replaced and it’s been leaking, we are supposed to have someone come tomorrow (Friday) to check on it but was told to have $85 ready for the service call,  yes we supplied the toilet but it’s the wax ring that your installer used that is the problem.  I will not pay for a service call because we didn’t purchase the toilet from you.',''),(3031,1,613,'8','Brian',''),(3032,1,613,'9','WRIGHT Eng',''),(3033,1,613,'4','(303) 800-6251',''),(3034,1,613,'3','sales1@astrologicalstudio.com',''),(3035,1,613,'6','Dear Madam, Dear Sir Are you interested to know when is a best time to undergo your surgery or a medical treatment? If so, we can prepare our Forecast of Events report for you, your loved ones or friends. Our exclusive Forecast of Events reports contains this very important information which can help you in this matter. In case of you interest you can order these Forecast of Events reports at https://astrologicalstudio.com/home/23-1-year-forecast-of-events.html. We will be very pleased to hear from you. Have a great day. Best regards Brian WRIGHT Eng., ASTROLOGICAL STUDIO, Denver, CO, sales@astrologicalstudio.com, https://astrologicalstudio.com',''),(3036,1,614,'8','Mike Fleming',''),(3037,1,614,'9','Mike Fleming\r\nNE',''),(3038,1,614,'4','(621) 221-2576',''),(3039,1,614,'3','no-replyWat@gmail.com',''),(3040,1,614,'6','Hi there \r\n \r\nI have just checked  mannplumbingandheating.com for its Local SEO Trend and seen that your website could use a push. \r\n \r\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nStart increasing your local visibility with us, today! \r\n \r\nregards \r\nMike Fleming\r\n \r\nSpeed SEO Digital Agency \r\nsupport@speed-seo.net',''),(3041,1,615,'8','Документ номер WLR25192WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com',''),(3042,1,615,'9','Документ номер WLR25192WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com',''),(3043,1,615,'4','(128) 648-8455',''),(3044,1,615,'3','poliakovagalinajews@mail.ru',''),(3045,1,616,'8','Joe',''),(3046,1,616,'9','Miller',''),(3047,1,616,'4','(125) 485-9342',''),(3048,1,616,'3','info@domainregistercorp.com',''),(3049,1,616,'6','Notice#: 491343\r\nDate: 2021-02-08  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN mannplumbingandheating.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain mannplumbingandheating.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain mannplumbingandheating.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-registrar.ga/?n=mannplumbingandheating.com&r=a&t=1612725948&p=v9\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN mannplumbingandheating.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-registrar.ga/?n=mannplumbingandheating.com&r=a&t=1612725948&p=v9\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification mannplumbingandheating.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(3050,1,617,'8','Joe',''),(3051,1,617,'9','Miller',''),(3052,1,617,'4','(125) 485-9342',''),(3053,1,617,'3','info@domainregistercorp.com',''),(3054,1,617,'6','Notice#: 491343\r\nDate: 2021-02-08  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN mannplumbingandheating.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain mannplumbingandheating.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain mannplumbingandheating.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-registrar.ga/?n=mannplumbingandheating.com&r=a&t=1612727344&p=v9\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN mannplumbingandheating.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-registrar.ga/?n=mannplumbingandheating.com&r=a&t=1612727344&p=v9\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification mannplumbingandheating.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(3055,1,618,'8','Stacey',''),(3056,1,618,'9','Rosenberry',''),(3057,1,618,'4','(717) 860-8342',''),(3058,1,618,'3','Snookie1960@hotmail.com',''),(3059,1,618,'6','I truly appreciated you waving the fee for Friday, but I thought you were sending a plumber, not HVAC.  My toilet lid is 1/4 inch away from the wall on the left and over an inch away from the wall on the right side.  Suggestions ????',''),(3060,1,619,'8','DanielTep',''),(3061,1,619,'9','DanielTepMV',''),(3062,1,619,'4','(545) 414-6111',''),(3063,1,619,'3','nina_khomenko.65660@mail.ru',''),(3064,1,619,'6','Коммерческое предложение \r\nПриглашаем Ваше предприятие к взаимовыгодному сотрудничеству в сфере производства и поставок тугоплавких металлов и изделий из них. \r\nОсновные направления деятельности нашего предприятия: \r\n-	продажа тугоплавких металлов (молибдена, вольфрама, никеля, тантала, ниобия, титана, циркония); \r\n-	поставка порошков, концентратов, катализаторов, карбидов и оксидов на основе тугоплавких металлов; \r\n-	поставка изделий производственно-технического назначения (пруток, лист, проволока, сетка, тигли, квадрат, экран, нагреватель, штабик, фольга, контакты, втулка, опора, поддоны, затравкодержатели, формообразователи, диски, провод, обруч, электрод, детали, пластина, полоса, рифлёная пластина, лодочка, блины, бруски, чаши, диски, труба) из тугоплавких металлов. Любые типоразмеры, изготовление по чертежам и спецификациям заказчика: \r\n-	поставка изделий из сплавов: \r\n[url=https://redmetsplav.ru/store/nikel1/rossiyskie_materialy/hn_1/hn38vt-vd/]хн38вт-вд[/url]',''),(3065,1,620,'8','Javier Jomez',''),(3066,1,620,'9','Javier Jomez',''),(3067,1,620,'4','(714) 861-1578',''),(3068,1,620,'3','awardnotification2021@gmail.com',''),(3069,1,620,'6','LA PRIMITIVA  LOTTERY AWARD, MADRID SPAIN \r\nYour Reference: No: FU/578629K \r\nCongratulations! Your E-mail address has won With winning lucky number No:3 26 31 35 46 49, The results for the Internet users were released. \r\nThis E-mail lottery was sponsored by International software organization, Your e-mail address was attached to the lucky number  that was how your E-mail won the lump sum amount. \r\nPlease contact your claims agent/legal office: Pedro Jose, to being your claims call:Tel:+34 672 520 003 and Fax:+34 91 272 50 79 \r\nEmail: Awardnotificatios1721@gmx.com,  Email: winingnotifications2021@gmail.com. \r\nYours Sincerely. \r\nDr. Don Javier Jomez \r\nReply To This Email: Awardnotificatios1721@gmx.com \r\nReply To This Email: winingnotifications2021@gmail.com \r\nPhone: +34 672 520 000 \r\nPresident  International Relations Department.',''),(3070,1,621,'8','Tim',''),(3071,1,621,'9','Parker',''),(3072,1,621,'4','(347) 766-9973',''),(3073,1,621,'3','tp.ustopestimatorsinc@gmail.com',''),(3074,1,621,'6','Greetings,\r\n\r\nWe are an estimation services providing company. We provide Cost Estimation & Quantities Take-Off services for General as well as for Sub-contractors. We do both residential and commercial projects. We have more than 16 years of experience in Estimating services. We are giving almost 25% Discount on the first estimate. Please send us the plans or link to any FTP site link or, ask for sample estimates and take-offs.',''),(3075,1,622,'8','Eric',''),(3076,1,622,'9','Jones',''),(3077,1,622,'4','(555) 555-1212',''),(3078,1,622,'3','ericjonesonline@outlook.com',''),(3079,1,622,'6','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at mannplumbingandheating.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://www.talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://www.talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3080,1,623,'8','Sarah',''),(3081,1,623,'9','Vasel',''),(3082,1,623,'4','(717) 352-3737',''),(3083,1,623,'3','sarah@ockeraccounting.com',''),(3084,1,623,'6','Hello,\r\n\r\nI\'m from Ocker Accountants and Consultants just down the road from you.  The toilet in our men\'s room has started running constantly.  Could I please have someone take a look and fix/replace what is necessary?  We\'ve shut the water off to it so it stops running, and isn\'t urgent.\r\n\r\nThank you!',''),(3085,1,624,'8','RobertTrift',''),(3086,1,624,'9','RobertTriftJX',''),(3087,1,624,'4','(235) 204-5753',''),(3088,1,624,'3','rafailzagaraeva19975638nw@mail.ru',''),(3089,1,624,'6','<br> \r\n<br> \r\n<a href=\"https://google.com?mmmbnbnbm\"> <img src=\"https://1.bp.blogspot.com/-E8mqt5-04Ss/X-ZGe82dkNI/AAAAAAAAAZc/hVNythlqysQX3U2B9ZJ_DALIrpqLsWf9ACLcBGAsYHQ/s1024/03.jpg?ly=oo\r\n\" /> </a> \r\n<br> \r\n<br> \r\nvvvvccccbfffffrrrreeeeeee \r\n<br> \r\n<br> \r\n \r\naupyofoqodqjooqvpxanlxavpb ayabqeqhoppj qkaspmaylrqv olpraxpulyqppy ppliqulhqx lwqwqlpgpnpcqmok awpjpwlsqbahod \r\nopollwoeahlrlkodqqlzlxonai oapzqaltlkqb qmodqfakaepx oxomobqjprpeak ldaxotqfat appeplpxqjaaalob oxomogljqfqgqi \r\npyleamowaupkpxqeakldpiohph orqslmpapooj otqaatqrooaq ljldolppowozpl aulrpllbqh lqpvadadqapgpjlx amoqakoblppkaj \r\npwalqvajlmorarlioilnoulaac qfqcpuolallx pbqcpipnqrlx awaapxpgpwazlj oeaplwolqu qqoxqspcavoqagqb oylepfqolxqroz \r\nqvawqjowqxoqqnqhqhajpgomaa pmpbpsajobay palbafoooiam pxqeagaapfptqd aaojokajpp pkpzoglolsqdagau ouawqrqdadoblk \r\nlaqlatpiphplpxadqzpyqjaulc qvqlpsqmptof pslgawokoulh araeppakakogqs atprowlkqw afpolkoyqeaupklm qapsalprluljoh \r\noeaelspfazqslfpaomadprofag llocoololaqa pvqronlulyog lbqrqhlcpnalam pyowpvohpd lbpiowanotqionax ljoglyanqzpsaj \r\npwlboalclqpypyaolcpkqmppas lllkliomatlq omldorozakae pupsqvptlkqooi pulhprobpg owlnqcacobppaboa ljpdqeobphahly \r\nodlzqoqioopbohlzqcqlpmqcov leqaqeqparoa aoolahpfooqv ogpzonlclupwow peaplsamqu pmqiqbokojljaeqc adpsqcaqpaajaf \r\noplkonomozlzoapqafqpliaeoi ozpzowquafov ajpvaelpqbpo abqrqsosqyodlm oeakaqlxlm leqxopahqpabqcad qboxarqdpjodlo \r\nolpiaflfqwltozazlnawlgpxll lyaqlzqaanay aylupjqlpqpg awatljoqatauqd phlmpklaqi pfpuaalfpalmollg ldasqmososoyat \r\nlnohplltqtqdojadakllqclcpa luotpyqzlcaw lpauanaxpdor liplqzqvqvqqlc oiaqlsohqk qoaepelcaxllobpo qvqhlqlhqiprll',''),(3090,1,625,'8','Документ номер WLR2304401WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com',''),(3091,1,625,'9','Документ номер WLR2304401WLR2 подготовлен. Смотрите документ12 далее на странице http://apple.com',''),(3092,1,625,'4','(085) 664-4568',''),(3093,1,625,'3','veniamin.ovsyannikov.94@mail.ru',''),(3094,1,626,'8','Mike Adrian',''),(3095,1,626,'9','Mike Adrian',''),(3096,1,626,'4','(666) 702-8240',''),(3097,1,626,'3','no-reply@google.com',''),(3098,1,626,'6','Good Day \r\n \r\nI have just analyzed  mannplumbingandheating.com for the ranking keywords and saw that your website could use an upgrade. \r\n \r\nWe will increase your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nMike Adrian\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(3099,1,627,'8','TomasIntes',''),(3100,1,627,'9','TomasIntesFI',''),(3101,1,627,'4','(856) 242-4832',''),(3102,1,627,'3','nik25mor08@gmail.com',''),(3103,1,627,'6','console crashes in sbs 2008 release\r\ninetinfo sbs 2003\r\ncpu 100 iexplore\r\na2uploader rwf 5\r\nwindows 7 wininit 49152\r\n \r\ni386 lang cplexe free\r\ni am alive pc\r\nupdated emporia vapus\r\nlim0n unlock 0.1.1\r\npool live tour hack tool v4.8  youtube\r\n \r\ncfw patcher installer  movies\r\naccess my picasa web album\r\nreadiris corporate 12 middle east edition\r\nmultistarter metin2  patch\r\ncleanfiles er bot v3.0\r\n \r\nhttp://free.1frees-ebooks-to-pdfs.com/',''),(3104,1,628,'8','David Song',''),(3105,1,628,'9','David Song',''),(3106,1,628,'4','(053) 238-2311',''),(3107,1,628,'3','noreply@googlemail.com',''),(3108,1,628,'6','Hello, \r\nOur Investors wishes to invest in your company by offering debt financing in any viable Project presented by your Management,Kindly send your Business Project Presentation Plan Asap. \r\n \r\ndavidsong2030@gmail.com \r\n \r\nRegards, \r\nMr.David Song',''),(3109,1,629,'8','soowsbusSwerm',''),(3110,1,629,'9','soowsbusSwerm',''),(3111,1,629,'4','(646) 754-7567',''),(3112,1,629,'3','seritawalts4075@gmail.com',''),(3113,1,629,'6','[url=http://ardamax-keylogger-serial-podcast.com/sinhagad-road-pune-map.php]sinhagad road pune map[/url] [url=http://ardamax-keylogger-serial-podcast.com/map645.php]film garamku tak asin lagie[/url] [url=http://ardamax-keylogger-serial-podcast.com/on-my-block-scarface-album.php]on my block scarface album[/url] [url=http://ardamax-keylogger-serial-podcast.com/seton-hill-volleyball-roster.php]seton hill volleyball roster[/url] [url=http://ardamax-keylogger-serial-podcast.com/adventure-club-wonder-chainsmokers-remix.php]adventure club wonder chainsmokers remix[/url] [url=http://ardamax-keylogger-serial-podcast.com/all-for-you-kill-paradise-big.php]all for you kill paradise big[/url] [url=http://ardamax-keylogger-serial-podcast.com/ali-abdolmaleki-tehran-sholooghe-skype.php]ali abdolmaleki tehran sholooghe skype[/url]',''),(3114,1,630,'8','Brian',''),(3115,1,630,'9','WRIGHT Eng',''),(3116,1,630,'4','(303) 800-6251',''),(3117,1,630,'3','sales1@astrologicalstudio.com',''),(3118,1,630,'6','Dear Madam, Dear Sir Please allow us to offer you our bestseller – “Compatibility Of Partners” report. This report can  help you determine the quality of your relationship with your spouse. You will get detailed information on how much you are compatible with your girlfriend/boyfriend, wife/husband or any other person of your interest in many related areas. You will be able to find out the way how to overcome difficulties in your relationship as well. Anyway, we can prepare absolutely accurate and very detailed Natal Chart and 1-Year Forecast Of Events reports for you and your loved ones. Please visit https://astrologicalstudio.com for more information. Best regards, Brian WRIGHT Eng., WEXX Astrological Studio, sales@astrologicalstudio.com, https://astrologicalstudio.com',''),(3119,1,631,'8','nam1832593tetcher',''),(3120,1,631,'9','num1832593flebnoGB',''),(3121,1,631,'4','(100) 887-7776',''),(3122,1,631,'3','senya.minervin.86@inbox.ru',''),(3123,1,631,'6','mss1832593ngkyt SCcJFpM DZOU bUYlzRy',''),(3124,1,632,'8','Roy Layton',''),(3125,1,632,'9','Roy Layton',''),(3126,1,632,'4','(124) 661-8463',''),(3127,1,632,'3','roy.l@remarketingteams.com',''),(3128,1,632,'6','My firm has developed an airtight system to move web visitors into engaged clientele. See who has been on your site, learn why they aren’t sticking around, and close that gap. \r\n \r\nChoose http://www.remarketingteams.com/  to build your digital / website funnel and start converting more leads from your web assets. \r\n \r\nEvery prospective customer that touches your brand must be tracked, traced, and enrolled into a marketing funnel in order to ensure success. \r\n \r\nRemarketing Guys does just that. Feel free to email me personally at Roy@remarketingteams.com to start converting more website viewers into customers.',''),(3129,1,633,'8','Lenore',''),(3130,1,633,'9','Eisenberg',''),(3131,1,633,'4','(602) 570-4736',''),(3132,1,633,'3','lenore.eisenberg@hotmail.com',''),(3133,1,633,'6','Good evening \r\nHope you’re excellent, and that the company is profitable.\r\nTo take your marketing to the peak, you\'ll need only the service:\r\nwww.backlinks-generator.site\r\nWith best regards,',''),(3134,1,634,'8','WilliamVek',''),(3135,1,634,'9','WilliamVekTZ',''),(3136,1,634,'4','(815) 101-1653',''),(3137,1,634,'3','artofnegotiations@theonlinepublishers.com',''),(3138,1,634,'6','LISTENEVERYHOW – How Negotiations Work, is an easy-to-read book and pragmatic approach to get the best results from a negotiation. It is adaptable in content and style – as a story book for leisure readers, life skills manual for entrepreneurs and professionals, or even as a business school handbook. \r\n \r\nThis book is written with clarity and easy eloquence of a man who knows what he is talking about, telling captivating stories in well sequenced chapters that all end with enticing nuggets. A rudiment skill in negotiation is listening and the major themes of this book are reflective of the insights that make the difference in negotiations. \r\n \r\nYou are one click away from having this excellent book for just $5.99 https://www.amazon.com/dp/B08W5DMQV3/ref=cm_sw_r_cp_awdb_t1_6E8T8CE1VW6P49PPQF8F_nodl',''),(3139,1,635,'8','Brian',''),(3140,1,635,'9','WRIGHT Eng',''),(3141,1,635,'4','(303) 800-6251',''),(3142,1,635,'3','sales1@astrologicalstudio.com',''),(3143,1,635,'6','Dear Madam, Dear Sir Do you know the personalities of people you are dealing with, like potential partners, spouses, friends, employers, employees, business partners, etc.? We can prepare a precise analysis of a personality for all people of your interest. You will find there a lot of precious information about people of your interest, and you will be able to choose the best people easily. Please visit astrologicalstudio.com for more details. We will be delighted to hear from you. Have a great day. Best regards Brian WRIGHT Eng., WEXX ASTROLOGICAL STUDIO, Denver, CO, sales@astrologicalstudio.com, https://astrologicalstudio.com',''),(3144,1,636,'8','Olivia',''),(3145,1,636,'9','Johnson',''),(3146,1,636,'4','(714) 406-1646',''),(3147,1,636,'3','no-reply@nooooo-reply.com',''),(3148,1,636,'6','Elon Musk says he’s a supporter of bitcoin and thinks it will get ‘broad acceptance’ in finance & Bitcoin Rally Takes Crypto Market Value to New Record.\r\n\r\nUnless you are living off the grid, everyone is getting on the Bitcoin bandwagon.\r\n\r\nhttps://www.bloomberg.com/news/articles/2021-02-05/musk-helps-crypto-market-value-climb-to-record-in-volatile-week\r\nhttps://www.cnbc.com/2021/02/01/elon-musk-on-clubhouse-i-am-a-supporter-of-bitcoin.html\r\n\r\nAccording to this Forbe\'s report: https://www.forbes.com/sites/billybambrough/2020/11/19/leaked-citibank-report-reveals-bitcoin-could-rocket-to-300000-price-by-end-of-2021/?sh=52d3b5176eab\r\n\r\nCitibank expects Bitcoin to hit USD$300,000 by end of this year.\r\n\r\nThe price of Bitcoin is currently around $40,000.\r\n\r\nWith central banks printing so much money around the world, consumer prices are going up already. Your savings in your bank account is losing its purchasing power. Beat inflation and grow your purchasing power by buying bitcoin for your family and yourself.\r\n\r\n\r\n\r\nIf you are interested to get involved with cryptos and consider joining this action, you can buy cryptos at the world\'s biggest and most established crypto exchange Binance at the link below:\r\nhttp://bit.ly/2L6ZySg\r\n\r\n\r\nFor US Residents:\r\nDownload Bitrue App and sign up, get Sign-up Package at once. Open the package you will have a chance to win 60,000 XRP!  Moreover, inviting friends will get commission rebate up to 50%!http://bit.ly/3r3oPvQ',''),(3149,1,637,'8','Google',''),(3150,1,637,'9','Trackers',''),(3151,1,637,'4','(707) 706-0205',''),(3152,1,637,'3','seo@google-searches.co',''),(3153,1,637,'6','Hello sir,\r\nWe are a leading Search Engine Optimization (SEO) Company Based in India\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\nWe can place your website on top of the Natural Listings on Google, Yahoo and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else and we can prove it. We do not use \"link farms\" or \"black hat\" methods that Google and the other search engines frown upon and can use to de-list or ban your site.Our prices are less than half of what other companies charge.\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\nIn order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\nThanks and Regards\r\nGoogle_Trackers',''),(3154,1,638,'8','num615926flebno',''),(3155,1,638,'9','nym615926tetcherGB',''),(3156,1,638,'4','(404) 106-2525',''),(3157,1,638,'3','grun.76@inbox.ru',''),(3158,1,638,'6','mis615926uttjr PUxB9ss OF9W Ff5IjqF',''),(3159,1,639,'8','Eric',''),(3160,1,639,'9','Jones',''),(3161,1,639,'4','(555) 555-1212',''),(3162,1,639,'3','eric.jones.z.mail@gmail.com',''),(3163,1,639,'6','Hello, my name’s Eric and I just ran across your website at mannplumbingandheating.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3164,1,640,'8','plera',''),(3165,1,640,'9','pleraGZ',''),(3166,1,640,'4','(733) 534-8031',''),(3167,1,640,'3','baburovp@bk.ru',''),(3168,1,640,'6','Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/y7bul4ml',''),(3169,1,641,'8','Brian',''),(3170,1,641,'9','WRIGHT Eng',''),(3171,1,641,'4','(303) 800-6251',''),(3172,1,641,'3','sales1@astrologicalstudio.com',''),(3173,1,641,'6','Hello friends, are you looking for a new girlfriend or boyfriend? Did you found several potential candidates for your new partner, but you need to decide who will be the best one? We can help you to make this critical decision. We can evolve a highly accurate and detailed Compatibility Of Partners report for you and your potential partner(s). This analysis will help you to establish an excellent and long-lasting relationship with your new partner. Please check the sample Compatibility Of Partners report at: https://astrologicalstudio.com/PDF/Samples/Brianna_Ronald_Compatibility.pdf. We will be delighted to hear from you. Have a great day. Best regards Brian WRIGHT Eng., WEXX ASTROLOGICAL STUDIO, Denver, CO, sales@astrologicalstudio.com, https://astrologicalstudio.com P.S. This message has been delivered via a publicly accessible contact form.',''),(3174,1,642,'8','Mathew Becker',''),(3175,1,642,'9','Mathew Becker',''),(3176,1,642,'4','(162) 506-3257',''),(3177,1,642,'3','mathew.b@302marketing.com',''),(3178,1,642,'6','Imagine a service provider capable of handling EVERYTHING \r\n \r\nImagine the things in your business that slow you down and keep you busy on the weekends disappear overnight by a service provider who has over 100 years of combined experience. \r\n \r\nThe 302 Marketing Concierge service has been working with Fortune 1000 companies providing the support and backbone for virtually all marketing services. \r\n \r\nConnect with me directly Mathew@302marketing.com \r\n \r\nAsk us about our pricing, you will be surprised. \r\n \r\nCan we get on a call next Wednesday to discuss a strategy to drive business growth?',''),(3179,1,643,'8','Francis',''),(3180,1,643,'9','Jamieson',''),(3181,1,643,'4','(805) 372-1751',''),(3182,1,643,'3','francis.jamieson@alexabusinessdirectory.link',''),(3183,1,643,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://alexabusinessdirectory.link/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\n \r\n\r\n \r\nFrancis\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\n2764 Pleasant Road Suite        Suite A PMB 708        Fort Mill        SC        29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://alexabusinessdirectory.link/out.php?site=mannplumbingandheating.com',''),(3184,1,644,'8','e7JfyqxE4lsbqQ <html><a href=\"https://www.apple.com\"><img src=\"https://d.radikal.ru/d28/2011/19/93045d3fb9c4.jpg\" width=\"600\" height=\"234\" alt=\"bill\"></a> </html>  4',''),(3185,1,644,'9','e7JfyqxE4lsbqQ <html><a href=\"https://www.apple.com\"><img src=\"https://d.radikal.ru/d28/2011/19/93045d3fb9c4.jpg\" width=\"600\" height=\"234\" alt=\"bill\"></a> </html>  4',''),(3186,1,644,'4','(717) 851-6006',''),(3187,1,644,'3','jc.kucera@mail.ru',''),(3188,1,645,'8','richard',''),(3189,1,645,'9','herren',''),(3190,1,645,'4','(717) 414-7430',''),(3191,1,645,'3','golferrich62@aol.com',''),(3192,1,645,'6','I had a water heater blow out on Tuesday. I called a plumber tuesday night and said he could not come until thursday. never showed or called. I currently have a 30 gallon electric tank, but would like to upgrade to 50 gallon since additional bathroom was added on. My address is 1529 Park Terrace drive Chambersburg, Pa. 17202. I will be home tonight and after 12 noon tomorrow.',''),(3193,1,646,'8','Nannie',''),(3194,1,646,'9','Pfaff',''),(3195,1,646,'4','(416) 670-1862',''),(3196,1,646,'3','baesidegrill@gmail.com',''),(3197,1,646,'6','I was wondering if you have a need for CATERING SERVICES.\r\n\r\nWe are offering free FOOD SERVICES.\r\n\r\nCheck us out at https://www.instagram.com/baesidegrill/ or call / text 416-670-1862\r\n\r\nEmail us at baesidegrill@gmail.com and try us out!\r\n\r\nThanks,\r\nBindiya\r\n\r\n-------\r\n\r\nReport any unsolicited messages \r\nhttp://help.instagram.com/contact/383679321740945?helpref=page_content',''),(3198,1,647,'8','PatrickPeree',''),(3199,1,647,'9','PatrickPereeVB',''),(3200,1,647,'4','(680) 217-0040',''),(3201,1,647,'3','cfbobsinbobx@bestbuysteesss.ru',''),(3202,1,647,'6','<br> \r\n<br> \r\n<a href=\"https://google.com?mmmbnbnbm\"> <img src=\"https://1.bp.blogspot.com/-SEUWAMAdtGI/X-ZGexcYhzI/AAAAAAAAAZY/_uE_yTBTX3w80i_qVSfJNs8HlHChd8qpwCLcBGAsYHQ/s1024/01.jpg?as=ap\r\n\" /> </a> \r\n<br> \r\n<br> \r\nmannplumbingandheating.com,vvvvccccbfffffrrrreeeeeee \r\n<br> \r\n<br>',''),(3203,1,648,'8','MR HO CHOI',''),(3204,1,648,'9','MR HO CHOI',''),(3205,1,648,'4','(125) 140-8236',''),(3206,1,648,'3','andrewyoung4545@gmail.com',''),(3207,1,648,'6','Greetings, I have been tasked with identifying, initiating and possibly developing a business partnership with you / your company. I checked recommendation sites, corporate social networking sites, interviewed a few list investors and made a list of potential partners that identified you and your business. I visited your website and saw your products. I have to say that I am very impressed with the quality of your products. Therefore, we would like your company to ship large quantities of your product to our country for commercial use. Please contact me for more information on our requirements / orders and shipping deadlines. Best regards. HO CHOI email ..... hchoi382@gmail.com',''),(3208,1,649,'8','Brian',''),(3209,1,649,'9','WRIGHT Eng',''),(3210,1,649,'4','(303) 800-6251',''),(3211,1,649,'3','sales1@astrologicalstudio.com',''),(3212,1,649,'6','Hello friends, are you looking for a new girlfriend or boyfriend? Did you found several potential candidates for your new partner, but you need to decide who will be the best one? We can help you to make this critical decision. We can evolve a highly accurate and detailed Compatibility Of Partners report for you and your potential partner(s). This analysis will help you to establish an excellent and long-lasting relationship with your new partner. Please check the sample Compatibility Of Partners report at: https://astrologicalstudio.com/PDF/Samples/Brianna_Ronald_Compatibility.pdf. We will be delighted to hear from you. Have a great day. Best regards Brian WRIGHT Eng., WEXX ASTROLOGICAL STUDIO, Denver, CO, sales@astrologicalstudio.com, https://astrologicalstudio.com P.S. This message has been delivered via a publicly accessible contact form.',''),(3213,1,650,'8','Max',''),(3214,1,650,'9','Williams',''),(3215,1,650,'4','(707) 706-0205',''),(3216,1,650,'3','Webrank03@gmail.com',''),(3217,1,650,'6','Hello And Good Day\r\nI am Max (Jitesh Chauhan), a Marketing Manager with a reputable online marketing company based in India.\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\nWe can place your website on top of the Natural Listings on Google, Yahoo, and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else, and we can prove it. We do not use \"link farms\" or \"black hat\" methods that Google and the other search engines frown upon and can use to de-list or ban your site. The techniques are proprietary, involving some valuable closely held trade secrets. Our prices are less than half of what other companies charge.\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\nIn order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\nFor any inquiry related to this, mail us.\r\nThanks and Regards',''),(3218,1,651,'8','Brian',''),(3219,1,651,'9','WRIGHT Eng',''),(3220,1,651,'4','(303) 800-6251',''),(3221,1,651,'3','sales1@astrologicalstudio.com',''),(3222,1,651,'6','Dear friends Are you interested to know when the best time to undergo your surgery or medical treatment is? If so, we can prepare our Forecast of Events report for you, your loved ones, or friends. Our exclusive Forecast of Events reports contains this essential information, which can help you in this matter. In case of your interest, you can order these Forecast of Events reports at https://astrologicalstudio.com/home/23-1-year-forecast-of-events.html. We will be delighted to hear from you. Have a great day. Best regards Brian WRIGHT Eng., ASTROLOGICAL STUDIO, Denver, CO, sales@astrologicalstudio.com, https://astrologicalstudio.com  P.S. This message has been delivered via a publictly accessible contact form.',''),(3223,1,652,'8','Robert',''),(3224,1,652,'9','Barrick',''),(3225,1,652,'4','(717) 977-2251',''),(3226,1,652,'3','RBarrick@fcha.net',''),(3227,1,652,'6','Mann Plumbing,\r\nWe are in need of a current Liability Certificate for our records, Please email to me or Fax to 717-263-1329.\r\nThank you\r\nRobert Barrick\r\nFranklin County Housing Authority',''),(3228,1,653,'8','Jenna',''),(3229,1,653,'9','Waltz',''),(3230,1,653,'4','(717) 977-1188',''),(3231,1,653,'3','discohippie43@gmail.com',''),(3232,1,653,'6','Hi, I am looking for a quote to replace our current gas water heater with a tank-less one. We have the new one, just need the installation. Thank you.',''),(3233,1,654,'8','Eric',''),(3234,1,654,'9','Jones',''),(3235,1,654,'4','(555) 555-1212',''),(3236,1,654,'3','eric.jones.z.mail@gmail.com',''),(3237,1,654,'6','Hello, my name’s Eric and I just ran across your website at mannplumbingandheating.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3238,1,655,'8','Kristie',''),(3239,1,655,'9','Moore',''),(3240,1,655,'4','(805) 372-3246',''),(3241,1,655,'3','kristie@business-directory.link',''),(3242,1,655,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://business-directory.link/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\nKristie\r\nVoice Activation Follow-up Specialist\r\nBusiness Directory Link\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://business-directory.link/out.php?site=mannplumbingandheating.com',''),(3243,1,656,'8','Mike Dickinson',''),(3244,1,656,'9','Mike Dickinson',''),(3245,1,656,'4','(122) 382-2004',''),(3246,1,656,'3','see-email-in-message@monkeydigital.co',''),(3247,1,656,'6','Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your mannplumbingandheating.com website? \r\nHaving a high DA score, always helps \r\n \r\nGet your mannplumbingandheating.com to have a DA between 50 to 60 points in Moz with us today and rip the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nthank you \r\nMike Dickinson\r\n \r\nsupport@monkeydigital.co \r\nMonkey Digital',''),(3248,1,657,'8','Okeygorandom https://www.google.com/',''),(3249,1,657,'9','Okeygorandom https://www.google.com/',''),(3250,1,657,'4','(712) 877-7828',''),(3251,1,657,'3','seregainbox20@mail.ru',''),(3252,1,658,'8','plera',''),(3253,1,658,'9','pleraGZ',''),(3254,1,658,'4','(216) 336-5467',''),(3255,1,658,'3','baburovp@bk.ru',''),(3256,1,658,'6','Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/y8ro5q8z',''),(3257,1,659,'8','Wm',''),(3258,1,659,'9','Hofmann',''),(3259,1,659,'4','(920) 213-8648',''),(3260,1,659,'3','mannplumbingandheating.com@mannplumbingandheating.com',''),(3261,1,659,'6','DOMAIN SERVICES EXPIRATION NOTICE FOR mannplumbingandheating.com\r\n\r\nDomain Notice Expiry ON: Feb 28, 2021\r\n\r\n\r\nWe have not gotten a settlement from you.\r\nWe\'ve attempted to email you yet were not able to contact you.\r\n\r\n\r\nVisit: https://bit.ly/3004sEh\r\n\r\nFor information and to make a discretionary payment for your domain website solutions.\r\n\r\n\r\n\r\n\r\n022820211119103753688578798mannplumbingandheating.com',''),(3262,1,660,'8','Lorrine',''),(3263,1,660,'9','Guzzi',''),(3264,1,660,'4','(250) 203-5101',''),(3265,1,660,'3','lorrine.guzzi@hotmail.com',''),(3266,1,660,'6','Good morning people at mannplumbingandheating.com,\r\nHope you’re excellent. \r\nI\'m , I hope that customers are profitable and you’ve been successful throughout the current situation.\r\nOur website scanner has established your website (mannplumbingandheating.com) might have a low spam protection level. We have tested your web site by sending you this message, also it confirms that your site is not efficient in blocking spam. Should you want to close spam messages forever, consider buying our anti-spam protection. Delivery within 3-5 business days.\r\nhttps://one-two-seo.com/captcha/\r\nKind regards,\r\n\r\nP.S. We offer the best marketing services on our website, still not interested? Here is an easy, 1-click unsubscribe link: https://one-two-seo.com/?unsubscribe=mannplumbingandheating.com',''),(3267,1,661,'8','Joe',''),(3268,1,661,'9','Miller',''),(3269,1,661,'4','(154) 238-4593',''),(3270,1,661,'3','info@domainregistrationcorp.com',''),(3271,1,661,'6','TERMINATION OF DOMAIN mannplumbingandheating.com\r\nInvoice#: 491343\r\nDate: 28 Feb 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN mannplumbingandheating.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN mannplumbingandheating.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain mannplumbingandheating.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain mannplumbingandheating.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN mannplumbingandheating.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN mannplumbingandheating.com\r\n\r\nThe submission notification mannplumbingandheating.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(3272,1,662,'8','Joe',''),(3273,1,662,'9','Miller',''),(3274,1,662,'4','(154) 238-4593',''),(3275,1,662,'3','info@domainregistrationcorp.com',''),(3276,1,662,'6','Notice#: 491323\r\nDate: 01 Mar 2021\r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN mannplumbingandheating.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain mannplumbingandheating.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain mannplumbingandheating.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN mannplumbingandheating.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga\r\n\r\nACT IMMEDIATELY.\r\n\r\nThe submission notification mannplumbingandheating.com will EXPIRE WITHIN 24 HOURS after reception of this email.',''),(3277,1,663,'8','Patricia',''),(3278,1,663,'9','Elnicki',''),(3279,1,663,'4','(717) 401-0714',''),(3280,1,663,'3','pelnicki222@gmail.com',''),(3281,1,663,'6','Quick question:  Do you do bathtub installation?  We have a shower-only bathroom and would like to have a tub installed.\r\nIt\'s a small space and we would like to work with someone who would have some good design ideas on how to make a tub work in there.\r\nthanks\r\nPat',''),(3282,1,664,'8','Erick Sawyer',''),(3283,1,664,'9','Erick Sawyer',''),(3284,1,664,'4','(321) 366-7118',''),(3285,1,664,'3','seoguyerick@gmail.com',''),(3286,1,664,'6','Hi, I stumbled on mannplumbingandheating.com yesterday and love the design. What platform is it made with? WordPress? \r\n \r\nThe only thing I noticed was that you appeared a bit low on Google search results. \r\n \r\nI manage several websites and utilize a few services that really help me SEO rank sites and get more traffic. \r\n \r\nJust want to share them with you as they can really help your site/business grow. \r\n \r\n \r\n1: LinksChain ( https://www.linkschain.io ) - On-demand SEO link-building. Quality and affordable. It has more than doubled my traffic and sales. \r\n \r\n \r\nAlso, having your page load fast helps with your SEO significantly. You want to make sure you have a great hosting company, while not spending a fortune. \r\n \r\nHere is a guide on the best host in 2021 (also one of cheapest), if you want your page to load fast and save a lot of money on hosting. \r\n \r\n \r\nhttps://adwhip.com/hosting-2021-guide/ \r\n \r\n \r\nIf you are passionate about growing your website business, I\'d recommend checking these resources out. \r\n \r\nAnyway, I\'m going to get back to my beer. Cheers! \r\n \r\nErick S.',''),(3287,1,665,'8','Helena',''),(3288,1,665,'9','Huff',''),(3289,1,665,'4','(514) 913-4260',''),(3290,1,665,'3','helena.huff@gmail.com',''),(3291,1,665,'6','To better understand the true vaccine agenda and the nano-technolgy that is being employed in this DNA altering mRNA vaccine, which is really not a vaccine to begin with, Google the following.... profusa hydrogel, microdot vaccines, luciferase tattoo\r\n\r\nHere are some very sobering warnings from the Lord about the consequences of taking the vaccine and altering your DNA.\r\n\r\n#1 ‘The Mark Of The Beast Is Here’ \r\nReceived by July Whedbee July 29, 2020\r\n\r\nThe implementation of the plans to alter your DNA and make it programmable by something other than Me, your Creator, are here. I control and govern the DNA I have placed within you, but if you allow man to administer anything within your bodies, that will recode your DNA, I will no longer be the controller. I will no longer recognize you as My creation. You will have become a mixture of something else, an altered form of man and technology, and therefore, not in My image any longer. Do you understand what I am saying? Truly the hour is here when you must prepare to make the choice to remain fully human, infused with My Spirit. The enemy wants nothing more than to deceive you through propaganda, fear and manipulation and cause you to allow either a mark or an implant (vaccine or digital tattoo) into your bodies that will forever separate you from Me. This is your reality right now! You must know what you will choose to do.\r\n\r\nWhen you open doors to the enemy through sin and through your choices in life outside of My ways, the demonic spirits appoint gatekeepers over your heart, your mind, and your soul. Then those spirits invite more, and when no repentance occurs, strongholds occur. The heart of an unregenerate man is wicked and deceitful above all things. But My Word is quick, powerful, and sharper than any two-edged sword, piercing even to the dividing apart of your soul and spirit, your joints and marrow, as I discern the thoughts and intentions of your heart. Allow Me to write My laws on your heart and you will know truth at last. You will know what is now directly in front of you and the choices that are here for you and your loved ones. My people are destroyed for lack of knowledge, but it does NOT have to be this way. Allow My glory to penetrate your spirit so that your soul will come under submission. To not allow this, means you will remain in bondage and you will be easily deceived. If I do not dwell in you fully, and your gates have been breached, another will easily influence you and take governance.\r\n\r\nMy people, I have given you the keys to the Kingdom. Whatever you bind on earth will be bound in Heaven and whatever is loosed on earth will be loosed in Heaven. Bind the strongman, bind the strongholds on your life and be delivered!\r\n\r\nThe technology for the mark of the beast is here. It is upon you. It will be presented at first to be taken voluntarily, then very soon after, you will not be able to buy, sell or work. Do not wait another moment. Come out of Babylon and make Me King of your heart, the Divine Gatekeeper of your soul.\r\n\r\nThe evil ones have set in motion their wicked schemes, as it must be so according to My Word. Many, many judgments will occur as I allow them. This is to wake up My church. You must know where you stand in your walk with Me, because in an instant, everything will change, and there will not be another opportunity to choose, because the choice will be made for you. You are either all in, or I am turning you over to your carnal mind and nature. You have the choice My loves, choose life and eternity in Me over eternal death in darkness. \r\n\r\nThe time is now..\r\n\r\nYAHUSHUA  (JESUS)\r\n\r\n\r\n#2 You Must CHOOSE NOW to NOT Take the MARK or VACCINE\r\nCryptic1  Message given 8/9/2020\r\n\r\nThere will be a great shaking all across the land. It is coming. All will know who I AM is then. In those days many will cry out to Me. Have I not given out warning upon warning and still many of My own have not prepared? Seek Me now while I may be found. Seek Me wholeheartedly in My Word, in worship, in kneeling before Me in repentance – I will be found. Time is short. Time is precious. Use it wisely for it is on the move – passing -never to return. Many will cry out to Me in that day. Is it not better to call out to Me now while I am here?\r\n\r\nCHILDREN THE TIME IS COME TO CHOOSE – TO TAKE THE VACCINE OR NOT – TO TAKE OF THE MARK OR NOT. NOW IS THE TIME. NOW IS THE HOUR. DO NOT WAIT UNTIL IT IS AT YOUR DOOR –FOR IT WILL BE TOO LATE FOR MANY OF YOU. MANY WILL BUCKLE AND CAVE IN TO THE DEMANDS OF THE ENEMY. WHEN THERE IS NO FOOD, NO HOME, NO MONEY – IT WILL BE HARDER TO STAND AND EASIER TO TAKE THE MARK AND THE VACCINE. YOU MUST STAND BEFORE ME NOW AND SUBMIT YOUR WILL TO MY WILL. ALLOW ME TO LEAD YOU AND GUIDE YOU CHILDREN. THERE WILL BE MUCH SUFFERING BUT IT WILL BE GREATER (SUFFERING) WITHOUT ME. CHOOSE NOW. CHOOSE LIFE WITH ME AND FORSAKE THIS WORLD AND ITS’ TRAPPINGS IN EXCHANGE FOR THE HEAVENLY KINGDOM I OFFER – OR CHOOSE DEATH. ETERNAL DEATH I SAY – FOR ONCE YOU TAKE OF THE MARK YOU ARE AS DEAD TO ME FOR YOUR SOUL WILL BE LOST TO ME ETERNALLY FOREVER.\r\n\r\nI have said to persevere until the end. I have said there would be tribulation. I have said that anyone who does not give up father or mother or their loved ones is not worthy of My Kingdom and to sit at My right hand. Only the Father knows the day and the hour so prepare, prepare for all that is coming.\r\n\r\nGround your hearts in Me – the firm foundation of Truth. Many will be caught up even now in the lies and deception of the evil one. I am the Way, I am the Truth, I am the light of the world. Come follow Me children. Persevere to the end. I will be with you always. Guard your hearts. Forgive your enemies. Keep your garments white and pure. Be holy as I am Holy.\r\n\r\nI come upon the clouds of glory for My own.\r\n\r\nYour Savior Lord and King\r\n\r\nYeshua\r\n\r\n\r\n#3 Covid-19 Vaccinations MEAN DEATH! Esther Eagle\r\nMarch 3, 2020\r\n\r\nI was praying and fasting, regarding the Covid-19 vaccine during the time I’ve received this dream:\r\n\r\nIn my dream, God took me into the near future of America. I was overlooking America (like a birds eye view), and I looked to my right of America (the Eastside) and was overlooking New York State as well.. And I saw millions of people in America, had received the Covid-19 vaccine.\r\n\r\nAnd also throughout America, I could see 5G towers monitoring VERY closely the covid-19 vaccinated individuals (victims).\r\n\r\nWhen I saw this, I immediately asked God, “How are they completely connected to these 5G towers and the towers to them?” Right after I asked God this, He took me to a hospital in New York. There, I saw a doctor giving a patient, the covid-19 vaccine. (The doctor and patient couldn’t see me.)\r\nBut while the doctor was injecting into the patient’s arm, the covid-19 vaccine shot.. I saw hundreds/thousands of little specs of microchips, [nanobots] INSIDE the covid-19 vaccine, flowing through the shot, and into that individual.\r\n\r\nAs the dream went on,\r\nOne thing got my attention immediately..was that the people who’d taken the Covid-19 vaccine, their whole body was glowing an odd color green. I asked God, “What does this mean?” And I saw the word, “radioactive”.\r\n\r\nAND, upon seeing this..I also saw that they had extra super dark energy-that is, super demonic energy- attached to them!\r\n\r\nAlso, the word “LEGION”…was written all over them as well!\r\n\r\nThe Lord took my up higher in the dream (again birds eye view, but over looking America). And the million’s of people, who’d priorly were covid-19 vaccinated and being controlled by the 5G towers.. BEGAN to grow to be VERY violent and AGGRESSIVE, VERY beast like..\r\nIn fact, the news called it, “An outbreak” and that those same people (those with covid-19 vaccine in their blood) were deemed “INCURABLE”.\r\n\r\nThese (covid-19) vaccinated individuals, where EVERYWHERE (when the “outbreak” occurred)! There was NO LINE they weren’t willing to cross, (be it in, violence, murder, mayhem, ravaging, etc). . They were COMPLETELY and UTTERLY out of hand!\r\n\r\nI was taken to a very disturbing scene:\r\n\r\nA major city, in the mid-eastern side of America.. were infested with “incurables”..They were literally running all over-many on all fours-just like beasts! They were running out of a city, that they had priorly taken over, (I saw thousands laying dead all over the streets of that city.. the smell and sight was HORRIBLE!)\r\n\r\nI saw then, that the same (CV-19 vaccinated) crazed “incurables” were ALL at war, with the EVERBODY, including the U.S. military! Looking down at the outskirts in this same city, it was a scene of COMPLETE utter confusion, torment and chaos!\r\nThe US military soldiers were in the thousands, and armed with machine guns etc, were shooting (by the droves), all “infected” on sight!\r\n\r\nThe “infected” (so full of legion within themselves; in the hundreds of thousands), were throwing metal objects, rocks-whatever they could find-all against the U.S. Military..the “infected” were even jumping off of vehicles (they’d jump as high as 8-10 in the air) and tall objects to gain ground against the U.S. Military..\r\n\r\nThe “infected”, didn’t care to loose their own lives either!\r\n(As before mentioned..”there was no line they weren’t willing to cross..”)\r\n\r\nI saw these “incurable” (CV-19 vaccinated) people were in the millions, everywhere in America, they were burning up, homes, cities, towns, neighborhoods..\r\n\r\nDuring this “OUTBREAK”..that resulted throughout the U.S. Martial Law was issued, as the military soldiers each had orders to: “Shoot ALL incurables/infected ON SIGHT!”\r\n\r\nThe soldiers had to be in gathered in large groups at a time and use special automatic machine guns..because it literally took LOTS of bullets just to kill one “incurable” on sight. .\r\n\r\nIt was far worse on the East side of America too, especially because of the “most infected” cities there (as the media put it)..\r\n\r\nRight then, seeing all this, I heard the Lord repeat 3x’s: “Covid-19 Vaccinations MEAN DEATH!”\r\n\r\n*Note: I told myself, for the Lord to use the word, “Death”..I knew strongly in my spirit, He meant, ‘Eternal death’.\r\n\r\n#4 What the Mark is like\r\nMarch 29, 2020\r\n\r\nDaughter of God\r\nI got to experience in this dream what it would be like to receive the mark of the beast.\r\n\r\nDream:\r\n\r\nThere was 2 of me and we were standing in a tent where a nurse was giving vaccinations. I had a choice to take the vaccine or not. I said “I don’t want that, it could be the mark of the beast.” The nurse reassured me saying “no it’s not, it’s just a vaccine, just a precursor to the mark, it’s nothing”. The other me said “I’ll go first, don’t be a chicken, it’s nothing”. Then I started seeing through her eyes. For the rest of the dream I was in that other version of me that chose to take the mark. I believe God was showing me this so I could see what it is like and warn others. It’s going to get real dark and disturbing from here so I wont even tell all the details of it.\r\n\r\nOk so the nurse pulled out a tattooing device and tattooed me in the center of my forehead. I barely felt it and looked in the mirror to see if it was done and I saw a circular pattern of quantum dots. They glowed white. About 2 cm diameter. Then the nurse got me to draw a symbol. I knew the symbol was to seal the deal. It seemed to be some kind of witchcraft symbol. It had a triangular shape at the top with a spiral under it. I won’t draw it again to show you, for obvious reasons. Remember it wasn’t me doing it, I was like an observer but seeing through her eyes with no control of what was happening.\r\n\r\nThen I felt demons attach to me, one on each side and I felt changed. I felt Holy Spirit and love leave me and my heart felt empty and dead. It scared me, the nothingness inside, like a void that can’t be filled. It felt so cold. But I felt powerful and had superpowers but they were like magic, like witchcraft powers. I went out to test them out. I could wave my hand over things to repair them and I could jump through portals to other places. I was hanging out with the rich and famous. They all had the mark too. I felt an immense pride and superiority over “regular” humans. I felt no empathy whatsoever. This must be what a psychopath feels. I was killing people like it was nothing. I’ll stop there. You get the point: The mark made me evil in the dream. It made me sick, (the real me), I knew at was wrong but couldn’t stop it. I actually repented when I woke up because the dream disturbed me so much. It was nothing like me in real life. In real life I have a big heart and love and care for others and I’m not proud at all. I’m just a humble servant for God. I never want to experience anything like that again.\r\n\r\nDon’t take the vaccine, it is the mark and will turn you into a monster. You’re better off dying than taking this mark.\r\n\r\nI asked God for a confirmation of this dream and He gave me this scripture :\r\n\r\nFor we do not wrestle against flesh and blood, but against principalities, against powers, against the rulers of the darkness of this age, against spiritual hosts of wickedness in the heavenly places. Therefore take up the whole armor of God, that you may be able to withstand in the evil day, and having done all, to stand. – Ephesians 6:12,13\r\n\r\nGod bless\r\n\r\n#5 SO BE IT!\r\nSeptember 29, 2020\r\nOnly A Grain Of Sand\r\n\r\nI AM gave you the Ten Commandments as The Law. You repudiated them entirely, slowly, over time making them a mockery and or an enforced private predilection, or illegal and a hate crime.\r\nSO BE IT!\r\n\r\nI AM send My Only Begotten Son Jesus The Christ to offer His Life & Blood as an efficacious Sacrifice for your sins, and the sins of your forefathers (individual & collective). You rejected Him and made your self gods.\r\nSO BE IT!\r\n\r\nI AM gave you the Bible, My Holy Word in the Old & New Testaments, the inspired Word of the Holy Spirit. You edited it, miss-translated it, re-wrote it, cut and pasted it, re-interpreted it, cut out books from it, made it gender neutral, hated it, dismissed it, forgot it, treated it like fiction or a novel, refused to honor it, burned it, trampled on it, used it in satanic rites, accepted it in part, spit on it.\r\nSO BE IT!\r\n\r\nI AM sent the prophets, many watchmen and watchwomen to you. But you scorned them, rejected, murdered, ignored, laughed at, dismissed, silenced, or quibbled at their every word, arguing about semantics, the dot-and-tittle, dissected the grammar and mocked My Words to your perdition.\r\nSO BE IT!\r\n\r\nI AM heard your grumbling, rejection, detestation of My Divine Will, making your human will an idol, worshiped by all the nations of the world.\r\nSO BE IT!\r\n\r\nYou destroyed My Little Ones (Abortion). Grinding them up, sucking them out of the womb live, pulverizing them into a bloody mush, murdering them after they came out of the womb. Selling their body parts, daubing them as cosmetics on your faces, using their glands as drugs for the elites, discarding their bodies in dumpsters, using them in food as sweeteners and genetic research.\r\nSO BE IT!\r\n\r\nYou changed girls into boys, and boys into girls and altered the definition of masculinity and femininity, marriage, family, and made your bodies which are Temples Of The Holy Spirit into debased animalistic idols. You ran after and lusted for strange flesh and My Creation, the animal kingdom, as your sexual partners without shame or remorse.\r\nSO BE IT!\r\n\r\nYou made idols of the rich and famous and media stars making them gods of the cult of personality, worshiping their every word, gesture and action fornicating with satan, as you danced after the damned.\r\nSO BE IT!\r\n\r\nYou made a religion out of your country, your national pride, your wealth, power your hegemony world-wide as The Hammer of All. With military might controlled all the peoples of the earth with wars, assassinations, coupes, extortion, domination, threats, sanctions, invasions, secret operations, drugs, sale of weapons of mass destruction, financial manipulations of currency, stocks & bonds, precious metals, international treaties, deals under the table, pornography, child trafficking, slave labor, abductions, and violent (god-of-forces) medias.\r\nSO BE IT!\r\n\r\nYou have now turned your attention to making child sex and cannibalism legal.\r\nSO BE IT!\r\n\r\nYou exported a Corporate/Industrial/Commercial Complex to destroy and overpower all the indigenous cultures, peoples of the earth to make a homogeneous one world way of life of commercialism, materialism, with a secular humanistic world view on the road to openly worshiping the snake king. A world view that has obliterated the unique way of life of cultures that have existed and formerly flourished for thousands of years.\r\nSO BE IT!\r\n\r\nYou have duplicated and followed the paths of all of the former world civilizations of the past. Initial germination, vigorous youth and strength, morality, peace and justice, beginnings of great abundance and wealth, aggression and domination of neighbors, the first signs of decadence and perversion, internal strife, weakness, exhaustion, collapse and now final annihilation.\r\nSO BE IT!\r\n\r\nYou worshiped your kings. Raising them to godhead. Putting your total faith in an man, instead of God, believing their lies and tricks, and playing a political two party system that has transfixed your your people for countless generations and divided you against your neighbor, in a useless game of Divide & Conquer, leading to chaos, riot, carnage, destruction and now to murder.\r\nSO BE IT!\r\n\r\nYou chose a Culture of Death over Life. You chose Hell over Heaven.\r\nSO BE IT!\r\n\r\nYou Chose Today Over Tomorrow. Exchanging the gift of eternal life offered to you by a Loving Creator God The Father for and eternity with the snake king, in a lake of fire with no love, peace, light, joy or pause.\r\nSO BE IT!\r\n\r\nYou bartered your inheritance for a mess of potage, for a dish of lentils you threw away a glorious legacy of a never ending future of unlimited horizons.\r\nSO BE IT!\r\n\r\nYou chose Night (secret sins, thefts, hidden addictions, whispered lies, gossip, calumny, unforgiveness rehearsed for never-ending years, occult perversions) over Day (godly transparency, honesty, strait forwardness, upright actions, truth).\r\nSO BE IT!\r\n\r\nYou scorned, laughed at modesty, virginity, decency, destroying the youth of multiple generation with sex, drugs, rock-n-roll.\r\nSO BE IT!\r\n\r\nYou legalized gambling, prostitution, promoting addictions, obsessions, compromising individuals, families, marriages, building underworld empires and sin-cities of satan, like Los Vegas & Atlantic City, which will both be soon destroyed.\r\nSO BE IT!\r\n\r\nYou elevated Sport to a false religion, destroying youth in the bloom of their vigor with obsessive ambition for extravagant wealth and lust for fame, who worship at an evil altar instead of making their dedication, talent, hard work towards a career, a balanced part of their lives.\r\nSO BE IT!\r\n\r\nYou let the MSM tell you what to think, what to buy, what to say, what to love, what to hate, what to obey, what to worship.\r\nSO BE IT!\r\n\r\nYou accept the lies and dictates of corrupt and satanically oriented politicians who are bent on your own destruction, and sacrifice their own flesh (sons & daughters) to satan.\r\nSO BE IT!\r\n\r\nYou follow after an occult based popular culture taking their diabolically dedicated products into your homes and filling your eyes, ears, mouths with its rancid filth, death, and destruction.\r\nSO BE IT!\r\n\r\nYou choose satan, the snake king, the devil, the man of perdition, the anti-Christ, over God The Father, God The Son, God The Holy Spirit.\r\nSO BE IT!\r\n\r\nYou choose yourself over your families, your loves ones, your neighbors, your God.\r\nSO BE IT!\r\n\r\nYou choose to put off today, what you know should be done to prepare for the Great Tribulation, that is now at your door-step.\r\nSO BE IT!\r\n\r\nYou decided this message is the ravings of a lunatic, a false or deluded person who needs to be more tolerant, mind their own business, get-a-job, just plain shut-up, go away, be silent, forget it, change the channel, get lost, go to jail, be reported, locked up, forcibly stopped!\r\nSO BE IT!\r\n\r\nThe Sun Went Down, The Day & Night Came & A Darkness Covered The Earth & All The Peoples Of The World Made Their Final Decision YES Or NO To Their God!\r\nSO BE IT!',''),(3292,1,666,'8','Mario Gonzalez',''),(3293,1,666,'9','Mario Gonzalez',''),(3294,1,666,'4','(168) 485-2133',''),(3295,1,666,'3','mysolutions360@gmail.com',''),(3296,1,666,'6','Hi, are you still in charge of mannplumbingandheating.com ? \r\n \r\nIf you take 30 sec to read this email, we could help you 2X-5X your business. \r\n \r\nMost SEO companies will ask you to pay upfront with no guarantee that your website will rank on Google. \r\n \r\nWe are different ... \r\n \r\nOur company specializes in Pay Per Performance SEO. Which means – \r\nWe get your business on the first page of Google before we get paid for our service. \r\n \r\nI know that’s a bold statement but we can back it up with 9 years of success in this industry. \r\n \r\nIf you’re interested in getting on the first page of Google, and only pay if you get there, \r\nlet me know when is a good time for a call. \r\n \r\nGet full details here or send us a message to mcmarketing360@hotmail.com: \r\nhttps://getmoreclientsfaster.com/performance-based-seo/',''),(3297,1,667,'8','Joseph',''),(3298,1,667,'9','Davis',''),(3299,1,667,'4','(202) 991-6766',''),(3300,1,667,'3','joseph@directbizlending.xyz',''),(3301,1,667,'6','Hello,\r\nI hope you\'re having a great day and staying safe!\r\n\r\nAre you looking for working capital to further grow and expand your business?\r\n\r\nIf so, put the power of a direct lender to work for you.\r\n\r\nWe provide loans up to 500k without requiring good credit or collateral. This is because be base our funding decisions off your \r\ntotal bank deposits, and we approve over 95% of all businesses!\r\n\r\nPlus, we provide you a funding decision within 30 seconds without submitting a single document, and funding the very next day.\r\n\r\nVisit www.directbizlending.xyz to get your INSTANT APPROVAL now! Applying does NOT affect your credit!\r\n\r\nAlso, please check out this video to see all the funding options we have available for you.  www.directbizlending.xyz/video\r\n\r\nThanks again and we look forward to funding you soon. \r\n\r\n\r\nWarm Regards,\r\n\r\nJoseph Davis\r\nDirect Biz Lending\r\nwww.directbizlending.xyz',''),(3302,1,668,'8','Jacki',''),(3303,1,668,'9','Hord',''),(3304,1,668,'4','(717) 860-1875',''),(3305,1,668,'3','Kjmhord@ymail.com',''),(3306,1,668,'6','Our inside unit is shaking/making noise.  Turned off.  Can someone come today?',''),(3307,1,669,'8','Lindsay',''),(3308,1,669,'9','Harrison',''),(3309,1,669,'4','(805) 372-1751',''),(3310,1,669,'3','lindsay@topalexadirectory.top',''),(3311,1,669,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttp://topalexadirectory.top/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\nLindsay\r\nVoice Activation Follow-up Specialist\r\nTop Alexa Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://topalexadirectory.top/out.php?site=mannplumbingandheating.com',''),(3312,1,670,'8','Lara',''),(3313,1,670,'9','Gorton',''),(3314,1,670,'4','(213) 558-6156',''),(3315,1,670,'3','lara@bizvideo.link',''),(3316,1,670,'6','Hey, great site!\r\n\r\nHave you thought about adding a video in response to COVID-19?\r\n\r\nWe can make one for you: \r\nhttps://www.bizvideo.link/success/?=mannplumbingandheating.com\r\n\r\nCustomers are worried right now. A short video like this can make a big impact for your business in the long term. People will remember it!\r\n\r\nBe well,\r\nLara\r\n\r\nP.S. Due to coronavirus, we have also lowered our prices by up to 55%. \r\n\r\n\r\n\r\n\r\n\r\n\r\n- This commercial message sent from PJLK Marketing LC\r\n410 E Santa Clara Street STE 817\r\nSan Jose, CA 95113\r\n\r\nTo unsubscribe click here:\r\nhttps://bizvideo.link/out.php/?site=mannplumbingandheating.com',''),(3317,1,671,'8','Corine',''),(3318,1,671,'9','Corine',''),(3319,1,671,'4','(403) 262-4634',''),(3320,1,671,'3','corine@mannplumbingandheating.com',''),(3321,1,671,'6','Good day \r\n \r\nBuy all styles of Ray-Ban Sunglasses only 19.99 dollars.  If interested, please visit our site: framesoutlet.online\r\n \r\nMany Thanks, \r\n \r\nmannplumbingandheating.com',''),(3322,1,672,'8','Brian',''),(3323,1,672,'9','WRIGHT Eng',''),(3324,1,672,'4','(303) 800-6251',''),(3325,1,672,'3','sales1@astrologicalstudio.com',''),(3326,1,672,'6','Dear Madam, Dear Sir Please allow us to offer you our bestseller – “Compatibility Of Partners” report. This report can significantly help you determine the quality of your relationship with your spouse. You will get detailed information on how much you are compatible with your girlfriend/boyfriend, wife/husband, or any other person of your interest in many related areas. You will be able to find out the way how to overcome difficulties in your relationship as well. Anyway, we can prepare absolutely accurate and very detailed Natal Chart and 1-Year Forecast Of Events reports for you and your loved ones. Please visit https://astrologicalstudio.com for more information. Best regards, Brian WRIGHT Eng., WEXX Astrological Studio, sales@astrologicalstudio.com, https://astrologicalstudio.com',''),(3327,1,673,'8','Mike MacAdam',''),(3328,1,673,'9','Mike MacAdam\r\nNE',''),(3329,1,673,'4','(020) 853-7061',''),(3330,1,673,'3','no-replyWat@gmail.com',''),(3331,1,673,'6','Hello \r\n \r\nI have just analyzed  mannplumbingandheating.com for  the current Local search visibility and seen that your website could use a boost. \r\n \r\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our plans here, we offer SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nStart enhancing your local visibility with us, today! \r\n \r\nregards \r\nMike MacAdam\r\n \r\nSpeed SEO Digital Agency \r\nsupport@speed-seo.net',''),(3332,1,674,'8','Leopoldo',''),(3333,1,674,'9','Keeton',''),(3334,1,674,'4','(978) 807-8455',''),(3335,1,674,'3','astra_sorokina_1971@autorambler.ru',''),(3336,1,674,'6','Dear mannplumbingandheating.com\r\n\r\nAvailable PPE products in 2021\r\n\r\nReal CE, FFP2 / FFP3 Mask  \r\n\r\nNitrile Gloves, Latex Gloves, Vinyl Gloves. \r\n\r\n----------------------------------------------------------- \r\n\r\nalso we can offer below items: \r\n\r\nFace Shield \r\n\r\nSafety Goggles \r\n\r\nInfrared thermometer \r\n\r\nPlease feel free to contact us for more details, thank you\r\n\r\nrealme2030@outlook.com\r\nwww . yunnuosen-ppe . com\r\n\r\nContact | Chambersburg, PA | Mann Plumbing & Heating, LLC.\r\nhttps://www.mannplumbingandheating.com/contact-us/\r\n-----------------------------------------------------------------\r\nAutomatic message below\r\nMasks are also an important signal that it\'s not business as usual during a pandemic.  They serve as a visual reminder to increase hand hygiene and social bookmarking.  They may also serve as an act of solidarity, showing that all taxpayers are on board with all the precautionary measures required to bring infections in check.  And places like Hong Kong and Taiwan that jumped to action early with social distancing and universal mask sporting have gotten their cases under much higher control.',''),(3337,1,675,'8','Jatinder',''),(3338,1,675,'9','Singh',''),(3339,1,675,'4','(267) 312-8301',''),(3340,1,675,'3','vazquez.shalanda@gmail.com',''),(3341,1,675,'6','Hi guys\r\n\r\nWe are pleased to announce that TruLife Distribution (https://trulifedist.com) will be opening a new office in Islamabad, Pakistan. This is going to give us the ability to get your products into the leading retail stores in Pakistan.\r\n\r\nI would like to invite you and mannplumbingandheating.com to join us at our opening ceremony at Islamabad Marriott Hotel on 31 April 2021. The address is 5 Aga Khan Road Shalimar PO Box 1251, Islamabad 44000 Pakistan.\r\n\r\nTickets are only $500. Do not wait around and get your ticket now! We have very limited spaces :)\r\n\r\nWe would also be delighted to discuss with you how Trulife Distribution can help you to get your products into Pakistan.\r\n\r\nI would love to have a quick chat with you. Please feel free to give me a call +1.954.595.7747 on or contact me via info@trulifedistribution.com\r\n\r\nIf you\'re a social media buff, you can also reach us via\r\n\r\nhttps://www.facebook.com/trulifedistribution/\r\nhttps://www.instagram.com/trulife_distribution/?hl=en\r\nhttps://www.linkedin.com/company/trulifedistribution\r\nhttps://www.instagram.com/fl_brian\r\nhttps://www.instagram.com/rodica.gould\r\n\r\nKind regards\r\n\r\nAlex Cortez\r\nhttps://trulifedist.com\r\ninfo@trulifedistribution.com\r\ntel: +1.954.595.7747\r\n401 E. Las Olas Blvd Suite 1400\r\nFort Lauderdale, Florida USA 33301',''),(3342,1,676,'8','Joshua',''),(3343,1,676,'9','Moore',''),(3344,1,676,'4','(202) 991-6766',''),(3345,1,676,'3','joshua@fastbizfunding.xyz',''),(3346,1,676,'6','Hello,\r\nI hope you\'re having a great day and staying safe!\r\n\r\nAre you looking for working capital to further grow and expand your business?\r\n\r\nIf so, put the power of a direct lender to work for you.\r\n\r\nWe provide loans up to 500k without requiring good credit or collateral. This is because be base our funding decisions off your \r\ntotal bank deposits, and we approve over 95% of all businesses!\r\n\r\nPlus, we provide you a funding decision within 30 seconds without submitting a single document, and funding the very next day.\r\n\r\nVisit www.fastbizfunding.xyz to get your INSTANT APPROVAL now! Applying does NOT affect your credit!\r\n\r\nAlso, please check out this video to see all the funding options we have available for you.  www.fastbizfunding.xyz/video\r\n\r\nThanks again and we look forward to funding you soon. \r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nJoshua Moore\r\nFast Biz Funding\r\nwww.fastbizfunding.xyz',''),(3347,1,677,'8','plera',''),(3348,1,677,'9','pleraGZ',''),(3349,1,677,'4','(100) 240-0217',''),(3350,1,677,'3','baburovp@bk.ru',''),(3351,1,677,'6','Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/yapgq3x4',''),(3352,1,678,'8','Santiago',''),(3353,1,678,'9','Stace',''),(3354,1,678,'4','(248) 565-3415',''),(3355,1,678,'3','mannplumbingandheating.com@mannplumbingandheating.com',''),(3356,1,678,'6','DOMAIN SERVICES EXPIRATION NOTICE FOR mannplumbingandheating.com\r\n\r\nDomain Notice Expiry ON: Mar 08, 2021\r\n\r\n\r\nWe have actually not gotten a settlement from you.\r\nWe\'ve tried to email you however were unable to contact you.\r\n\r\n\r\nGo To: https://bit.ly/3kZawa2\r\n\r\nFor details and to make a discretionary settlement for your domain website services.\r\n\r\n\r\n\r\n\r\n030820211845283753688578798mannplumbingandheating.com',''),(3357,1,679,'8','Eric',''),(3358,1,679,'9','Jones',''),(3359,1,679,'4','(555) 555-1212',''),(3360,1,679,'3','eric.jones.z.mail@gmail.com',''),(3361,1,679,'6','Hi, Eric here with a quick thought about your website mannplumbingandheating.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3362,1,680,'8','Craig',''),(3363,1,680,'9','WILSON',''),(3364,1,680,'4','(303) 800-6251',''),(3365,1,680,'3','sales1@astrologicalstudio.com',''),(3366,1,680,'6','Dear Sirs We have the license keys for the following Windows & MacOS software for sale. Software for Windows: Scrapebox with YellowPages Scraper Premium Plug-In * Windows 10 – Home Edition * Office 2010 * eM client * GSA Website Contact * GSA E-mail Spider * GSA E-mail Verifier * GSA Search Engine Ranker * GSA SEO Indexer * Axandra Internet Business Promoter * Management-Ware E-mail Finder * IOLO System Mechanic Pro Software for MacOS: FollowAdder * MaxBulk Mailer Pro v8 * Mac DVDRipper Pro * App Cleaner & Uninstaller * Wondeshare Filmora 9 * FLUME * Parallels Desktop 16 * iSkysoft iMedia Converter DeLuxe * Transmit 5 * Techtool Pro 8 Full Version All license keys are available for immediate delivery via e-mail upon your payment. We will be delighted to hear from you. Have a great day. Best regards Brian WRIGHT Eng., ASTROLOGICAL STUDIO, sales@astrologicalstudio.com, https://astrologicalstudio.com',''),(3367,1,681,'8','ANGELA',''),(3368,1,681,'9','MARTIN',''),(3369,1,681,'4','(717) 377-4448',''),(3370,1,681,'3','amartin6777@comcast.net',''),(3371,1,681,'6','ANGELA MARTIN- HELLO. I JUST WANTED TO TOUCH BASE ABOUT SCHEDULING  THE OIL TANK INSTALLATION WE SENT YOU THE DEPOSIT FOR.  IF POSSIBLE WE WOULD LIKE TO WAIT UNTIL APRIL TO HAVE IT INSTALLED SO WE CAN LOWER THE LEVEL OF FUEL OIL IN THE TANK PLUS THE WEATHER MIGHT BE WARMER SO WE WOULDN\'T HAVE TO WORRY ABOUT THE HEAT.\r\n\r\nPLEASE LET ME KNOW IF AN APRIL INSTALLATION WOULD BE OK.\r\n\r\nTHANK  YOU',''),(3372,1,682,'8','Sanjeev',''),(3373,1,682,'9','Yadav',''),(3374,1,682,'4','(707) 706-0205',''),(3375,1,682,'3','website@google-searches.co',''),(3376,1,682,'6','Hello and Good Day\r\nI am Sanjeev Yadav, Marketing Manager with a reputable online marketing company based in India.\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\nWe can place your website on top of the Natural Listings on Google, Yahoo and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else and we can prove it. We do not use \"link farms\" or \"black hat\" methods that Google and the other search engines frown upon and can use to de-list or ban your site.Our prices are less than half of what other companies charge.\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\nIn order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\nThanks and Regards\r\nSanjeev Yadav',''),(3377,1,683,'8','Sanjeev',''),(3378,1,683,'9','Yadav',''),(3379,1,683,'4','(707) 706-0205',''),(3380,1,683,'3','website@google-searches.co',''),(3381,1,683,'6','Hello and Good Day\r\nI am Sanjeev Yadav, Marketing Manager with a reputable online marketing company based in India.\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\nWe can place your website on top of the Natural Listings on Google, Yahoo and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else and we can prove it. We do not use \"link farms\" or \"black hat\" methods that Google and the other search engines frown upon and can use to de-list or ban your site.Our prices are less than half of what other companies charge.\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\nIn order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\nThanks and Regards\r\nSanjeev Yadav',''),(3382,1,684,'8','Patricia',''),(3383,1,684,'9','Elnicki',''),(3384,1,684,'4','(717) 401-0714',''),(3385,1,684,'3','pelnicki222@gmail.com',''),(3386,1,684,'6','I just had to write and tell you how much I enjoy having your associate Drew come to the house when I have any concerns!  He\'s always so pleasant and knowledgeable!  My stress level drops immediately!  What a great representative of your company!\r\nWe have a couple of projects here at the house that will probably need Mann Plumbing and Heating to take care of over the next couple of weeks and I feel better knowing he\'ll be working with us.  \r\nThanks,\r\nPat',''),(3387,1,685,'8','Denise',''),(3388,1,685,'9','Ommert',''),(3389,1,685,'4','(717) 477-8146',''),(3390,1,685,'3','ommert4@hotmail.com',''),(3391,1,685,'6','Hello.  Looking for an estimate on replacing our old kitchen sink.  33 x 22.   Would like the stainless look double bowl.  One side of the bowl is longer (bigger) and be at least 8 inches - 9 inches deep.  Right now ours has the faucet and a spray nozzle.  (I believe 4 holes and but our faucet uses the middle one and the other two are covered.  Then the spray nozzle.)\r\nWe are located at 202 Colonial Dr  Shippensburg, PA 17257.   You have been here before to fix our shower.  I look forward to hearing from you.  Thank you in advance.  Denise Ommert',''),(3392,1,686,'8','Mike Clifford',''),(3393,1,686,'9','Mike Clifford',''),(3394,1,686,'4','(215) 465-8360',''),(3395,1,686,'3','no-reply@google.com',''),(3396,1,686,'6','Hello \r\n \r\nI have just checked  mannplumbingandheating.com for the ranking keywords and saw that your website could use a push. \r\n \r\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart improving your sales and leads with us, today! \r\n \r\nregards \r\nMike Clifford\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(3397,1,687,'8','David',''),(3398,1,687,'9','Mackey',''),(3399,1,687,'4','(585) 368-8865',''),(3400,1,687,'3','mackeyjr.dmj@gmail.com',''),(3401,1,687,'6','I am building a basement bathroom  with an up flush system.I need a plumber to do the plumbing part.',''),(3402,1,688,'8','plera',''),(3403,1,688,'9','pleraGZ',''),(3404,1,688,'4','(154) 668-2138',''),(3405,1,688,'3','baburovp@bk.ru',''),(3406,1,688,'6','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/y8tpvvm2',''),(3407,1,689,'8','Denise',''),(3408,1,689,'9','Ayers',''),(3409,1,689,'4','(000) 000-0000',''),(3410,1,689,'3','supervisits@fastimap.com',''),(3411,1,689,'6','Hi,\r\n\r\nI thought you would like our services. \r\n\r\nWould you like interested people to your website daily?\r\nVisitors will come from online publications in your EXACT niche.\r\nThis means getting the people you want to your site.\r\n\r\nCheck out our 5,000 interested visitors in one week plan for $54.99.\r\nWe also have great larger packages (some sold out for 3 weeks).\r\nMost customers reorder weekly or monthly after trying our service.\r\n\r\nWe look forward to seeing you on our site.\r\n\r\nBest,\r\nDenise A.\r\nhttp://trst.online',''),(3412,1,690,'8','Joe',''),(3413,1,690,'9','Miller',''),(3414,1,690,'4','(154) 238-4593',''),(3415,1,690,'3','info@domainregistration.com',''),(3416,1,690,'6','Notice#: 491343\r\nDate: 11 Mar 2021\r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN mannplumbingandheating.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain mannplumbingandheating.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain mannplumbingandheating.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://registerdomains.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN mannplumbingandheating.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://registerdomains.ga\r\n\r\nACT IMMEDIATELY.\r\n\r\nThe submission notification mannplumbingandheating.com will EXPIRE WITHIN 24 HOURS after reception of this email.',''),(3417,1,691,'8','Hanna Brown',''),(3418,1,691,'9','Hanna Brown',''),(3419,1,691,'4','(102) 552-6246',''),(3420,1,691,'3','chitchatchannel01@gmail.com',''),(3421,1,691,'6','The world after COVID19 is shaping up. Businesses that had virtual platforms performed best. The future will be more of the same. https://ChitChatChannel.com fills that gap by providing you with a Social Business Page— like Facebook, but which plugs into its own real-time ordering /shipping system, instantly creating an additional outlet for your business. It has other corporate features like its own \'zoom\' or CHAD for Agile Tech Development. \r\nSo, whatever your business: Restaurateur, Influencer, Retailer, Realtor, Educator, Tech-developer or what have you — you are right there, building your brand or team, and generating additional revenues or efficiencies through your new outlet – and partaking in the future digital economy. Sign up at https://chitchatchannel.com. Add me up on LinkedIn at: https://www.linkedin.com/in/hanna-brown-096a22b6',''),(3422,1,692,'8','plera',''),(3423,1,692,'9','pleraGZ',''),(3424,1,692,'4','(830) 373-7464',''),(3425,1,692,'3','baburovp@bk.ru',''),(3426,1,692,'6','Cryptocurrency rates are breaking records, which means you have the opportunity to make money on cryptocurrencies. Join our system and start making money with us. Go to system: https://tinyurl.com/yzv7lzwl',''),(3427,1,693,'8','Kathy',''),(3428,1,693,'9','Martin',''),(3429,1,693,'4','(555) 555-5555',''),(3430,1,693,'3','quality1@sent.com',''),(3431,1,693,'6','Hi,\r\n\r\nI thought you may be interested in our services. \r\n\r\nWould you like thousands of interested people coming to your website every day? \r\n\r\nPeople will come from related major online publications in your niche.\r\nThese are national visitors who are interested in seeing your site. \r\n\r\nStarter campaigns of 5,000 visitors is 54.99. Larger campaigns are available.\r\n\r\nFor more info please visit us at https://traffic-stampede.com \r\n\r\nThank you for your time and hope to see you there.\r\n\r\nKind regards,\r\nKathy M.\r\nTS',''),(3432,1,694,'8','Eric',''),(3433,1,694,'9','Jones',''),(3434,1,694,'4','(555) 555-1212',''),(3435,1,694,'3','eric.jones.z.mail@gmail.com',''),(3436,1,694,'6','Cool website!\r\n\r\nMy name’s Eric, and I just found your site - mannplumbingandheating.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across mannplumbingandheating.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3437,1,695,'8','Ashley',''),(3438,1,695,'9','McNeel',''),(3439,1,695,'4','(805) 372-1752',''),(3440,1,695,'3','ashely@thevoicedirectory.link',''),(3441,1,695,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttp://thevoicedirectory.link/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\nAshley\r\nVoice Activation Follow-up Specialist\r\nThe Voice Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://thevoicedirectory.link/out.php?site=mannplumbingandheating.com',''),(3442,1,696,'8','Kathy',''),(3443,1,696,'9','Martin',''),(3444,1,696,'4','(555) 555-5555',''),(3445,1,696,'3','quality@swift-mail.com',''),(3446,1,696,'6','Hi,\r\n\r\nI thought you may be interested in our services. \r\n\r\nWould you like thousands of interested people coming to your website every day? \r\n\r\nPeople will come from related major online publications in your niche.\r\nThese are national visitors who are interested in seeing your site. \r\n\r\nStarter campaigns of 5,000 visitors is 54.99. Larger campaigns are available.\r\n\r\nFor more info please visit us at https://traffic-stampede.com \r\n\r\nThank you for your time and hope to see you there.\r\n\r\nKind regards,\r\nKathy M.\r\nTS',''),(3447,1,697,'8','Eric',''),(3448,1,697,'9','Jones',''),(3449,1,697,'4','(555) 555-1212',''),(3450,1,697,'3','eric.jones.z.mail@gmail.com',''),(3451,1,697,'6','Hello, my name’s Eric and I just ran across your website at mannplumbingandheating.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3452,1,698,'8','Craig',''),(3453,1,698,'9','WILSON',''),(3454,1,698,'4','(303) 800-6251',''),(3455,1,698,'3','sales1@astrologicalstudio.com',''),(3456,1,698,'6','Dear Sirs We have the license keys for the following Windows & MacOS software for sale. Software for Windows: Scrapebox with YellowPages Scraper Premium Plug-In $79 * Windows 10 – Home Edition $39 * Office 2010 $99 * eM client $39 * GSA Website Contact $59 * GSA E-mail Spider $29 * GSA E-mail Verifier $29 * GSA Search Engine Ranker $29 * GSA SEO Indexer $29 * Axandra Internet Business Promoter $199 * Management-Ware E-mail Finder $59 * IOLO System Mechanic Pro $29 Software for MacOS: FollowAdder $69 * MaxBulk Mailer Pro v8 $39 * Wondeshare Filmora 9 $29 * Parallels Desktop 16 $39 * iSkysoft iMedia Converter DeLuxe $39* Transmit 5 $29 * Techtool Pro 8 Full Version $39 All license keys are available for immediate delivery via e-mail upon your payment. We will be delighted to hear from you. Have a great day. Best regards Brian WRIGHT Eng., ASTROLOGICAL STUDIO, sales@astrologicalstudio.com, https://astrologicalstudio.com',''),(3457,1,699,'8','Marcos',''),(3458,1,699,'9','Vance',''),(3459,1,699,'4','(402) 560-5561',''),(3460,1,699,'3','mannplumbingandheating.com@mannplumbingandheating.com',''),(3461,1,699,'6','URGENT\r\nRE: mannplumbingandheating.com\r\nMar 17, 2021\r\n\r\n\r\n\r\nVisit:\r\n\r\nhttp://64181.xml.admanage.com/xml/click/?m=64181&f=444355&r=1441385997&p=2&h=webdomainsrvcs.com%2F73675879\r\n\r\n\r\n\r\n\r\n\r\n\r\n3457246031720210012473753688578798mannplumbingandheating.com',''),(3462,1,700,'8','Heather',''),(3463,1,700,'9','Watts',''),(3464,1,700,'4','(717) 678-6463',''),(3465,1,700,'3','hmwatts@alz.org',''),(3466,1,700,'6','Hello, I am the Walk Manager for Alzheimer\'s Association and I wanted to reach out to see if you had any interest in a sponsorship for the 2021 Walk to End Alzheimer\'s. I cover Adams/Franklin, York and Harrisburg so if you would like to discuss our opportunities, please contact me at hmwatts@alz.org or 717-678-6463.',''),(3467,1,701,'8','Gary',''),(3468,1,701,'9','Cohen',''),(3469,1,701,'4','(561) 544-0719',''),(3470,1,701,'3','gcohen@consumerproductsintl.com',''),(3471,1,701,'6','The U.S. consumer market is the holy grail for retail manufacturers.\r\n\r\nBy way of introduction, I am Gary Cohen, and I represent Consumer Products International (https://consumerproductsintl.com).\r\n      \r\nAt Consumer Products International, we understand the challenges domestic and international consumer brands confront when deciding to bring their products to American consumers. CPI works with international and domestic consumer goods manufacturers who are seeking to expand their distribution reach within the United States or enter the world’s largest consumer market for the first time.\r\n\r\nDuring my research, your brand recently caught my attention, which is why I would like to discuss the possibility of expanding your national distribution reach in the U.S.\r\n\r\nCPI provides expertise in all areas of distribution, and our services include the following:\r\n\r\n	Turnkey/One-stop solution\r\n	FDA\r\n	Active accounts with major U.S. distributors and retailers\r\n	An executive team that has held executive positions with Walmart and Amazon, the two largest online and brick-and-mortar retailers in the U.S.\r\n	Proven sales force with public relations, branding, and marketing all under one roof\r\n	Focus on new and existing product lines\r\n	Warehousing and logistics\r\n\r\nCPI’s executive team has decades of experience in representing many different consumer goods categories. We have worked with buyers from national and regional retail chains, which gives your brand a fast track to market.\r\n\r\nPlease contact me directly so that we can discuss your brand further.\r\n\r\nKind Regards,\r\n\r\nGary Cohen\r\nVP of Business Development\r\nConsumer Products International\r\n101 Plaza Real S, Ste #224\r\nBoca Raton, FL 33432\r\nOffice: 561-544-0719\r\ngcohen@consumerproductsintl.com',''),(3472,1,702,'8','Rocko',''),(3473,1,702,'9','Purvis',''),(3474,1,702,'4','(717) 658-4058',''),(3475,1,702,'3','rpurvis1975@hotmail.com',''),(3476,1,702,'6','You billed me an extra $17 for a job one of you contractors did here at 380 Valley Drive Fayetteville, PA on 3/9/21. The technician was here for no more than 35 minutes and I paid my $88 service call for the first hour. When I called you on 3/19/21 inquiring about this extra $17 you billed me, I was told by the receptionist that the technician reported an extra quarter hour beyond the first hour. As I said, his work at my residence was no more than 35 minutes. My wife called in as well on 3/19 and was told a different reason for the extra $17 which essentially the receptionist now claimed was for the time the technician left his last job. Since when does Mann bill a customer for the drive time of its technicians??? I have dealt with you guys for the last 5 years and up until now, held favorable views of your service. I was NEVER told I would have to pay for the time it took the technician to get to my house, since when did this start?? You should have explained that at the time I booked the service call, but your staff DID NOT explain this. Not to mention that my wife was told one reason for the $17 bill and I was told a completely different one. I expect Mann to cancel this invoice as you did not explain this to me and that apparently your billing changed. I would also like an explanation for the two differing reasons your staff gave me and my wife to account for this ridiculous extra money you are requesting from us. This is no way to treat a customer who has used your services for the last five years. I am very disappointed. My number is 717-658-4058, I expect a call from the manager there or someone who can account for this debacle.',''),(3477,1,703,'8','Tina and Rocko',''),(3478,1,703,'9','Purvis',''),(3479,1,703,'4','(717) 965-0577',''),(3480,1,703,'3','mickierosemom@yahoo.com',''),(3481,1,703,'6','Tina and Rocco Purvis will not be paying the $17 invoice that we received for the plumber fixing our sink at 380 Valley Drive. It was not explained to us that we would be charged for travel time between jobs. It was explained to us that we will be charged for the time that the plumber is at our house until he finishes the job. Thank you',''),(3482,1,704,'8','Benjamin Ehinger',''),(3483,1,704,'9','Benjamin Ehinger',''),(3484,1,704,'4','(744) 534-2176',''),(3485,1,704,'3','writingbyb@gmail.com',''),(3486,1,704,'6','Hi! \r\n \r\nDo you struggle to find time to write articles? \r\n \r\nHire the best team of writing online today! \r\nWe do all the research and provide well-written SEO content perfect for higher ranking and better visitor engagement. \r\n \r\nIf you need fresh articles for your blog or content marketing strategies, check out our current content specials here: \r\n \r\nhttps://writingbybenjamin.com/best-seo-articles/ \r\n \r\nYou can also contact me directly at WBB@writingbybenjamin.com',''),(3487,1,705,'8','Joe',''),(3488,1,705,'9','Miller',''),(3489,1,705,'4','(154) 238-4593',''),(3490,1,705,'3','info@domainregistration.com',''),(3491,1,705,'6','TERMINATION OF DOMAIN mannplumbingandheating.com\r\nInvoice#: 491343\r\nDate: 20 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN mannplumbingandheating.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN mannplumbingandheating.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain mannplumbingandheating.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain mannplumbingandheating.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregistrar.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN mannplumbingandheating.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregistrar.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN mannplumbingandheating.com\r\n\r\nThe submission notification mannplumbingandheating.com will EXPIRE WITHIN 24 HOURS after reception of this email.',''),(3492,1,706,'8','Annabelle',''),(3493,1,706,'9','Annabelle',''),(3494,1,706,'4','(514) 821-4941',''),(3495,1,706,'3','annabelle@mannplumbingandheating.com',''),(3496,1,706,'6','EASE YOUR PAIN IN 10 MINUTES EFFORTLESSLY\r\n\r\nBe Free from Neck Pain\r\nTry NeckFlexer & Relieve Neck Pain Effortlessly In 10 Min!\r\nSave 50% OFF + FREE Worldwide Shipping\r\n\r\nShop Now: neckflexer.online\r\n\r\nAnnabelle',''),(3497,1,707,'8','David',''),(3498,1,707,'9','Wenerd',''),(3499,1,707,'4','(717) 360-5310',''),(3500,1,707,'3','dlwenerd@comcast.net',''),(3501,1,707,'6','Hi Folks, I\'m a regular customer of yours. You recently installed a new toilet at my house. Do you handle bathtub/shower  replacements?',''),(3502,1,708,'8','plera',''),(3503,1,708,'9','pleraGZ',''),(3504,1,708,'4','(825) 236-7371',''),(3505,1,708,'3','baburovp@bk.ru',''),(3506,1,708,'6','Hi, this is Jenny. I am sending you my intimate photos as I promised. https://bit.ly/3tCmolc',''),(3507,1,709,'8','Mike Archibald',''),(3508,1,709,'9','Mike Archibald',''),(3509,1,709,'4','(552) 418-6771',''),(3510,1,709,'3','see-email-in-message@monkeydigital.co',''),(3511,1,709,'6','Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your mannplumbingandheating.com website? \r\nHaving a high DA score, always helps \r\n \r\nGet your mannplumbingandheating.com to have a DA between 50 to 60 points in Moz with us today and rip the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nthank you \r\nMike Archibald\r\n \r\nsupport@monkeydigital.co \r\nMonkey Digital',''),(3512,1,710,'8','plera',''),(3513,1,710,'9','pleraGZ',''),(3514,1,710,'4','(323) 677-0811',''),(3515,1,710,'3','baburovp@bk.ru',''),(3516,1,710,'6','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/yem2qn3q',''),(3517,1,711,'8','Justin',''),(3518,1,711,'9','Green',''),(3519,1,711,'4','(202) 991-6766',''),(3520,1,711,'3','justin@bizsolutions.xyz',''),(3521,1,711,'6','Hello again,\r\nI hope you are having a good day!\r\n\r\nWe both know how hard it is for small businesses to get the financing they need \r\nto build and grow their businesses.\r\n\r\nWhat would you say if I told you we could offer you an approval in less than 30 seconds \r\nand fund your business the very next day? All without submitting a single document. \r\n\r\nWe offer an amazing 95% approval rate and would like to offer you some funding as well. \r\n\r\nOur loans do NOT require excellent credit or collateral like most lenders.\r\n \r\nThe process is simple. Just visit www.bizsolutions.xyz and see how much you qualify for right now. \r\n\r\nApplying does not affect your credit.\r\n\r\nThanks again and I look forward to funding you soon.\r\n\r\n\r\nWarm Regards,\r\n\r\nJustin Green\r\nBiz Solutions\r\nwww.bizsolutions.xyz',''),(3522,1,712,'8','Chad',''),(3523,1,712,'9','Vaughn',''),(3524,1,712,'4','(717) 816-0583',''),(3525,1,712,'3','cvaughn3946@gmail.com',''),(3526,1,712,'6','Our master shower is tiled and I noticed several weeks ago there was water dripping when I was in our crawl space directly underneath.  I\'ve tried repairing some of the grout but the leak is still happening. I am wondering if it has something more to do with the drain.  Is this something you would able to take a look at?\r\n\r\nThanks,\r\n\r\nChad Vaughn',''),(3527,1,713,'8','Will Anderson',''),(3528,1,713,'9','Will Anderson',''),(3529,1,713,'4','(010) 688-8467',''),(3530,1,713,'3','will@citysbestaward.com',''),(3531,1,713,'6','Hi, I tried calling yesterday but got your voicemail. I wanted to let you know that you won the 2021 City\'s Best Award! We work with one business in each major city throughout the country. Email me at will@citysbestaward.com after you claim the award so that I can get all of the award collateral over to you. Here is the link: http://www.citysbestaward.com/2021',''),(3532,1,714,'8','Craig',''),(3533,1,714,'9','WILSON',''),(3534,1,714,'4','(303) 800-6251',''),(3535,1,714,'3','sales1@astrologicalstudio.com',''),(3536,1,714,'6','Are you and your mate a good match? Find out with a Romantic Compatibility Report, your best resource for a romantic comparison. Recently called \"the best chart comparison report on the market\" by American Astrology magazine. Compares the charts of two individuals using the synastry, or inter-aspects. Includes a colorful bi-wheel chart with complete interpretations. What is it about them that\'s so appealing? Why do they make you laugh as no one else can? Do you have long-term potential? How can you help each other grow? Whether it\'s a new flirtation or a lifelong partnership, your stars light the way to a deeper understanding of yourself, your lover, and your relationship. Find out why astrology magazines calls it \"the best chart comparison report on the market.\" Discover your lover... Please visit our site https://astrologicalstudio.com for more information. We will be delighted to hear from you. Have a great day. Best regards Brian WRIGHT Eng., ASTROLOGICAL STUDIO, sales@astrologicalstudio.com, https://astrologicalstudio.com',''),(3537,1,715,'8','Patty',''),(3538,1,715,'9','Cool',''),(3539,1,715,'4','(717) 414-1861',''),(3540,1,715,'3','Pac_426@hotmail.com',''),(3541,1,715,'6','Do u put toilets in.  If i get one and if so how much',''),(3542,1,716,'8','Ashley',''),(3543,1,716,'9','McNeel',''),(3544,1,716,'4','(805) 372-1752',''),(3545,1,716,'3','ashely@thevoicedirectory.link',''),(3546,1,716,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttp://thevoicedirectory.link/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\nAshley\r\nVoice Activation Follow-up Specialist\r\nThe Voice Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://thevoicedirectory.link/out.php?site=mannplumbingandheating.com',''),(3547,1,717,'8','Gary',''),(3548,1,717,'9','Cohen',''),(3549,1,717,'4','(561) 544-0719',''),(3550,1,717,'3','gcohen@consumerproductsintl.com',''),(3551,1,717,'6','The U.S. consumer market is the holy grail for retail manufacturers.\r\n\r\nBy way of introduction, I am Gary Cohen, and I represent Consumer Products International (https://consumerproductsintl.com).\r\n      \r\nAt Consumer Products International, we understand the challenges domestic and international consumer brands confront when deciding to bring their products to American consumers. CPI works with international and domestic consumer goods manufacturers who are seeking to expand their distribution reach within the United States or enter the world’s largest consumer market for the first time.\r\n\r\nDuring my research, your brand recently caught my attention, which is why I would like to discuss the possibility of expanding your national distribution reach in the U.S.\r\n\r\nCPI provides expertise in all areas of distribution, and our services include the following:\r\n\r\n	Turnkey/One-stop solution\r\n	FDA\r\n	Active accounts with major U.S. distributors and retailers\r\n	An executive team that has held executive positions with Walmart and Amazon, the two largest online and brick-and-mortar retailers in the U.S.\r\n	Proven sales force with public relations, branding, and marketing all under one roof\r\n	Focus on new and existing product lines\r\n	Warehousing and logistics\r\n\r\nCPI’s executive team has decades of experience in representing many different consumer goods categories. We have worked with buyers from national and regional retail chains, which gives your brand a fast track to market.\r\n\r\nPlease contact me directly so that we can discuss your brand further.\r\n\r\nKind Regards,\r\n\r\nGary Cohen\r\nVP of Business Development\r\nConsumer Products International\r\n101 Plaza Real S, Ste #224\r\nBoca Raton, FL 33432\r\nOffice: 561-544-0719\r\ngcohen@consumerproductsintl.com',''),(3552,1,718,'8','plera',''),(3553,1,718,'9','pleraGZ',''),(3554,1,718,'4','(372) 237-1380',''),(3555,1,718,'3','baburovp@bk.ru',''),(3556,1,718,'6','Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/ykyb3539',''),(3557,1,719,'8','Eric',''),(3558,1,719,'9','Jones',''),(3559,1,719,'4','(555) 555-1212',''),(3560,1,719,'3','eric.jones.z.mail@gmail.com',''),(3561,1,719,'6','Hi, Eric here with a quick thought about your website mannplumbingandheating.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3562,1,720,'8','Eric',''),(3563,1,720,'9','Jones',''),(3564,1,720,'4','(555) 555-1212',''),(3565,1,720,'3','eric.jones.z.mail@gmail.com',''),(3566,1,720,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3567,1,721,'8','SDYE76VKYZHFI9YAJA2F1YDS http://google.com/345',''),(3568,1,721,'9','SDYE76VKYZHFI9YAJA2F1YDS http://google.com/345',''),(3569,1,721,'4','(507) 305-8035',''),(3570,1,721,'3','homertreadwell60399504@gmail.com',''),(3571,1,722,'8','SDYZZ1L1B7M6Z7Y36ZCUTYDS http://google.com/345',''),(3572,1,722,'9','SDYZZ1L1B7M6Z7Y36ZCUTYDS http://google.com/345',''),(3573,1,722,'4','(384) 223-3400',''),(3574,1,722,'3','homertreadwell60399504@gmail.com',''),(3575,1,723,'8','SDYZVJ66ZADL69MY7LQD8YDS http://google.com/345',''),(3576,1,723,'9','SDYZVJ66ZADL69MY7LQD8YDS http://google.com/345',''),(3577,1,723,'4','(111) 851-1633',''),(3578,1,723,'3','homertreadwell60399504@gmail.com',''),(3579,1,724,'8','Mike Mathews',''),(3580,1,724,'9','Mike Mathews\r\nNE',''),(3581,1,724,'4','(228) 427-7461',''),(3582,1,724,'3','no-replyWat@gmail.com',''),(3583,1,724,'6','Hi there \r\n \r\nI have just took an in depth look on your  mannplumbingandheating.com for  the current Local search visibility and seen that your website could use an upgrade. \r\n \r\nWe will increase your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nStart increasing your local visibility with us, today! \r\n \r\nregards \r\nMike Mathews\r\n \r\nSpeed SEO Digital Agency \r\nsupport@speed-seo.net',''),(3584,1,725,'8','Gary',''),(3585,1,725,'9','Cohen',''),(3586,1,725,'4','(561) 544-0719',''),(3587,1,725,'3','gcohen@consumerproductsintl.com',''),(3588,1,725,'6','The U.S. consumer market is the holy grail for retail manufacturers.\r\n\r\nBy way of introduction, I am Gary Cohen, and I represent Consumer Products International (https://consumerproductsintl.com).\r\n      \r\nAt Consumer Products International, we understand the challenges domestic and international consumer brands confront when deciding to bring their products to American consumers. CPI works with international and domestic consumer goods manufacturers who are seeking to expand their distribution reach within the United States or enter the world’s largest consumer market for the first time.\r\n\r\nDuring my research, your brand recently caught my attention, which is why I would like to discuss the possibility of expanding your national distribution reach in the U.S.\r\n\r\nCPI provides expertise in all areas of distribution, and our services include the following:\r\n\r\n	Turnkey/One-stop solution\r\n	FDA\r\n	Active accounts with major U.S. distributors and retailers\r\n	An executive team that has held executive positions with Walmart and Amazon, the two largest online and brick-and-mortar retailers in the U.S.\r\n	Proven sales force with public relations, branding, and marketing all under one roof\r\n	Focus on new and existing product lines\r\n	Warehousing and logistics\r\n\r\nCPI’s executive team has decades of experience in representing many different consumer goods categories. We have worked with buyers from national and regional retail chains, which gives your brand a fast track to market.\r\n\r\nPlease contact me directly so that we can discuss your brand further.\r\n\r\nKind Regards,\r\n\r\nGary Cohen\r\nVP of Business Development\r\nConsumer Products International\r\n101 Plaza Real S, Ste #224\r\nBoca Raton, FL 33432\r\nOffice: 561-544-0719\r\ngcohen@consumerproductsintl.com',''),(3589,1,726,'8','Linda',''),(3590,1,726,'9','Miller',''),(3591,1,726,'4','(555) 555-1212',''),(3592,1,726,'3','noreply@noreply.com',''),(3593,1,726,'6','How To Master Internet Lead Conversion?\r\n\r\nI spent the last 10+ years generating, calling and closing Internet leads. I will be sharing my decade long conversion code for you to copy during this new, free webinar!\r\nDuring the webinar, I will show you:\r\n\r\nEvery business needs to capture more leads, create more appointments, and close more deals.\r\n\r\nIf you commit to mastering the content in this session, you will earn more money immediately– not in six months or a year, but literally as soon as you put your new knowledge to work. I have used this method on 1,000\'s of Internet leads of all price points. \r\n\r\nIf you want Internet leads, I have the key to CONVERTING them. Hope you can make it... https://TalkWithWebTraffic.com/Webinar\r\n\r\nIf getting more Hot Phone Leads is a part of your business plan (and why wouldn\'t it be?), I\'ve got great news for you.\r\n\r\n1. 12 ways to generate seller leads\r\n2. How to get seller leads on the phone\r\n3. What to say on the phone so you get instant sales\r\n4. The Key to SMS Marketing\r\n5  Never Cold Call Again\r\n6. Better leads = Faster conversions\r\n7. The four keys to inside sales success\r\n8. The 10 steps to a perfect sales call with an Internet lead\r\n\r\nMore than 7,000 people have already registered. The last time I did a webinar with Top Producers, hundreds of people got locked out and could only watch the replay. Get your spot now and tune in early!\r\n\r\n==> Save my spot https://TalkWithWebTraffic.com/Webinar\r\n\r\nWe\'ve become obsessed with making sure our clients are converting the leads we generate for them. \r\n\r\nHow much are you getting back in commissions compared to how much are you spending on advertising? But what is even better than a great ROI is a quick ROI. During this live webinar I will show you how we can help you generate higher quality leads that are easier to convert, fast.\r\n\r\n==>  Register at https://TalkWithWebTraffic.com/Webinar\r\n\r\nYour #1 Fan, \r\nLinda Miller\r\nBe there or be square.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3594,1,727,'8','Enriquepam',''),(3595,1,727,'9','EnriquepamEU',''),(3596,1,727,'4','(316) 765-2817',''),(3597,1,727,'3','no-replyRondus@gmail.com',''),(3598,1,727,'6','Hi!  mannplumbingandheating.com \r\n \r\nDo you know the easiest way to mention your products or services? Sending messages using contact forms can permit you to simply enter the markets of any country (full geographical coverage for all countries of the world).  The advantage of such a mailing  is that the emails that will be sent through it will end up in the mailbox that\'s supposed for such messages. Causing messages using Feedback forms is not blocked by mail systems, which means it is bound to reach the client. You\'ll be able to send your provide to potential customers who were previously unobtainable because of spam filters. \r\nWe offer you to test our service for free. We\'ll send up to fifty thousand message for you. \r\nThe cost of sending one million messages is us $ 49. \r\n \r\nThis offer is created automatically. Please use the contact details below to contact us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693',''),(3599,1,728,'8','Thomas',''),(3600,1,728,'9','Ravel',''),(3601,1,728,'4','(609) 575-8872',''),(3602,1,728,'3','kauwinds@comcast.net',''),(3603,1,728,'6','Does your company install mini split ductless air conditioners (2 zones).\r\nIf so, I would like an estimate for a 2 zone mini split ductless heat pump /air conditioner\r\nI live at 117 union road \r\nFayetteville PA',''),(3604,1,729,'8','Brian',''),(3605,1,729,'9','WRIGHT',''),(3606,1,729,'4','(303) 800-6251',''),(3607,1,729,'3','sales1@astrologicalstudio.com',''),(3608,1,729,'6','Dear Madam, Dear Sir Are you interested to know when the best time to undergo your surgery or medical treatment is? If so, we can prepare our Forecast of Events report for you, your loved ones, or friends. Our exclusive Forecast of Events reports contains this essential information, which can help you in this matter. In case of your interest, you can order these Forecast of Events reports at https://astrologicalstudio.com/home/23-1-year-forecast-of-events.html. We will be delighted to hear from you. Have a great day. Best regards Brian WRIGHT Eng., ASTROLOGICAL STUDIO, Denver, CO, sales@astrologicalstudio.com, https://astrologicalstudio.com',''),(3609,1,730,'8','Mike Roger',''),(3610,1,730,'9','Mike Roger',''),(3611,1,730,'4','(505) 325-8015',''),(3612,1,730,'3','no-reply@google.com',''),(3613,1,730,'6','Hi there \r\n \r\nI have just analyzed  mannplumbingandheating.com for its SEO metrics and saw that your website could use a push. \r\n \r\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our plans here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart improving your sales and leads with us, today! \r\n \r\nregards \r\nMike Roger\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(3614,1,731,'8','Linda',''),(3615,1,731,'9','Miller',''),(3616,1,731,'4','(555) 555-1212',''),(3617,1,731,'3','lindamillerleads@gmail.com',''),(3618,1,731,'6','How To Master Internet Lead Conversion?\r\n\r\nI spent the last 10+ years generating, calling and closing Internet leads. I will be sharing my decade long conversion code for you to copy during this new, free webinar!\r\nDuring the webinar, I will show you:\r\n\r\nEvery business needs to capture more leads, create more appointments, and close more deals.\r\n\r\nIf you commit to mastering the content in this session, you will earn more money immediately– not in six months or a year, but literally as soon as you put your new knowledge to work. I have used this method on 1,000\'s of Internet leads of all price points. \r\n\r\nIf you want Internet leads, I have the key to CONVERTING them. Hope you can make it... https://TalkWithWebTraffic.com/Webinar\r\n\r\nIf getting more Hot Phone Leads is a part of your business plan (and why wouldn\'t it be?), I\'ve got great news for you.\r\n\r\n1. 12 ways to generate seller leads\r\n2. How to get seller leads on the phone\r\n3. What to say on the phone so you get instant sales\r\n4. The Key to SMS Marketing\r\n5  Never Cold Call Again\r\n6. Better leads = Faster conversions\r\n7. The four keys to inside sales success\r\n8. The 10 steps to a perfect sales call with an Internet lead\r\n\r\nMore than 7,000 people have already registered. The last time I did a webinar with Top Producers, hundreds of people got locked out and could only watch the replay. Get your spot now and tune in early!\r\n\r\n==> Save my spot https://TalkWithWebTraffic.com/Webinar\r\n\r\nWe\'ve become obsessed with making sure our clients are converting the leads we generate for them. \r\n\r\nHow much are you getting back in commissions compared to how much are you spending on advertising? But what is even better than a great ROI is a quick ROI. During this live webinar I will show you how we can help you generate higher quality leads that are easier to convert, fast.\r\n\r\n==>  Register at https://TalkWithWebTraffic.com/Webinar\r\n\r\nYour #1 Fan, \r\nLinda Miller\r\nBe there or be square.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3619,1,732,'8','Gary',''),(3620,1,732,'9','Cohen',''),(3621,1,732,'4','(561) 544-0719',''),(3622,1,732,'3','gcohen@consumerproductsintl.com',''),(3623,1,732,'6','The U.S. consumer market is the holy grail for retail manufacturers.\r\n\r\nBy way of introduction, I am Gary Cohen, and I represent Consumer Products International (https://consumerproductsintl.com).\r\n      \r\nAt Consumer Products International, we understand the challenges domestic and international consumer brands confront when deciding to bring their products to American consumers. CPI works with international and domestic consumer goods manufacturers who are seeking to expand their distribution reach within the United States or enter the world’s largest consumer market for the first time.\r\n\r\nDuring my research, your brand recently caught my attention, which is why I would like to discuss the possibility of expanding your national distribution reach in the U.S.\r\n\r\nCPI provides expertise in all areas of distribution, and our services include the following:\r\n\r\n	Turnkey/One-stop solution\r\n	FDA\r\n	Active accounts with major U.S. distributors and retailers\r\n	An executive team that has held executive positions with Walmart and Amazon, the two largest online and brick-and-mortar retailers in the U.S.\r\n	Proven sales force with public relations, branding, and marketing all under one roof\r\n	Focus on new and existing product lines\r\n	Warehousing and logistics\r\n\r\nCPI’s executive team has decades of experience in representing many different consumer goods categories. We have worked with buyers from national and regional retail chains, which gives your brand a fast track to market.\r\n\r\nPlease contact me directly so that we can discuss your brand further.\r\n\r\nKind Regards,\r\n\r\nGary Cohen\r\nVP of Business Development\r\nConsumer Products International\r\n101 Plaza Real S, Ste #224\r\nBoca Raton, FL 33432\r\nOffice: 561-544-0719\r\ngcohen@consumerproductsintl.com',''),(3624,1,733,'8','Brian',''),(3625,1,733,'9','WRIGHT',''),(3626,1,733,'4','(303) 800-6251',''),(3627,1,733,'3','sales1@wexx99.com',''),(3628,1,733,'6','Dear Sirs We have the license keys for the following Windows & MacOS software for sale. Software for Windows:  Windows 10 – Home Edition $39/Save $50 * Scrapebox for Windows with Premium Plug-in YellowPages Scraper $79/Save $55 * Scrapebox for Windows $57/Save $40 * Axandra Internet Business Promoter $199/Save $100 * GSA E-mail Spider $39/Save $30 * GSA E-mail Verifier $39/Save $30 * GSA Search Engine Ranker $59/Save $40 * GSA SEO Indexer $29/Save $30 * Management-Ware E-mail Finder $59/Save $40 * IOLO System Mechanic Pro $39/ Save $30 **** Software for MacOS: MaxBulk Mailer Pro v8 $39/Save $20 * Wondeshare Filmora 9 $29/Save $30 * Parallels Desktop 16 $39/Save $30 * iSkysoft iMedia Converter DeLuxe $39/Save $30* Transmit 5 $29/ Save $20 * Techtool Pro 8 Full Version $39/Save $50 All license keys are available for immediate delivery via e-mail upon your payment. We will be delighted to hear from you. Have a great day. Best regards Brian WRIGHT Eng., WEXX 99 Business Solutions, sales@wexx99.com, https://wexx99.com',''),(3629,1,734,'8','ElenkaCib',''),(3630,1,734,'9','ElenkaCib',''),(3631,1,734,'4','(856) 814-7161',''),(3632,1,734,'3','elenka@menot.xyz',''),(3633,1,734,'6','Go ahead, have sex on the first date\r\nhttp://meautabphysen.tk/chk/59',''),(3634,1,735,'8','Joshua',''),(3635,1,735,'9','Moore',''),(3636,1,735,'4','(202) 991-6766',''),(3637,1,735,'3','joshua@fastbizfunding.xyz',''),(3638,1,735,'6','Hello,\r\n\r\nI hope you are doing well, and business is Great!\r\n\r\nHowever, if you need working capital to further grow and expand your business, we\r\nmay be a perfect fit for you and here’s why. \r\n\r\nOur loans are NOT based on your personal credit, and NO collateral is required.\r\n\r\nWe are a Direct Lender who can approve your loan today, and fund as early as Tomorrow.\r\n\r\nWe offer loans from 5k to 500k with flexible payments and great terms.\r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.fastbizfunding.xyz  Applying does NOT affect your credit!\r\n\r\nAlso, please check out this video to see how our program works, and all the funding options we have available for you.  www.fastbizfunding.xyz/video\r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nJoshua Moore\r\nFast Biz Funding\r\nwww.fastbizfunding.xyz',''),(3639,1,736,'8','Gabriel Angelo',''),(3640,1,736,'9','Gabriel Angelo',''),(3641,1,736,'4','(280) 766-4863',''),(3642,1,736,'3','ga76.52719@gmail.com',''),(3643,1,736,'6','Hello, \r\n \r\nI\'m Gabriel Angelo, My Company can bridge fund for your new or ongoing Business. Do let me know when you receive this message for further procedure. \r\n \r\nYou can reach me using this email address: mailgabby773@gmail.com \r\n \r\nRegards, \r\nGabriel Angelo',''),(3644,1,737,'8','Ashley',''),(3645,1,737,'9','McNeel',''),(3646,1,737,'4','(805) 372-1752',''),(3647,1,737,'3','ashely@thevoicedirectory.link',''),(3648,1,737,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttp://thevoicedirectory.link/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\nAshley\r\nVoice Activation Follow-up Specialist\r\nThe Voice Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://thevoicedirectory.link/out.php?site=mannplumbingandheating.com',''),(3649,1,738,'8','Megan',''),(3650,1,738,'9','O\'Connell',''),(3651,1,738,'4','(213) 558-5168',''),(3652,1,738,'3','megan@gomarketing.link',''),(3653,1,738,'6','Greetings, after seeing your website I wanted to let you know that we work with businesses like yours to publish a custom marketing & promotional video, featuring your business online.\r\n \r\nThe short video below shows you what this custom made video can do for your business:\r\n \r\nVisit the website below to learn more:\r\nhttps://www.gomarketing.link/success/?=mannplumbingandheating.com\r\n \r\nAlso, we will send you a free marketing report for your company – simply visit https://www.gomarketing.link/success/?=mannplumbingandheating.com\r\n\r\nThanks!\r\nMegan\r\nGo Marketing Co.\r\n\r\n\r\n\r\n\r\n\r\n\r\n- This commercial message sent from PJLK Marketing LC\r\n410 East Santa Clara Street Suite 824 \r\nSan Jose, CA 95113\r\n\r\nTo unsubscribe click here:\r\nhttps://gomarketing.link/out.php/?site=mannplumbingandheating.com',''),(3654,1,739,'8','plera',''),(3655,1,739,'9','pleraGZ',''),(3656,1,739,'4','(524) 721-2071',''),(3657,1,739,'3','baburovp@bk.ru',''),(3658,1,739,'6','Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/ygd96phm',''),(3659,1,740,'8','Gabrielkew',''),(3660,1,740,'9','GabrielkewBW',''),(3661,1,740,'4','(622) 216-8057',''),(3662,1,740,'3','atlas.keramika@bk.ru',''),(3663,1,740,'6','Great site. Chic design. I found a lot of interesting things here. Visit this beautiful site - and rate it \r\nhttp://voyeured.xyz\r\nhttp://alisaxxx.xyz\r\nhttp://sexpert.xyz\r\nhttp://xxxcum.xyz\r\nhttp://penet.xyz\r\nhttp://stripp.xyz\r\nhttp://fistxxx.xyz\r\nhttp://analingus.xyz\r\nhttp://fucksa.xyz\r\nhttp://bizard.xyz\r\n  AVN NEWS VIDEO FOR ADULTS  \r\n \r\n \r\n \r\n[url=https://lucievagenknechtova.cz/uncategorized/185/#comment-107]adult video[/url] 98e103a  \r\n^^XxX=+',''),(3664,1,741,'8','Привет https://apple.com 3720541',''),(3665,1,741,'9','Привет https://apple.com 3720541',''),(3666,1,741,'4','(353) 116-5688',''),(3667,1,741,'3','kapvapvyap@yandex.ru',''),(3668,1,742,'8','Fred Serg',''),(3669,1,742,'9','Fred Serg',''),(3670,1,742,'4','(885) 352-0206',''),(3671,1,742,'3','fred.sergeant.fl@gmail.com',''),(3672,1,742,'6','I was told our hvac systems needs repaired along with new ducts. But after further inspection seems like we might actually need a new AC unit for this house we recently purchased. Are you guys available this week to stop by, diagnose issues and provide an estimate repair vs replacement?',''),(3673,1,743,'8','Gabrielkew',''),(3674,1,743,'9','GabrielkewBW',''),(3675,1,743,'4','(503) 522-8354',''),(3676,1,743,'3','atlas.keramika@bk.ru',''),(3677,1,743,'6','Great site. Chic design. I found a lot of interesting things here. Visit this beautiful site - and rate it \r\nhttp://transvestite.xyz\r\nhttp://bottomxxx.xyz\r\nhttp://bisexs.xyz\r\nhttp://bizar.xyz\r\nhttp://latins.xyz\r\nhttp://maturen.xyz\r\nhttp://hucks.xyz\r\nhttp://hentai-x.xyz\r\nhttp://assed.xyz\r\nhttp://bustys.xyz\r\n  Internet video player  \r\n \r\n \r\nhttps://torgovaya.xyz/dhgate.com The best store \r\n[url=http://woonyoung.vn/san-pham/ec-fan-energy-saving-fan/#comment-31811]AVN NEWS VIDEO FOR ADULTS[/url] b183_73  \r\n^^XxX=+',''),(3678,1,744,'8','Привет https://apple.com 738260',''),(3679,1,744,'9','Привет https://apple.com 738260',''),(3680,1,744,'4','(265) 381-0025',''),(3681,1,744,'3','yashiknymerone@mail.ru',''),(3682,1,745,'8','Hi Nice site https://google.com',''),(3683,1,745,'9','Hi Nice site https://google.com',''),(3684,1,745,'4','(277) 013-5633',''),(3685,1,745,'3','ascehine@mail.ru',''),(3686,1,745,'6','Hi Nice site https://google.com',''),(3687,1,746,'8','Eric',''),(3688,1,746,'9','Jones',''),(3689,1,746,'4','(555) 555-1212',''),(3690,1,746,'3','eric.jones.z.mail@gmail.com',''),(3691,1,746,'6','My name’s Eric and I just came across your website - mannplumbingandheating.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like mannplumbingandheating.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3692,1,747,'8','Dorothy',''),(3693,1,747,'9','Amy',''),(3694,1,747,'4','(717) 414-3504',''),(3695,1,747,'3','totozpal@comcast.net',''),(3696,1,747,'6','Can you install step in showers? If so, would I need to have the shower already?\r\nIf you can I\'d like to get an estimate .',''),(3697,1,748,'8','Williamjaree',''),(3698,1,748,'9','WilliamjareeUM',''),(3699,1,748,'4','(660) 146-2272',''),(3700,1,748,'3','sofiyasamylkin1987911be1@bk.ru',''),(3701,1,748,'6','mannplumbingandheating.com oiotugorvygivbjfguefiugehiwjfeoswifehgidjwifhge',''),(3702,1,749,'8','CathyBag',''),(3703,1,749,'9','EmmaBagMT',''),(3704,1,749,'4','(577) 513-1003',''),(3705,1,749,'3','nicoletta1s@gmail.com',''),(3706,1,749,'6','Meet at home - http://2track.info/LkJN',''),(3707,1,750,'8','Eric',''),(3708,1,750,'9','Jones',''),(3709,1,750,'4','(555) 555-1212',''),(3710,1,750,'3','eric.jones.z.mail@gmail.com',''),(3711,1,750,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3712,1,751,'8','Lara',''),(3713,1,751,'9','Gorton',''),(3714,1,751,'4','(213) 558-6156',''),(3715,1,751,'3','lara@bizvideo.link',''),(3716,1,751,'6','Hey, great site!\r\n\r\nHave you thought about adding a video in response to COVID-19?\r\n\r\nWe can make one for you: \r\nhttps://www.bizvideo.link/success/?=mannplumbingandheating.com\r\n\r\nCustomers are worried right now. A short video like this can make a big impact for your business in the long term. People will remember it!\r\n\r\nBe well,\r\nLara\r\n\r\nP.S. Due to coronavirus, we have also lowered our prices by up to 55%. \r\n\r\n\r\n\r\n\r\n\r\n\r\n- This commercial message sent from PJLK Marketing LC\r\n410 E Santa Clara Street STE 817\r\nSan Jose, CA 95113\r\n\r\nTo unsubscribe click here:\r\nhttps://bizvideo.link/out.php/?site=mannplumbingandheating.com',''),(3717,1,752,'8','Sarah',''),(3718,1,752,'9','Williams',''),(3719,1,752,'4','(410) 123-1234',''),(3720,1,752,'3','sarahwilliamsmkt@gmail.com',''),(3721,1,752,'6','Hey\r\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I have forwarded it to a few of my contacts who I think could benefit from your services.\r\n\r\nWhen I was looking at your website, though, I noticed a slight issue re: your SEO that I thought you might not be aware of. It is a relatively simple fix. Would you like me to write it up so that you can share it with your web team? If this is a priority, I can also get on a call.\r\n\r\nRegards,\r\nSarah Williams',''),(3722,1,753,'8','Mike Wayne',''),(3723,1,753,'9','Mike Wayne',''),(3724,1,753,'4','(102) 588-1564',''),(3725,1,753,'3','see-email-in-message@monkeydigital.co',''),(3726,1,753,'6','Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your mannplumbingandheating.com website? \r\nHaving a high DA score, always helps \r\n \r\nGet your mannplumbingandheating.com to have a DA between 50 to 60 points in Moz with us today and rip the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nthank you \r\nMike Wayne\r\n \r\nsupport@monkeydigital.co \r\nMonkey Digital',''),(3727,1,754,'8','Jamie',''),(3728,1,754,'9','Roy',''),(3729,1,754,'4','(033) 893-6236',''),(3730,1,754,'3','jamieroy67@gmail.com',''),(3731,1,754,'6','Hi,\r\n\r\nI hope you are doing well.\r\n\r\nI want to contribute a guest post article to your website that may interest your readers.\r\n\r\nIt would be of high quality and free of cost. You can choose the topic of the article from the topic ideas that I\'ll send you in my next email once you approve this offer.\r\n\r\nPlease note that I will need you to give me a backlink within the guest post article.\r\n\r\nPlease let me know if I shall send over some amazing topic ideas?\r\n\r\nRegards,\r\n\r\nJamie Roy',''),(3732,1,755,'8','Megan Cooper',''),(3733,1,755,'9','Megan Cooper',''),(3734,1,755,'4','(941) 351-1663',''),(3735,1,755,'3','megan@reallifehome.net',''),(3736,1,755,'6','Hi,\r\n\r\nWould you like a free article for your website that offers advice on buying a fixer-upper?\r\n\r\nIt will cover important points such as what the buying process entails, which repair or design projects you should tackle first, and how to decide whether to stay or sell once you\'ve fixed up the home. I\'ll also highlight your services in the piece.\r\n\r\nDoes this sound like it would be a useful addition to your site? If so, please respond and I\'ll get to work on the article.\r\n\r\nCheers!\r\nMegan\r\n\r\n---\r\nMegan Cooper\r\nFounder\r\nRealLifeHome.net',''),(3737,1,756,'8','Ronnie',''),(3738,1,756,'9','Williams',''),(3739,1,756,'4','(347) 331-0929',''),(3740,1,756,'3','rw.topestimatorinc@gmail.com',''),(3741,1,756,'6','Hi,\r\n\r\nJust Following up, Let me know if you have any projects that require takeoffs / Cost Estimation. We handle all types of residential and commercial projects (Painting, Electrical, Plumbing, Roofing, HVAC, Tile and Framing etc.)  We have more than 16 years of experience in Estimating services. We claim 98% accuracy and also give almost 35% Discount on the first estimate. Just send over the plans of your project and mention the scope of work so we will give you a free proposal on that and after your approval our estimators start working on your job. Thanks',''),(3742,1,757,'8','Benjamin Ehinger',''),(3743,1,757,'9','Benjamin Ehinger',''),(3744,1,757,'4','(444) 645-5753',''),(3745,1,757,'3','writingbyb@gmail.com',''),(3746,1,757,'6','Hi! \r\n \r\nDo you struggle to find time to write articles? \r\n \r\nHire the best team of writers online today! \r\n \r\nWe do all the research and provide well-written, unique SEO content perfect for higher search engine ranking and better visitor engagement. \r\n \r\nIf you need fresh articles for your blog, check out our current content rates here: \r\n \r\nhttps://writingbybenjamin.com/best-seo-articles/',''),(3747,1,758,'8','Brian',''),(3748,1,758,'9','WRIGHT',''),(3749,1,758,'4','(303) 800-6251',''),(3750,1,758,'3','wexx1@protonmail.com',''),(3751,1,758,'6','Dear Sirs We have the license keys for the following Windows & MacOS software for sale. Software for Windows:  Windows 10 – Home Edition $39/Save $50 * Scrapebox for Windows with Premium Plug-in YellowPages Scraper $79/Save $55 * Scrapebox for Windows $57/Save $40 * Axandra Internet Business Promoter $199/Save $100 * GSA E-mail Spider $39/Save $30 * GSA E-mail Verifier $39/Save $30 * GSA Search Engine Ranker $59/Save $40 * GSA SEO Indexer $29/Save $30 * Management-Ware E-mail Finder $59/Save $40 * IOLO System Mechanic Pro $39/ Save $30 **** Software for MacOS: MaxBulk Mailer Pro v8 $39/Save $20 * Wondeshare Filmora 9 $29/Save $30 * Parallels Desktop 16 $39/Save $30 * iSkysoft iMedia Converter DeLuxe $39/Save $30* Transmit 5 $29/ Save $20 * Techtool Pro 8 Full Version $39/Save $50 All license keys are available for immediate delivery via e-mail upon your payment. We will be delighted to hear from you. Have a great day. Best regards Brian WRIGHT Eng., wexx99store@gmail.com',''),(3752,1,759,'8','JaniceDwelf',''),(3753,1,759,'9','DianeDwelfMT',''),(3754,1,759,'4','(026) 453-3047',''),(3755,1,759,'3','rocade2s@gmail.com',''),(3756,1,759,'6','I love you - http://2track.info/vrhs',''),(3757,1,760,'8','TracyNaw',''),(3758,1,760,'9','TracyNawIM',''),(3759,1,760,'4','(728) 580-3868',''),(3760,1,760,'3','lethelpworld2@gmail.com',''),(3761,1,760,'6','Help me save the world - http://link-world.xyz/2Z7Dl',''),(3762,1,761,'8','Jeanie',''),(3763,1,761,'9','Donahue',''),(3764,1,761,'4','(570) 472-2585',''),(3765,1,761,'3','jeanie888@aol.com',''),(3766,1,761,'6','Hi there!  We are a veterinary clinic moving to a new location & was wondering if you can install oxygen lines?  If so, we would like an estimate?\r\nThank you,\r\nJeanie Donahue\r\n570-472-2585',''),(3767,1,762,'8','plera',''),(3768,1,762,'9','pleraGZ',''),(3769,1,762,'4','(367) 506-4225',''),(3770,1,762,'3','baburovp@bk.ru',''),(3771,1,762,'6','Cryptocurrency rates are breaking records, which means you have the opportunity to make money on cryptocurrencies. Join our system and start making money with us. Go to system: https://tinyurl.com/yzolekhq',''),(3772,1,763,'8','Ella',''),(3773,1,763,'9','Wampler',''),(3774,1,763,'4','(508) 417-5900',''),(3775,1,763,'3','ella.wampler@gmail.com',''),(3776,1,763,'6','Is Bitcoing going to one million dollars or zero? Check out the video below:\r\nhttps://www.youtube.com/watch?v=c6DmQxBlXms\r\n\r\n\r\nBitcoin Infiltrates Corporate America\r\nhttps://www.youtube.com/watch?v=Cg10yYZjK94\r\n\r\nThe Feds are Creating a Liquidity Tsunami - Robert Kiyosaki, Kim Kiyosaki and Richard Duncan\r\nhttps://www.youtube.com/watch?v=lJCm6MW6nok\r\n\r\nInflation is going to eat away your savings, buy some bitcoins to preserve your purchasing power (and potentially even make money from it)\r\nBuy bitcoin here and save 10% from your trading fees at the world\'s biggest crypto exchange:\r\nhttps://bit.ly/31uRnnb\r\n\r\nIf you are a US resident, you can buy bitcoin here:\r\nhttps://bit.ly/3r3oPvQ',''),(3777,1,764,'8','EllaDwelf',''),(3778,1,764,'9','AndreaDwelfMT',''),(3779,1,764,'4','(033) 725-8533',''),(3780,1,764,'3','3imarconettia@gmail.com',''),(3781,1,764,'6','I live you - http://2track.info/vrhs',''),(3782,1,765,'8','Will Anderson',''),(3783,1,765,'9','Will Anderson',''),(3784,1,765,'4','(644) 346-5861',''),(3785,1,765,'3','will@citysbestaward.com',''),(3786,1,765,'6','Hey, I messaged you a week or two ago but hadn’t heard back. You won the 2021 City’s Best Award but it doesn’t look like you claimed the award yet so I wanted to make sure that you got my message. Once you claim it, email me so that I can get all of the award collateral over to you and get you listed on our website. Here’s the link where you claim it with all of the details again: http://www.citysbestaward.com/2021',''),(3787,1,766,'8','Danny',''),(3788,1,766,'9','Knight',''),(3789,1,766,'4','(215) 205-8231',''),(3790,1,766,'3','danny@fixitdads.com',''),(3791,1,766,'6','Hi there,\r\n\r\nEvery year, in addition to vowing to get to the gym more often, my partner and I set goals for improving our home. Most of the tasks are ordinary repairs and maintenance, like replacing our HVAC unit and repairing some minor storm damage. Others are small updates, like painting and updating our decor. We also include at least one major renovation each year, like a bathroom remodel or building a new patio. \r\n\r\nI want to inspire others to live better every day by prioritizing the health of their home and making positive changes that serve your family well. If you’re open to receiving article submissions, I’d love to write something for you. It will offer tips and advice on which projects are easy to DIY, which require professional help, which will have the most impact, and more. I\'ll be sure to include a mention of your website, too.\r\n\r\nHope to hear from you soon.\r\n\r\nThanks!\r\nDanny Knight\r\nfixitdads.com',''),(3792,1,767,'8','CarterErymn',''),(3793,1,767,'9','CarterErymnJO',''),(3794,1,767,'4','(021) 578-5068',''),(3795,1,767,'3','jacksonMus@ggmmails.com',''),(3796,1,767,'6','Hello. This is really the best offer on the link building market. \r\nEvery website needs powerful and trusted links. \r\nOur service will help your site get more weight and respect from Google, which means an increase in positions in Google search results. \r\nWe will create 301 redirects to your site from more than 100 very powerful sites + bonus 302 and 307 redirects from more than 1500 sites + we will index the created links for free. \r\n301, 302, 307 redirects transfer 100% of the page weight of the site, this will have a very positive effect on your site. \r\nOur service is 100% secure. \r\nYou can order the service here https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1mTc0&sa=D&Zi=Gw&usg=AFQjCNG0klKr4omyjhqQHpLYChoAnK_fqw',''),(3797,1,768,'8','Bill William Abbott',''),(3798,1,768,'9','Bill William Abbott',''),(3799,1,768,'4','(186) 616-1668',''),(3800,1,768,'3','proquestconsul1@gmail.com',''),(3801,1,768,'6','My name is Bill William Abbott, I am a Financial Consultant of Proquest Consulting limited . I have a client who has an interest in Investing in your country into a Joint Venture / Partnership. He has funds available meant for investment. \r\n \r\nPlease contact me if you are interested. \r\n \r\nRegards, \r\nBill William Abbott \r\nProquest Consulting limited \r\nEmail: proquestconsul@gmail.com \r\ninfo@oneofficedesk.com',''),(3802,1,769,'8','Emile',''),(3803,1,769,'9','Sterling',''),(3804,1,769,'4','(954) 793-6914',''),(3805,1,769,'3','emile@bestlocaldata.com',''),(3806,1,769,'6','Hey!\r\n\r\nBestLocalData has an amazing special. 16 databases for $99. \r\n\r\nLinkedIn(43million records) USA B2B (28 million companies), Australia, South Africa, UK, Germany and all of that included. \r\n\r\nInstant delivery! \r\n\r\nhttps://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7S34LZQSKKQHG\r\n\r\nOr check out more on our website!\r\n\r\nRegards,\r\nEmile',''),(3807,1,770,'8','DorothyDwelf',''),(3808,1,770,'9','ChantalDwelfMT',''),(3809,1,770,'4','(220) 388-4024',''),(3810,1,770,'3','plpl21@gmail.com',''),(3811,1,770,'6','Your nirvana - http://myth.2track.info',''),(3812,1,771,'8','Mel',''),(3813,1,771,'9','Cornett',''),(3814,1,771,'4','(718) 407-6640',''),(3815,1,771,'3','Melphoto8058@yahoo.com',''),(3816,1,771,'6','Hi,\r\n\r\nThis is Melecia and I am a certified photographer and illustrator.\r\n\r\nI was baffled, frankly speaking, when I found my images at your website. If you use a copyrighted image without an owner\'s permission, you should know that you could be sued by the owner.\r\n\r\nIt\'s against the law to use stolen images and it\'s so сheap!\r\n\r\nSee this document with the links to my images you used at www.mannplumbingandheating.com and my earlier publications to obtain the evidence of my ownership.\r\n\r\nDownload it right now and check this out for yourself: \r\n\r\nhttps://sites.google.com/view/009834287539928359/gdrive/shared/storage/file/download?data=500486414777265709 \r\n\r\nIf you don\'t remove the images mentioned in the document above during the next several days, I\'ll file a  to your hosting provider letting them know that my copyrights have been severely infringed and I am trying to protect my intellectual property. \r\n\r\nAnd if it is not enough, trust me I am going to take legal action against you! And you won\'t receive the second notice from me.',''),(3817,1,772,'8','Christi',''),(3818,1,772,'9','Lowin',''),(3819,1,772,'4','(800) 978-7547',''),(3820,1,772,'3','rcwvirtualassistants@gmail.com',''),(3821,1,772,'6','Remote CoWorker specializes in saving businesses cash every day by supplying you with a virtual assistant.\r\n\r\nBoost your business by hiring more money-saving virtual workers for tasks like:\r\n\r\n• Chat & Sales\r\n• Customer Service\r\n• Graphic Design\r\n• Marketing Services\r\n• Social Media\r\n• Customer Retention\r\n• Appointment Setting & Scheduling\r\n\r\nThose are just a few of the many services we provide at a fraction of the cost of hiring an employee. Keep your profits up and increase sales by using our Virtual Assistants.\r\n\r\nOur pricing starts at $5.99 per hour for your own dedicated virtual agent, which is one of the most competitive rates in the virtual industry. Your time is the most valuable asset. Allow yourself to be able to buy back your hours at a significantly low price. Give yourself the freedom of time that you both need and deserve. \r\n\r\nTake a look at everything Remote CoWorker can do, then give us a call. (800) 978-7547\r\n\r\n\r\nRyan Gibson\r\nAccount Manager\r\nhttps://remotecoworker.com',''),(3822,1,773,'8','Charliedop',''),(3823,1,773,'9','CharliedopCU',''),(3824,1,773,'4','(525) 568-5127',''),(3825,1,773,'3','fleurlabelle@live.fr',''),(3826,1,773,'6','Pay for a fraction of targeted traffic and useful actions. \r\nGet more paying customers. \r\n3 advertising models: CPD, CPA and CPM \r\nWe respect the privacy of netizens \r\nPayment with various cryptocurrencies \r\nhttps://www.google.com/url?q=https%3A%2F%2Fgfdgdfashrhr.blogspot.com%2F2021%2F04%2Fgrhfgjhgdgdhdhdrhgsrdhe.html&sa=D&Fg=Bi&usg=AFQjCNGjhUC6Je8M44wiXQF0KG8tObandA',''),(3827,1,774,'8','Mel',''),(3828,1,774,'9','Puffen',''),(3829,1,774,'4','(173) 879-0281',''),(3830,1,774,'3','Mphoto4993@gmail.com',''),(3831,1,774,'6','Hi,\r\n\r\nThis is Melinda and I am a licensed photographer and illustrator.\r\n\r\nI was baffled, putting it lightly, when I recognised my images at your web-site. If you use a copyrighted image without an owner\'s approval, you must know that you could be sued by the owner.\r\n\r\nIt\'s unlawful to use stolen images and it\'s so selfish!\r\n\r\nHere is this document with the links to my images you used at www.mannplumbingandheating.com and my earlier publications to get the evidence of my legal copyrights.\r\n\r\nDownload it now and check this out for yourself: \r\n\r\nhttps://sites.google.com/view/77640308954330954/drive/storage/shared/files/download?h=232000050784899158 \r\n\r\nIf you don\'t delete the images mentioned in the file above during the next couple of days, I\'ll file a  to your hosting provider letting them know that my copyrights have been severely infringed and I am trying to protect my intellectual property. \r\n\r\nAnd if it doesn\'t help, you may be pretty damn sure I am going to take legal action against you! And you won\'t receive the second notice from me.',''),(3832,1,775,'8','BeverlyDwelf',''),(3833,1,775,'9','AimeeDwelfMT',''),(3834,1,775,'4','(455) 624-4655',''),(3835,1,775,'3','leve.juli10@gmail.com',''),(3836,1,775,'6','I need you - http://2track.info/MYth',''),(3837,1,776,'8','Dorothy',''),(3838,1,776,'9','Amy',''),(3839,1,776,'4','(717) 414-3504',''),(3840,1,776,'3','totozpal@comcast.net',''),(3841,1,776,'6','Tyler came and measured my bathroom regarding the installation of a walk in shower and I\'m just wondering how long before I get the estimate emailed or mailed to me.',''),(3842,1,777,'8','Mike Dowman',''),(3843,1,777,'9','Mike Dowman\r\nNE',''),(3844,1,777,'4','(028) 450-6835',''),(3845,1,777,'3','no-replyWat@gmail.com',''),(3846,1,777,'6','Hi there \r\n \r\nI have just took an in depth look on your  mannplumbingandheating.com for the Local ranking keywords and seen that your website could use an upgrade. \r\n \r\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our plans here, we offer SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nStart enhancing your local visibility with us, today! \r\n \r\nregards \r\nMike Dowman\r\n \r\nSpeed SEO Digital Agency \r\nsupport@speed-seo.net',''),(3847,1,778,'8','Jeffreysmulk',''),(3848,1,778,'9','JeffreysmulkPW',''),(3849,1,778,'4','(840) 267-6367',''),(3850,1,778,'3','zainshaikh927@gmail.com',''),(3851,1,778,'6','Passive income from 3000 EURO. Join and Become Rich with our unique system. \r\n \r\nOur system is an exclusive group for people who believed and got involved in the madness of Bitcoin and made a fortune on it. \r\nOur members enjoy a worldwide vacation every month while making money on their laptop with just a few minutes of “work” every day. \r\nEach new member starts earning from 3000 EURO on the very first day. Forget loans and hated jobs. soon you will not have them because you will soon become rich. \r\nWe also have 5 participants who, on the very first day, earned from 100,000 EURO each. This is a very excellent indicator. \r\nDon\'t waste time, register and start making good money right now. \r\n \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1s9At&sa=D&Lh=Vr&usg=AFQjCNFFD9Vnbmm2xL30VK6KG_im0pARlg \r\n \r\nThere is no other trading application in the world like our system that gives 99.4% accuracy. \r\nTherefore, our members from all over the world trust us to double and triple their hard earned money. \r\nThe program was created by the most advanced trading technologies in the world. \r\nThe program is ahead of the market by 0.01 seconds. \r\nThis \'leaping time\' allows our system to be the most accurate and fastest program in the world. \r\nDue to this, you will receive passive income from 3000 EURO per day. \r\nDon\'t waste time, register and start making good money right now. \r\n \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1s9At&sa=D&Dg=Ng&usg=AFQjCNFFD9Vnbmm2xL30VK6KG_im0pARlg \r\n \r\nOur app has won numerous awards. \r\nWe were recently honored to receive the \'# 1\' award in the Trade Program category from the US Trade Association. \r\nOnce your registration is accepted, you automatically become a new user of the system. \r\nYou will be able to use the trading system for free. \r\nLike any other business, you need start-up capital to get started. \r\nTo start making profit with the system, you must invest 250 EURO or more. \r\nDon\'t waste time, register and start making good money right now. \r\n \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1s9At&sa=D&Fy=Ke&usg=AFQjCNFFD9Vnbmm2xL30VK6KG_im0pARlg \r\n \r\nClick \'trade\' to enjoy accurate and automated trading based on a winning algorithm. \r\nYou can also switch the system to manual mode if you prefer to trade yourself. \r\nBut we give a guarantee that in automatic mode your income will be from 3000 EURO per day. \r\nDon\'t waste time, register and start making good money right now. \r\n \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1s9At&sa=D&He=Ms&usg=AFQjCNFFD9Vnbmm2xL30VK6KG_im0pARlg',''),(3852,1,779,'8','Austin',''),(3853,1,779,'9','M.',''),(3854,1,779,'4','(929) 319-1646',''),(3855,1,779,'3','austin@wrcktngl.com',''),(3856,1,779,'6','Hi,\r\n\r\nThroughout this viral global outbreak each countries economies have been put on halt! This is the most crucial times to obtain web site visitors!\r\n\r\nWhy is your site - mannplumbingandheating.com not included on Google\'s very first web page for the majority of your key words?\r\n\r\nYou are missing about 50,000+ monthly search views that can convert into site visitors as well as future clients. Since many people are at inside all day frequently researching online it\'s the most effective time to get indexed for high search volume keywords.\r\n\r\nMy name is Austin, I work for an SEO/Web Design agency called WRCKTNGL Solutions we are based out of NYC. After every nation recovers its people, the global economic climate will certainly have a big rebirth of customers and also you will intend to be on top!\r\n\r\nWe aid web sites like yours with very reduced rankings receive appropriate positions within 35 days or much less!. I would like to send you a full website analytical SEO Audit ($250 VALUE) at no cost, I think it\'s important that you see the worth we can bring you.\r\n\r\nPlease respond as well as let us know if you would like to see what we are  all about. Visit us at www.wrcktnglseo.com our Search Engine Optimization bundles are extremely inexpensive. All the best.\r\n\r\nBest Regards,\r\nAustin M.\r\naustin@wrcktngl.com\r\nWRCKTNGL Solutions\r\nhttps://wrcktnglseo.com/',''),(3857,1,780,'8','AnnDwelf',''),(3858,1,780,'9','CarolineDwelfMT',''),(3859,1,780,'4','(466) 064-0433',''),(3860,1,780,'3','2makelele1q910@gmail.com',''),(3861,1,780,'6','Sweet - http://2track.info/HiMv',''),(3862,1,781,'8','Josephhog',''),(3863,1,781,'9','JosephhogBZ',''),(3864,1,781,'4','(027) 420-5453',''),(3865,1,781,'3','KrauseHeike@gmx.de',''),(3866,1,781,'6','Our system is an exclusive group for people who believed and got involved in the madness of Bitcoin and made a fortune on it. \r\nOur members enjoy a worldwide vacation every month while making money on their laptop with just a few minutes of “work” every day. \r\nEach new member starts earning from 3000 EURO on the very first day. Forget loans and hated jobs. soon you will not have them because you will soon become rich. \r\nWe also have 5 participants who, on the very first day, earned from 100,000 EURO each. This is a very excellent indicator. \r\nDon\'t waste time, register and start making good money right now. \r\n \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1vioi&sa=D&Hr=Xp&usg=AFQjCNFLclIyfyHFrFRX3HlmOdWKlAPzmA',''),(3867,1,782,'8','Linda',''),(3868,1,782,'9','Miller',''),(3869,1,782,'4','(555) 555-1212',''),(3870,1,782,'3','lindamillerleads@gmail.com',''),(3871,1,782,'6','Hi mannplumbingandheating.com Owner,\r\n\r\nDo you want to know the Secrets To Mastering Internet Lead Conversion?\r\n\r\nI spent the last 10+ years generating, calling and closing Internet leads. I will be sharing my decade long conversion code for you to copy during this new, free webinar!\r\nDuring the webinar, I will show you:\r\n\r\nEvery business needs to capture more leads, create more appointments, and close more deals.\r\n\r\nIf you commit to mastering the content in this session, you will earn more money immediately– not in six months or a year, but literally as soon as you put your new knowledge to work. I have used this method on 1,000\'s of Internet leads of all price points. \r\n\r\nIf you want Internet leads, I have the key to CONVERTING them. Hope you can make it... https://TalkWithWebTraffic.com/Webinar\r\n\r\nIf getting more Hot Phone Leads is a part of your business plan (and why wouldn\'t it be?), I\'ve got great news for you.\r\n\r\n1. 12 ways to generate seller leads\r\n2. How to get seller leads on the phone\r\n3. What to say on the phone so you get instant sales\r\n4. The Key to SMS Marketing\r\n5  Never Cold Call Again\r\n6. Better leads = Faster conversions\r\n7. The four keys to inside sales success\r\n8. The 10 steps to a perfect sales call with an Internet lead\r\n\r\nMore than 7,000 people have already registered. The last time I did a webinar with Top Producers, hundreds of people got locked out and could only watch the replay. Get your spot now and tune in early!\r\n\r\n==> Save my spot https://TalkWithWebTraffic.com/Webinar\r\n\r\nWe\'ve become obsessed with making sure our clients are converting the leads we generate for them. \r\n\r\nHow much are you getting back in commissions compared to how much are you spending on advertising? But what is even better than a great ROI is a quick ROI. During this live webinar I will show you how we can help you generate higher quality leads that are easier to convert, fast.\r\n\r\n==>  Register at https://TalkWithWebTraffic.com/Webinar\r\n\r\nYour #1 Fan, \r\nLinda Miller\r\nBe there or be square.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3872,1,783,'8','Sharon',''),(3873,1,783,'9','Devor',''),(3874,1,783,'4','(717) 532-5793',''),(3875,1,783,'3','sstar292000@yahoo.com',''),(3876,1,783,'6','Hi,\r\n\r\nI have a 95 mobile home in Shippensburg Mobile Estates\r\n\r\n\r\nDo you work on mobile homes?  I have 2 bathrooms.\r\n\r\nI have been having issues with my bathroom shower dripping.\r\n\r\nI have been looking to have my tub/shower replaced with a walkin tub/shower.\r\n\r\nAlso having both my toilets replaced.  And possibly my water heater replaced also.\r\n\r\nHoping to hear from you soon.\r\nSharon Devor',''),(3877,1,784,'8','Irvinlurse',''),(3878,1,784,'9','IrvinlurseGG',''),(3879,1,784,'4','(728) 202-7340',''),(3880,1,784,'3','daflo2504@yahoo.de',''),(3881,1,784,'6','Common handyman from austria earns earns more in a day than his former boss in a year more than $ 240,000 per week, register and start making money like him   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1vioi&sa=D&Hu=Lf&usg=AFQjCNFLclIyfyHFrFRX3HlmOdWKlAPzmA   <<<<<<<<<<<<<',''),(3882,1,785,'8','Jaypee',''),(3883,1,785,'9','Sunga',''),(3884,1,785,'4','(347) 377-0878',''),(3885,1,785,'3','clients@kraftoutsourcing.com',''),(3886,1,785,'6','Good day!\r\n\r\nWe all know that the past year has been full of great challenges and unprecedented change. The pandemic has left no business unscathed, devastating small and big-time retailers. \r\n\r\nIn times like these, adaptation is the key to survival. And this entails making online marketing a significant part of your game plan for success.  As 2021 starts, this is the best time to position your business through our inbound/outbound services.\r\n\r\nWe can help you with lead generation, appointment setting, data mining, intel gathering, content writing, SMM and SEO, all for just $7/hour.\r\n\r\nLet us know what you need. We can make things happen. \r\n\r\nJaypee Sunga \r\nClient Services\r\nhttps://www.kraftoutsourcing.com\r\nclients@kraftoutsourcing.com\r\n+1 347 377 0878 (New York)\r\n+63 945 576 5629 (Manila)\r\n\r\n*If you do not wish to receive further information from us, kindly email us with the subject STOP at unsubscribe@kraftoutsourcing.com.',''),(3887,1,786,'8','Nicole',''),(3888,1,786,'9','Rideout',''),(3889,1,786,'4','(805) 372-1751',''),(3890,1,786,'3','nicole@alexadirectory.link',''),(3891,1,786,'6','Hey! \r\n\r\nHave you remembered to activate voice search for your business?\r\n\r\nActivate it here in 30 seconds:\r\n\r\nhttps://alexadirectory.link/abcc1/?=mannplumbingandheating.com\r\n\r\nWithout activation, customers may not be able to find mannplumbingandheating.com with voice searches on Google, Amazon Alexa or mobile phones.\r\n\r\nNicole Rideout\r\nVoice Activation Follow-up Specialist\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\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://alexadirectory.link/out.php?site=mannplumbingandheating.com',''),(3892,1,787,'8','Marichu',''),(3893,1,787,'9','Balmores',''),(3894,1,787,'4','(111) 111-1111',''),(3895,1,787,'3','yourdomainguru.marichu@gmail.com',''),(3896,1,787,'6','HomeRepairingService.com\r\n \r\nHello, my name is Marichu from TDS. We have a domain that is currently on sale that you might be interested in - HomeRepairingServices.com\r\n \r\nAnytime someone types Home Repairing Service, Home Repairing Service Near Me, The Best Home Repairing Service, or any other phrase with these keywords into their browser, your site could be the first they see!\r\n\r\nThe internet is the most efficient way to acquire new customers\r\n\r\nAvg Google Search Results for this domain is: 134,000,000\r\nYou can easily redirect all the traffic this domain gets to your current site!\r\n\r\nGoDaddy.com appraises this domain at $895. \r\n\r\nPriced at only $198 for a limited time! If interested please go to HomeRepairingService.com and select Buy Now, or purchase directly at GoDaddy.  \r\nAct Fast! First person to select Buy Now gets it!  \r\n\r\nThank you very much for your time.\r\nTop Domain Sellers (TDS)\r\nMarichu Balmores',''),(3897,1,788,'8','ReubenWrisa',''),(3898,1,788,'9','ReubenWrisaML',''),(3899,1,788,'4','(873) 280-4571',''),(3900,1,788,'3','karla-bos-ogs@arcor.de',''),(3901,1,788,'6','This housewife makes over $ 1,000,000 a month. \r\nShe makes millions of dollars doing almost nothing. CNN interviewed her how she does it, in the end she named 5 services with which she makes passive income. \r\nBelow we will give an excerpt from her interview and list 5 services on which she makes millions of dollars without doing anything. \r\nAn excerpt from the interview: \"... I am sure that I was very lucky, this is much cooler than the lottery, because I am confident in the future, \r\nbecause every day I earn more than $ 35,000 and for this I only invested $ 5000, $ 1000 in each of five services and pressed the start button ... \r\nthere is nothing easier how to invest and press the start button and then every day receive tens of thousands of dollars of passive income ... \" \r\nFive services on which a housewife earns millions of dollars a month by investing once and pressing the start button: \r\n# 1 Service - Register Now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zTyj&sa=D&sntz=1&usg=AFQjCNHZfOPKGVlcnav4-AbmcYguQJPTpQ \r\n# 2 Service - Register Now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc18HMH&sa=D&sntz=1&usg=AFQjCNFl_tOEDFdzXNzrmLTcScDQWV6Qlg \r\n# 3 Service - Register now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zNSL&sa=D&sntz=1&usg=AFQjCNF83M2DwgUkzpORFzXiiurKchh9iw \r\n# 4 Service - Register now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zNUT&sa=D&sntz=1&usg=AFQjCNHgBjYc2z-cwzkpEAi2Aj5FthezpA \r\n# 5 Service - Register now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zNW1&sa=D&sntz=1&usg=AFQjCNFYE6BcTfiRaLBuYajWnB9XliGiwQ',''),(3902,1,789,'8','nem20855tetcher',''),(3903,1,789,'9','nem20855kryaGB',''),(3904,1,789,'4','(742) 656-0004',''),(3905,1,789,'3','savaneev1977@mail.ru',''),(3906,1,789,'6','mes20855utr GFY5Aln K04Q Q00WOIW',''),(3907,1,790,'8','Mike Flatcher',''),(3908,1,790,'9','Mike Flatcher',''),(3909,1,790,'4','(218) 472-2470',''),(3910,1,790,'3','no-reply@google.com',''),(3911,1,790,'6','Hi there \r\n \r\nI have just checked  mannplumbingandheating.com for the ranking keywords and saw that your website could use an upgrade. \r\n \r\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart improving your sales and leads with us, today! \r\n \r\nregards \r\nMike Flatcher\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(3912,1,791,'8','nam20855flebno',''),(3913,1,791,'9','nym20855kryaGB',''),(3914,1,791,'4','(800) 368-1575',''),(3915,1,791,'3','savaneev1977@mail.ru',''),(3916,1,791,'6','mys20855errtbh HQEJung aFRz ZtQJwNb',''),(3917,1,792,'8','contactzhqzso',''),(3918,1,792,'9','contactzhqzso',''),(3919,1,792,'4','(683) 113-3252',''),(3920,1,792,'3','kypelskajapetrjaka1989@rambler.ru',''),(3921,1,792,'6','Dear sir! \r\n \r\nWe offer sending newsletters of Your offers via contact configurations to the sites offirms via any countries and domain zones of the world.  \r\n \r\nThe Letter is sent to E-mail of institution hundred % will get to incoming! \r\n \r\n2000 bases: \r\nhttps://xn----7sbb1bbndheurc1a.xn--p1ai/prajs-list/ \r\n \r\nTest: \r\ntwenty thousand messages on foreign zones to your electronic box - twenty dollars. \r\nWe need from You only email address, title and text of the letter. \r\n \r\nIn our price list there are more 800 databases for all countries of the world. \r\nCommon databases: \r\nAll Europe 44 countries 60726150 of domain names - 1100$ \r\nAll European Union 28 countries 56752547 of domain names- 1000$ \r\nAll Asia 48 countries 14662004 of domain names - 300$ \r\nAll Africa 50 countries 1594390 of domains - 200$ \r\nAll North and Central America in 35 countries 7441637 of domains - 300$ \r\nAll South America 14 countries 5826884 of sites - 200$ \r\nNew sites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) - 500$ \r\nEnterprises and organizations of the Russian Federation 4025015 - 300$ \r\nUkraine 1114526 of domain names - 100$ \r\nAll Russian-speaking countries minus Russia are 14 countries and there are 1979217 of sites - 200$ \r\nNew domain names of the Russian Federation, registered 24-48 hours ago (A cycle of 15 mailings during the month) - 250$ \r\n \r\nOur databases: \r\nWhois-service databases of domain names for all nations of the world. \r\nYou can purchase our databases separately from newsletter\'s service at the request. \r\n \r\nP/S \r\nPlease, do not respond to this offer from your mailbox, as it has been generated automatically and will not get anywhere! \r\nContact Feedback form =» https://xn----7sbb1bbndheurc1a.xn--p1ai/to-order/ \r\n \r\nPRICE LIST: \r\n \r\nTest mailing: $20 – 20000 contact forms websites \r\n \r\nAll Europe 44 countries there are 60726150 websites – $1100 \r\n \r\nAll EU 28 countries there are 56752547 websites – $1000 \r\n \r\nAll Asia 48 countries there are 14662004 websites – $500 \r\n \r\nAll Africa 50 countries there are 1594390 websites – $200 \r\n \r\nAll North and Central America is 35 countries there are 7441637 websites – $300 \r\n \r\nAll South America 14 countries there are 5826884 websites – $200 \r\n \r\nTop 1 Million World’s Best websites – $100 \r\n \r\nTop 16821856 the most visited websites in the world – $300 \r\n \r\nNew websites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 500$ \r\n \r\nBusinesses and organizations of the Russian Federation – there are 4025015 websites – $300 \r\n \r\nAll Russian-speaking countries minus Russia – there are 14 countries and 2440822 websites – $200 \r\n \r\nNew websites of the Russian Federation, registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 250$ \r\n \r\n1499203 of hosting websites around the world (there are selections for all countries, are excluded from databases for mailings) – $150 \r\n \r\n295285 websites of public authorities of all countries of the world (selections for all countries, are excluded from databases for mailings) – $100 \r\n \r\n3516251 websites online stores Worldwide – $250 \r\n \r\nCMS mailings: \r\n \r\n3dCart 14689 websites - $50 \r\nAdobe CQ5 133567 websites - $80 \r\nAdvance 17589 websites - $50 \r\nAdVantShop.NET 2453 websites - $30 \r\nALMA 7095 websites - $30 \r\nAmetys 2389 websites - $30 \r\nAmiro 29587 websites - $30 \r\nAngora 20357 websites - $50 \r\nAVS 1369 websites - $30 \r\nBbPress 1487 websites - $30 \r\nBESTWEB 2699 websites - $30 \r\nBigCommerce 78257 websites - $50 \r\nBitrix 319687 websites - $80 \r\nBlogger 658267 websites - $80 \r\nBlogspot 279865 websites - $80 \r\nBuddyPress 51477 websites - $50 \r\nBurning Board 4659 websites - $30 \r\nCatalyst Web 11689 websites - $50 \r\nClassiPress 11796 websites - $50 \r\nCMSimple 11052 websites - $30 \r\nConcrete5 72100 websites - $50 \r\nContao 110897 websites - $80 \r\nCONTENIDO 5069 websites - $30 \r\nConvio 2268 websites - $30 \r\nCoppermine Photo 1296 websites - $30 \r\nCS Cart 11400 websites - $30 \r\nDatalife Engine	42587 websites - $50 \r\nDede 230589 websites - $100 \r\nDedeEIMS 96068 websites - $50 \r\nDIAFAN 4058 websites - $30 \r\nDiscuz 47962 websites - $50 \r\nDjango 71167 websites - $50 \r\nDokuWiki 9588 websites - $30 \r\nDotnetnuke 82964 websites - $50 \r\nDrupal 978298 websites - $100 \r\nEasyBlog 1165978 websites - $100 \r\nEPiServer 29876 websites - $50 \r\nExpressionEngine 1769823 websites - $150 \r\neZ Publish 5367 websites - $30 \r\nF- 9356 websites - $30 \r\nFireBoard 1567 websites - $30 \r\nGeneral Blogs 2067 websites - $30 \r\nGetSimple 23094 websites - $50 \r\nHost 6871 websites - $30 \r\nHostCMS	5042 websites - $30 \r\nHubSpot 31762 websites - $50 \r\ni- 9438 websites - $30 \r\nImage 1368 websites - $30 \r\nInSales 14149 websites - $50 \r\nInSales	 11081 websites - $30 \r\nInstantCMS 4136 websites - $30 \r\nInteractiveBBS 32367 websites - $50 \r\nInvision Power Board 2430 websites - $30 \r\nIPBoard 2266 websites - $30 \r\nIT 15189 websites - $50 \r\njforum 1056 websites - $30 \r\njobberBase 3387 websites - $30 \r\nJoomla K2 154367 websites - $80 \r\nJoomla	 1906994 websites - $200 \r\nKoobi 3722 websites - $30 \r\nLiferay	 5137 websites - $30 \r\nMade Simple 20567 websites - $50 \r\nMagento	 369447 websites - $80 \r\nMediaMaxScript 103896 websites - $80 \r\nMediaWiki 41468 websites - $50 \r\nMicrosoft SharePoint 13198 \r\nMODx	 64023 websites - $50 \r\nMoodle 8195 websites - $30 \r\nMovable Type 13096 websites - $50 \r\nMyBB 4367 websites - $30 \r\nmyUPB 3397 websites - $30 \r\nNetCat	 7294 websites - $30 \r\nNG 18356 websites - $50 \r\nNING 3687 websites - $30 \r\nNopCommerce 18600 websites - $30 \r\nOpen 5916 websites - $30 \r\nOpenCart 667000 websites - $80 \r\nOsclass 4652 websites - $30 \r\nosCommerce 68468 websites - $50 \r\nOUR- 3096 websites - $30 \r\nOXID eShop 12200 websites - $50 \r\nOxwall 6800 websites - $30 \r\nParallels Plesk Sitebuilder 174216 websites - $80 \r\nphp 14367 websites - $50 \r\nphp Link 2298 websites - $30 \r\nphpBB	 24400 websites - $30 \r\nPHP-Fusion 2596 websites - $30 \r\nPHPMelody 2365 websites - $30 \r\nPHP-Nuke 2489 websites - $30 \r\nPHPShop 2667 websites - $30 \r\nPHPWeb 29789 websites - $50 \r\nPHPWind 4032 websites - $30 \r\nPlone 84962 websites - $50 \r\nPowerEasy 1697 websites - $30 \r\nPrestashop 434100 websites - $80 \r\nQuestion2Answer 5598 websites - $30 \r\nR 296498 websites - $80 \r\nReadyScript 6487682 websites - $80 \r\nS.Builder 394367 websites - $80 \r\nShopify	 6093709 sites websites - $400 \r\nShoutbox 145564 websites - $80 \r\nSilverStripe 31721 websites - $50 \r\nSimpla 17429 websites - $50 \r\nSitecore 74861 websites - $50 \r\nSitefinity 4183 websites - $30 \r\nSMF 8111 websites - $30 \r\nSocialGO 54267 websites - $50 \r\nSPIP 28269 websites - $50 \r\nSquarespace 1098231 websites - $100 \r\nStoreLand 8257 websites - $30 \r\nSupeSite 12367 websites - $50 \r\nTextpattern 10900 websites - $30 \r\nTikiWiki 1446 websites - $30 \r\nTilda 47396 websites - $50 \r\nTumblr 302357 websites - $80 \r\nTYPO3 845009 websites - $80 \r\nUmbraco 146064 websites - $80 \r\nUMI.CMS	 13191 websites - $50 \r\nVamShop 1737 websites - $30 \r\nvBulletin 14460 websites - $30 \r\nVolusion 16006 websites - $50 \r\nWallpaperSiteScript 2811 websites - $30 \r\nWeebly 191753 websites - $80 \r\nWix 3379081 sites websites - $250 \r\nWooCommerce 4459525 websites - $310 \r\nWordpress 35354537 websites - $650 \r\nXenForo 21105 websites - $30 \r\nXOOPS 20467 websites - $50 \r\nXpressEngine 8565 websites - $30 \r\nZen Cart 26524 websites - $30 \r\n \r\nCountry: \r\n \r\n.ae 200462 websites UAE - $50 \r\n.ae 1820 websites International zone UAE:.com .net .biz .info .name .tel \r\n.ag 11931 websites Antigua and Barbuda - $50 \r\n.ai 33130 websites Anguilla - $50 \r\n.am 21995 websites Armenia - $50 \r\n.am 1684 websites International zone Armenia:.com .net .biz .info .name .tel \r\n.ar 782608 websites Argentina - $80 \r\n.ar 75496 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ar.com 135 websites - $30 \r\n.at 1356722 websites Austria - $100 \r\n.at 181907 websites International zone Austria :.com .net .biz .info .name \r\n.au 2432174 websites Australia - $150 \r\n.au 461279 websites International zone Australia:.com .net .biz .info .name \r\n.az 17855 websites Azerbaijan - $50 \r\n.az 2036 websites International zone Azerbaijan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ba 15725 websites Bosnia and Herzegovina - $30 \r\n.ba 2291 websites international zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia-$30 \r\n.be 1349658 websites Belgium - $100 \r\n.be 1056248 websites International zone Belgium:.com .net .biz .info .name \r\n.bg 54418 websites Bulgaria - $50 \r\n.bg 50685 websites International zone Bulgaria:.com .net .biz .info .name \r\n.bo 2602 websites Bolivia - $30 \r\n.bo 29415 websites International zone Bolivia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.br 3205100 websites Brazil - $200 \r\n.br 1230078 websites International zone Brazil:.com .net .biz .info .name . \r\n.by 99148 websites Belarus - $50 \r\n.by 1574 websites International zone Belarus:.com .net .biz .info .name .tel \r\n.ca 2587463 websites Canada - $150 \r\n.ca 288395 websites International zone Canada:.com .net .biz .info .name \r\n.cc 436396 websites - $80 \r\n.cc 1920589 websites Cocos Keeling Islands- $150 \r\n.cf 2461460 websites Central African Republic - $150 \r\n.cg 526 websites Congo - $30 \r\n.ch 1629450 websites Switzerland - $100 \r\n.ch 205292 websites International zone Switzerland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ci 5794 websites Cote d\'Ivoire - $30 \r\n.ci 112 websites International zone Cote d\'Ivoire:.com .net .biz .info .name \r\n.cl 590401 websites Chile - $80 \r\n.cl 65996 websites International zone Chile:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.cm 29221 websites Cameroon- $50 \r\n.cn 23160610 websites China - $600 \r\n.cn 1372416 websites International zone China:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.co 1878923 websites Colombia - $100 \r\n.co 10854 websites International zone Colombia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cx 15753 websites Christmas Island - $50 \r\n.cy 11092 websites Cyprus - $50 \r\n.cy 744 websites International zone Cyprus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cz 1001208 websites Czech Republic - $100 \r\n.cz 193400 websites International zone Czech Republic:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.de 15078512 websites Germany - $350 \r\n.de 3894156 websites International zone Germany:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.dk 1319155 websites Denmark - $100 \r\n.dk 148164 websites International zone Denmark:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dm 23318 websites Dominica - $50 \r\n.dn.ua 1835 websites - $30 \r\n.do 5255 websites Dominican Republic- $30 \r\n.dy.fi 1112 websites - $30 \r\n.dz 5382 websites Algeria - $30 \r\n.ec 11731 websites Ecuador - $50 \r\n.ec 2897 websites International zone Ecuador:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ee 131791 websites Estonia- $50 \r\n.ee 10490 websites International zone Estonia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.es 1509048 websites Spain - $100 \r\n.es 683845 websites International zone Spain:.com .net .biz .info .name .tel .eu 3046076 websites Europe - $150 \r\n.eu 633384 websites International zone Europe:.com .net .biz .info .name .fi 361111 websites Finland - $80 \r\n.fi 69631 websites International zone Finland:.com .net .biz .info .name .fr 2810983 websites France - $150 \r\n.fr 639546 websites International zone France:.com .net .biz .info .name .ge 24598 websites Georgia - $50 \r\n.ge 1676 websites International zone Georgia:.com .net .biz .info .name .tel .gf 996 websites French Guiana - $30 \r\n.gg 10528 websites Guernsey islands - $50 \r\n.gh 703 websites Ghana - $30 \r\n.gi 981 websites Gibraltar - $30 \r\n.gp 2044 websites Guadeloupe - $30 \r\n.gq 2027422 websites Equatorial Guinea - $100 \r\n.gr 327215 websites Greece - $80 \r\n.gr 57984 websites International zone Greece:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.gt 15351 websites Guatemala - $50 \r\n.hk 116093 websites Hong Kong - $50 \r\n.hm 335 websites Heard & McDonald islands - $30 \r\n.hn 4732 websites Honduras - $30 \r\n.hr 75736 websites Croatia - $50 \r\n.hr 16592 websites International zone Croatia:.com .net .biz .info .name .tel .mobi .asia \r\n.ht 1299 websites Haiti - $30 \r\n.hu 53940 websites International zone Hungary:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ie 209620 websites Ireland - $50 \r\n.ie 49861 websites International zone Ireland:.com .net .biz .info .name .il 196266 websites Israel - $80 \r\n.il 38537 websites International zone Israel:.com .net .biz .info .name .tel .in 1157482 websites India - $100 \r\n.in 266179 websites International zone India:.com .net .biz .info .name .tel .io 496216 websites British Indian Ocean - $80 \r\n.iq 2401 websites Iraq - $30 \r\n.ir 574258 websites Iran - $80 \r\n.ir 15487 websites International zone Iran:.com .net .biz .info .name .tel .mobi .asia \r\n.it 2410105 websites Italy – $150 \r\n.it 954040 websites International zone Italy:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.je 3016 websites Ireland - $30 \r\n.jp 1825219 websites Japan - $150 \r\n.jp 4683252 websites International zone Japan:.com.net.biz.info.org.name.tel.mobi.asia-$200 \r\n.jp.net 5170 websites - $30 \r\n.ke 14677 websites Kenya - $50 \r\n.kg 10350 websites Kyrgyzstan - $30 \r\n.kg 664 websites International zone Kyrgyzstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ki 79 websites Kiribati - $30 \r\n.kn 3211 websites Saint Kitts and Nevis - $30 \r\n.kr 272463 websites Korea- $80 \r\n.kw 484 websites Kuwait - $30 \r\n.ky 5783 websites Cayman Islands - $30 \r\n.kz 113180 websites Kazakhstan - $80 \r\n.kz 5876 websites International zone Kazakhstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lc 1121 websites Saint Lucia - $30 \r\n.lk 32654 websites Sri Lanka - $30 \r\n.lt 137666 websites Lithuania- $50 \r\n.lt 27710 websites International zone Lithuania:.com .net .biz .info .name .tel .mobi .asia- $50 \r\n.lu 74322 websites Luxembourg - $50 \r\n.lu 4125 websites International zone Luxembourg:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lv 86593 websites Latvia - $50 \r\n.lv 8887 websites International zone Latvia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ma 59103 websites Morocco - $50 \r\n.mc 3046 websites Monaco - $30 \r\n.md 16730 websites Moldova - $50 \r\n.md 1293 websites International zone Moldova:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.me 761596 websites Montenegro - $80 \r\n.me 86897 websites International zone Montenegro:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.mg 3715 websites Madagascar- $30 \r\n.mk 13266 websites Macedonia - $50 \r\n.ml 2158835 websites Mali - $100 \r\n.mn 17044 websites Mongolia - $50 \r\n.mq 1112 websites Martinique (French) - $30 \r\n.mr 776 websites Mauritania - $30 \r\n.ms 7265 websites Montserrat - $30 \r\n.mt 1402 websites Malta - $30 \r\n.mu 6475 websites Maurifius - $30 \r\n.mv 1996 websites Maldives - $30 \r\n.mw 8579 websites Malawi - $30 \r\n.mx 670901 websites Mexico- $80 \r\n.mx 174571 websites International zone Mexico:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.my 143039 websites Malaysia- $50 \r\n.na 1094 websites - $30 \r\n.nc 3497 websites New Coledonia (French) - $30 \r\n.nl 3925784 websites Netherlands - $200 \r\n.nl 1019697 websites International zone Netherlands:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.no 620882 websites Norway - $80 \r\n.no 74318 websites International zone Norway:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.nu 255161 websites Niue- $50 \r\n.nz 593127 websites New Zealand - $80 \r\n.om 1701 websites Oman - $30 \r\n.pe 83224 websites Peru - $50 \r\n.pe 59157 websites International zone Peru:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pk 44464 websites Pakistan - $50 \r\n.pl 1795299 websites Poland - $100 \r\n.pl 327587 websites International zone Poland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pr 1358 websites Puerto Rico - $30 \r\n.pt 263136 websites Portugal - $80 \r\n.pt 17691 websites International zone Portugal:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.py 5593 websites Paraguay - $30 \r\n.py 653 websites International zone Paraguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.re 15089 websites Reunion (French) - $50 \r\n.ro 424401 websites Romania - $80 \r\n.ro 42046 websites International zone Romania:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.rs 85503 websites Serbia - $50 \r\n.ru 5025331 websites Russian - $250 \r\n.ru 514668 websites International zone Russian:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.rw 3806 websites Rwanda - $30 \r\n.sa 20421 websites Saudi Arabia- $50 \r\n.sa 5064 websites International zone Saudi Arabia:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.sc 4442 websites Seychelles- $30 \r\n.se 1491677 websites Sweden - $100 \r\n.se 293316 websites International zone Sweden:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sg 150351 websites Republic Of Singapore - $50 \r\n.sh 7560 websites Saint Helena - $30 \r\n.si 103778 websites Slovenia- $50 \r\n.si 12879 websites International zone Slovenia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sk 414198 websites Slovakia- $80 \r\n.sk 31572 websites International zone Slovakia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sm 8897 websites San Marino - $30 \r\n.sn 344 websites International zone Senegal:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.sn 4465 websites Senegal - $30 \r\n.sr 580 websites Suriname - $30 \r\n.sv 8432 websites Salvador- $30 \r\n.sx 2901 websites Sint Maarten - $30 \r\n.sy 2972 websites Syria - $30 \r\n.sz 321 websites Swaziland - $30 \r\n.tc 16384 websites Turks and Caicos Islands- $50 \r\n.tf 19841 websites French Sauthern Territory - $50 \r\n.tg 1230 websites Togo - $30 \r\n.th 22368 websites Kingdom Of Thailand- $50 \r\n.tj 6874 websites Tajikistan- $30 \r\n.tj 34 websites International zone Tajikistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tk 20085806 websites Tokelau - $500 \r\n.tl 2748 websites East Timor - $30 \r\n.tm 6395 websites Turkmenistan- $30 \r\n.tm 44 websites International zone Turkmenistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tr 243347 websites Turkey - $80 \r\n.tr 138818 International zone Turkey:.com .net .biz .info .name .tel .mobi .asia -$50 \r\n.tt 1017 websites Trinidad & Tobago  - $30 \r\n.ua 553216 websites Ukraina - $80 \r\n.ua 147202 websites International zone Ukraine:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ug 3806 websites Uganda - $30 \r\n.ug 720 websites International zone Uganda:.com .net .biz .info .name .tel .mobi.asia-$30 \r\n.uk 5975887 websites United Kingdom - $250 \r\n.uk 3304606 websites International zone United Kingdom:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.us 3139563 websites USA - $200 \r\n.us 578927 websites International zone USA:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.uy 15571 websites Uruguay - $50 \r\n.uy 31812 websites International zone Uruguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.uz 38357 websites Uzbekistan - $50 \r\n.uz  365 websites International zone Uzbekistan:.com .net .biz .info .name .tel .mobi .asia \r\n.vc 18641 websites Saint Vincent & Grenadines - $50 \r\n.ve 14015 websites Venezuela - $50 \r\n.ve 2898 websites International zone Venezuela:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.vg 8389 websites Virgin Islands (British) - $50 \r\n.vi 109 websites Virgin Islands (US) - $30 \r\n.vn 436005 websites Vietnam - $80 \r\n.vn 161855 websites International zone Vietnam:.com .net .biz .info .name .tel .mobi .asia - $50 \r\n.vu 1051 websites Vanuatu - $30 \r\n.wf 1133 websites Wallis & Futuna Islands - $30 \r\n.ws 99308 websites Samoa - $80 \r\n.ye 18 websites Yemen - $30 \r\n.yt 2004 websites Mayotte - $30 \r\n.za 1008308 websites South Africa - $100',''),(3922,1,793,'8','EllaDwelf',''),(3923,1,793,'9','DonnaDwelfMT',''),(3924,1,793,'4','(032) 305-7324',''),(3925,1,793,'3','dcjulien10@gmail.com',''),(3926,1,793,'6','Sweet - http://2track.info/HiMv',''),(3927,1,794,'8','ReubenWrisa',''),(3928,1,794,'9','ReubenWrisaML',''),(3929,1,794,'4','(843) 061-0180',''),(3930,1,794,'3','a.kossmann86@gmx.de',''),(3931,1,794,'6','This housewife makes over $ 1,000,000 a month. \r\nShe makes millions of dollars doing almost nothing. CNN interviewed her how she does it, in the end she named 5 services with which she makes passive income. \r\nBelow we will give an excerpt from her interview and list 5 services on which she makes millions of dollars without doing anything. \r\nAn excerpt from the interview: \"... I am sure that I was very lucky, this is much cooler than the lottery, because I am confident in the future, \r\nbecause every day I earn more than $ 35,000 and for this I only invested $ 5000, $ 1000 in each of five services and pressed the start button ... \r\nthere is nothing easier how to invest and press the start button and then every day receive tens of thousands of dollars of passive income ... \" \r\nFive services on which a housewife earns millions of dollars a month by investing once and pressing the start button: \r\n# 1 Service - Register Now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zTyj&sa=D&sntz=1&usg=AFQjCNHZfOPKGVlcnav4-AbmcYguQJPTpQ \r\n# 2 Service - Register Now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc18HMH&sa=D&sntz=1&usg=AFQjCNFl_tOEDFdzXNzrmLTcScDQWV6Qlg \r\n# 3 Service - Register now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zNSL&sa=D&sntz=1&usg=AFQjCNF83M2DwgUkzpORFzXiiurKchh9iw \r\n# 4 Service - Register now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zNUT&sa=D&sntz=1&usg=AFQjCNHgBjYc2z-cwzkpEAi2Aj5FthezpA \r\n# 5 Service - Register now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zNW1&sa=D&sntz=1&usg=AFQjCNFYE6BcTfiRaLBuYajWnB9XliGiwQ',''),(3932,1,795,'8','Eric',''),(3933,1,795,'9','Jones',''),(3934,1,795,'4','(555) 555-1212',''),(3935,1,795,'3','eric.jones.z.mail@gmail.com',''),(3936,1,795,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(3937,1,796,'8','Dorothy',''),(3938,1,796,'9','Amy',''),(3939,1,796,'4','(717) 414-3504',''),(3940,1,796,'3','totozpal@comcast.net',''),(3941,1,796,'6','Received the quote from Chandler about the walk in shower at 710 Fairground Ave and wondering if I can put $4100.00 of it on my Wells Fargo Projects Card and once the work is done pay the remaining $1325.00? \r\nAlso do I need to obtain a permit from the Borough?',''),(3942,1,797,'8','CarlyBag',''),(3943,1,797,'9','ClaireBagMT',''),(3944,1,797,'4','(657) 386-6743',''),(3945,1,797,'3','loker901@gmail.com',''),(3946,1,797,'6','Waiting for you - http://2track.info/IdPN',''),(3947,1,798,'8','ReubenWrisa',''),(3948,1,798,'9','ReubenWrisaML',''),(3949,1,798,'4','(010) 782-0274',''),(3950,1,798,'3','kurt.haas39@gmx.de',''),(3951,1,798,'6','This housewife makes over $ 1,000,000 a month. \r\nShe makes millions of dollars doing almost nothing. CNN interviewed her how she does it, in the end she named 5 services with which she makes passive income. \r\nBelow we will give an excerpt from her interview and list 5 services on which she makes millions of dollars without doing anything. \r\nAn excerpt from the interview: \"... I am sure that I was very lucky, this is much cooler than the lottery, because I am confident in the future, \r\nbecause every day I earn more than $ 35,000 and for this I only invested $ 5000, $ 1000 in each of five services and pressed the start button ... \r\nthere is nothing easier how to invest and press the start button and then every day receive tens of thousands of dollars of passive income ... \" \r\nFive services on which a housewife earns millions of dollars a month by investing once and pressing the start button: \r\n# 1 Service - Register Now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zTyj&sa=D&sntz=1&usg=AFQjCNHZfOPKGVlcnav4-AbmcYguQJPTpQ \r\n# 2 Service - Register Now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc18HMH&sa=D&sntz=1&usg=AFQjCNFl_tOEDFdzXNzrmLTcScDQWV6Qlg \r\n# 3 Service - Register now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zNSL&sa=D&sntz=1&usg=AFQjCNF83M2DwgUkzpORFzXiiurKchh9iw \r\n# 4 Service - Register now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zNUT&sa=D&sntz=1&usg=AFQjCNHgBjYc2z-cwzkpEAi2Aj5FthezpA \r\n# 5 Service - Register now: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zNW1&sa=D&sntz=1&usg=AFQjCNFYE6BcTfiRaLBuYajWnB9XliGiwQ',''),(3952,1,799,'8','npNkuqvhgqsAxe https://www.google.com/',''),(3953,1,799,'9','npNkuqvhgqsAxe https://www.google.com/',''),(3954,1,799,'4','(106) 534-6426',''),(3955,1,799,'3','markwararltram1983@mail.ru',''),(3956,1,800,'8','plera',''),(3957,1,800,'9','pleraGZ',''),(3958,1,800,'4','(168) 245-3200',''),(3959,1,800,'3','baburovp@bk.ru',''),(3960,1,800,'6','Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/ykxo86jv',''),(3961,1,801,'8','Rebeccaavafe',''),(3962,1,801,'9','RebeccaavafeGI',''),(3963,1,801,'4','(313) 547-1175',''),(3964,1,801,'3','winbabystems2@gmail.com',''),(3965,1,801,'6','Gifts for everyone - http://link-world.xyz/WIVrH',''),(3966,1,802,'8','JosephBar',''),(3967,1,802,'9','JosephBarCP',''),(3968,1,802,'4','(106) 246-6417',''),(3969,1,802,'3','manfredmullner@yahoo.de',''),(3970,1,802,'6','Earnings from $ 800 to $ 3000 for 20 minutes of work per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1zTyj&sa=D&Se=Lq&usg=AFQjCNHZfOPKGVlcnav4-AbmcYguQJPTpQ   <<<<<<<<<<<<<',''),(3971,1,803,'8','JosephBar',''),(3972,1,803,'9','JosephBarCP',''),(3973,1,803,'4','(657) 033-0627',''),(3974,1,803,'3','toso@freenet.de',''),(3975,1,803,'6','Way To Earn $50,000 Per Week In Passive Income   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1Jpm9&sa=D&Jw=Jo&usg=AFQjCNFNXiQzR3mOlLz5uPPPjn9P7qcpUA   <<<<<<<<<<<<<',''),(3976,1,804,'8','Graig',''),(3977,1,804,'9','WILSON',''),(3978,1,804,'4','(303) 800-6255',''),(3979,1,804,'3','sales1@astrologicalstudio.com',''),(3980,1,804,'6','Are you and your mate a good match? Find out with a Romantic Compatibility Report, your best resource for a romantic comparison. Recently called \"the best chart comparison report on the market\" by American Astrology magazine. Compares the charts of two individuals using the synastry, or inter-aspects. Includes a colorful bi-wheel chart with complete interpretations. What is it about them that\'s so appealing? Why do they make you laugh as no one else can? Do you have long-term potential? How can you help each other grow? Whether it\'s a new flirtation or a lifelong partnership, your stars light the way to a deeper understanding of yourself, your lover, and your relationship. Find out why American Astrology magazine calls it \"the best chart comparison report on the market.\" Discover your lover...   Please visit our site https://astrologicalstudio.com for more information. We will be delighted to hear from you. Have a great day. Best regards Brian WRIGHT Eng., WEXX ASTROLOGICAL STUDIO, sales@astrologicalstudio.com, https://astrologicalstudio.com',''),(3981,1,805,'8','JosephBar',''),(3982,1,805,'9','JosephBarCP',''),(3983,1,805,'4','(076) 205-5117',''),(3984,1,805,'3','njusja@gmx.de',''),(3985,1,805,'6','How I Earn $1500 A Day - Passive Income   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1Jpm9&sa=D&Nt=Ga&usg=AFQjCNFNXiQzR3mOlLz5uPPPjn9P7qcpUA   <<<<<<<<<<<<<',''),(3986,1,806,'8','Marcogluro',''),(3987,1,806,'9','MarcogluroDG',''),(3988,1,806,'4','(034) 327-5713',''),(3989,1,806,'3','ahmedkirillov5@gmail.com',''),(3990,1,806,'6','BLACK GUYS FUCK WHITE WOMAN --> 4erteg.ru \r\n[url=http://4erteg.ru/]Detail[/url]:  [url=http://4erteg.ru/]http://4erteg.ru/[/url]  http://4erteg.ru/ <a href=\"http://4erteg.ru/\">http://4erteg.ru/</a>',''),(3991,1,807,'8','YuriyAlekseevich',''),(3992,1,807,'9','YuriyAlekseevich',''),(3993,1,807,'4','(262) 373-3287',''),(3994,1,807,'3','mumoves@erushi.bizml.ru',''),(3995,1,807,'6','Желаете \"убить\" сайт вашего конкурента? С нашими услугами это просто сделать. \r\nИспользуются продвинутые технологии, только проверенные тысячами проектов: \r\n- Ликвидируем онлайн-ресурсы по каким угодно ключам. \r\n- 300000-400000 спамных беклинков. \r\n- Спамим главную электронную почту фирмы письмами регистраций на сомнительных ресурсах \r\n- Устранение позиций сайта в поисковике по самым коммерческим ключевым словам. \r\n- Применяются секретные технологии. Это известно лишь нашим экспертам. Опыт работы больше 10 лет. \r\n- 100% гарантия возврата денег через три месяца. \r\n- Полная отчётность. \r\n- Абсолютная секретность вашего заказа. Никто про нашу деятельность не сможет узнать. \r\n \r\nСтоимость  70$ \r\n \r\nПолная отчётность. \r\n \r\nОплата: Киви, Yandex.Money, Bitcoin, Visa, MasterCard... \r\n \r\nTelgrm: @exrumer \r\nSkype: xrumer.pro \r\nWhatsApp: +7(977)536-08-36 \r\nмаил: support@xrumer.cc \r\n \r\nРаботаем со Студиями!',''),(3996,1,808,'8','JosephBar',''),(3997,1,808,'9','JosephBarCP',''),(3998,1,808,'4','(860) 773-8342',''),(3999,1,808,'3','ispartali1966@hotmail.de',''),(4000,1,808,'6','Smart Passive Income Ideas 2020 - $70000 Per Month   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1Jpgr&sa=D&Ce=Mi&usg=AFQjCNFtc0f-Znle2hYDkjNlqovjfh5SnQ   <<<<<<<<<<<<<',''),(4001,1,809,'8','JanetoremI',''),(4002,1,809,'9','JanetoremITB',''),(4003,1,809,'4','(857) 657-4511',''),(4004,1,809,'3','janetallen@dsl.pipex.com',''),(4005,1,809,'6','Hello, \r\n \r\nBest music download private server: https://0daymusic.org \r\nMP3/FLAC, Label, LIVESETS, Music Videos, TV Series. \r\n \r\nGenre: House, Club, Techno, Trance, Dance, Italo-Dance, Eurodance, Drum and Bass, Psychedelic, Goa, PsyTrance, Progressive House, Electro, Euro-House, Club-House, Hardtechno, Tech-House, Dutch House, Minimal, Deep-House, Nu-Disco, Hardstyle, Hardcore, Jumpstyle, Electronic, Alternative, Alternative Rock, Ambient, Avantgarde, Ballad, Bass, Beat, Black Metal,Blues, Classical, Chanson, Country, Dance Hall, Death Metal, Disco, Ethnic, Folk, Folk-Rock, Funk, Gangsta Rap, Gothic Rock,Hard Rock, Heavy Metal, Hip-Hop, Indie, Industrial, Instrumental, Jazz, Jungle, Pop, Rock, Metal, Latin, Lo-Fi, New Age, Noise, Oldies, Pop-Folk, Progressive Rock, Psychedelic Rock, Punk Rock, Rap, Reggae, R&B, Rock & Roll, Soul, Soundtrack, Speech, Synthpop, Thrash Metal, Top 40. \r\n \r\nBest regards, \r\n0day MP3s',''),(4006,1,810,'8','JosephBar',''),(4007,1,810,'9','JosephBarCP',''),(4008,1,810,'4','(323) 665-6002',''),(4009,1,810,'3','vr6_racing@hotmail.fr',''),(4010,1,810,'6','Your bank account received a payment of $ 366000. Take your money urgently   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1Jpgr&sa=D&Br=Cr&usg=AFQjCNFtc0f-Znle2hYDkjNlqovjfh5SnQ   <<<<<<<<<<<<<',''),(4011,1,811,'8','Lara',''),(4012,1,811,'9','Gorton',''),(4013,1,811,'4','(213) 558-6156',''),(4014,1,811,'3','lara@bizvideo.link',''),(4015,1,811,'6','Hey, great site!\r\n\r\nHave you thought about adding a video in response to COVID-19?\r\n\r\nWe can make one for you: \r\nhttps://www.bizvideo.link/success/?=mannplumbingandheating.com\r\n\r\nCustomers are worried right now. A short video like this can make a big impact for your business in the long term. People will remember it!\r\n\r\nBe well,\r\nLara\r\n\r\nP.S. Due to coronavirus, we have also lowered our prices by up to 55%. \r\n\r\n\r\n\r\n\r\n\r\n\r\n- This commercial message sent from PJLK Marketing LC\r\n410 E Santa Clara Street STE 817\r\nSan Jose, CA 95113\r\n\r\nTo unsubscribe click here:\r\nhttps://bizvideo.link/out.php/?site=mannplumbingandheating.com',''),(4016,1,812,'8','Dawn',''),(4017,1,812,'9','Setzer',''),(4018,1,812,'4','(818) 237-8395',''),(4019,1,812,'3','desetzer@outlook.com',''),(4020,1,812,'6','I am considering having a gas line run to my 1989 house for a furnace, water heater, range, dryer, and fireplace. Your company was one of the qualified contractors whose names I got from Columbia Gas. Could you contact me to discuss the process of getting an estimate for this work? Many thanks.',''),(4021,1,813,'8','Branther',''),(4022,1,813,'9','BrantherLW',''),(4023,1,813,'4','(511) 356-0011',''),(4024,1,813,'3','soultanfes@hotmail.fr',''),(4025,1,813,'6','Elon Musk distributes 5,000 Bitcoins \r\n \r\nTesla started the campaign for the distribution of bitcoins from yesterday. The action says that only 5,000 bitcoins will be distributed, but one of the commentators said that in fact, Elon Musk intends to distribute 25,000 bitcoins. \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Be=Kg&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw \r\nToday I sent 3 Bitcoins to Tesla and received 6 Bitcoins back !!! Bitcoins are returned doubled. The company\'s website keeps statistics in real time, who sent and received how many bitcoins in double the amount. \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Kw=Aw&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw \r\nToday I intend to send 3 more bitcoins and quit my annoying job, I also handed out all my debts and looked after myself a brand new BMW X5 in a car dealership. Hurry up and you, because there are a lot of people who want to and everyone wants to get double profits just like that. \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Gh=Fe&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw',''),(4026,1,814,'8','Sarah',''),(4027,1,814,'9','Vasel',''),(4028,1,814,'4','(717) 352-3737',''),(4029,1,814,'3','sarah@ockeraccounting.com',''),(4030,1,814,'6','Hello.  We have an on-going issue with water in the basement, and I know someone was out before to address it.  However, it hasn\'t rained in several days and there\'s about an inch of standing water throughout the basement.  I\'m guessing the sump pump is not operational.  I\'m not sure how long the water has been down there, we don\'t venture into the basement too frequently.  Could we have someone come take a look at this?',''),(4031,1,815,'8','Eric',''),(4032,1,815,'9','Jones',''),(4033,1,815,'4','(555) 555-1212',''),(4034,1,815,'3','eric.jones.z.mail@gmail.com',''),(4035,1,815,'6','My name’s Eric and I just came across your website - mannplumbingandheating.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like mannplumbingandheating.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(4036,1,816,'8','Joshua',''),(4037,1,816,'9','Moore',''),(4038,1,816,'4','(202) 991-6766',''),(4039,1,816,'3','joshua@fastbizfunding1.xyz',''),(4040,1,816,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nI just have one quick question for you.\r\n\r\nWould you consider a Working Capital Loan for your Business if the price and terms were acceptable?\r\n\r\nIf so, we can provide you with a funding decision is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.fastbizfunding1.xyz\r\n\r\nAlso, please check out this video to see how our program works, and all the funding options we have available for you.  www.fastbizfunding1.xyz/video\r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nJoshua Moore\r\nFast Biz Funding\r\nwww.fastbizfunding1.xyz\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.fastbizfunding1.xyz/unsubscribe,\r\n\r\nor write to:\r\n\r\nFast Biz Funding\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(4041,1,817,'8','Philipfap',''),(4042,1,817,'9','PhilipfapWV',''),(4043,1,817,'4','(340) 322-8353',''),(4044,1,817,'3','ligalite@hotmail.fr',''),(4045,1,817,'6','Elon Musk 5,000 BTC Giveaway! \r\nDue to the fact that Tesla has stopped selling cars for Bitcoins. \r\nElon Musk decided to distribute 5,000 Bitcoins per week for a month. \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Xt=Vd&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw \r\nMore than 500 people have already taken part in this action and they received the promised bitcoins from Elon Musk. \r\nHurry up, otherwise you may not be enough ... \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Gs=Lu&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw',''),(4046,1,818,'8','YuriyAlekseevich',''),(4047,1,818,'9','YuriyAlekseevich',''),(4048,1,818,'4','(461) 116-2183',''),(4049,1,818,'3','mumoves@erushi.bizml.ru',''),(4050,1,818,'6','Готовы предложить профессиональную услугу: \r\n\"Устранение веб-сайтов мошенников или конкурентов!\" \r\nКаким способом это можно реализовать?! \r\n- Наш опыт - больше десяти лет. \r\n- Используем секретные схемы. \r\n- Наращивание большой ссылочной массы при помощи вирусных ссылок. \r\n- Все поисковики мгновенно реагируют на наши применяющиеся технологии. \r\n- Размещенные тексты на сайте спамятся, что делает их неуникальными. \r\n- У нас серьезные возможности и практический опыт в данном направлении. \r\n \r\nСтоимость  70$ \r\n \r\nПолная отчётность. \r\n \r\nОплата: Киви, Yandex.Money, Bitcoin, Visa, MasterCard... \r\n \r\nТелегрм: @exrumer \r\nSkype: xrumer.pro \r\nWhatsApp: +7(977)536-08-36 \r\nэлектронка: support@xrumer.cc \r\n \r\nРаботаем со Студиями!',''),(4051,1,819,'8','Philipfap',''),(4052,1,819,'9','PhilipfapWV',''),(4053,1,819,'4','(066) 328-3773',''),(4054,1,819,'3','tcnepe@gmail.com',''),(4055,1,819,'6','Elon Musk 5,000 BTC Giveaway! \r\nDue to the fact that Tesla has stopped selling cars for Bitcoins. \r\nElon Musk decided to distribute 5,000 Bitcoins per week for a month. \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Cw=Dp&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw \r\nMore than 500 people have already taken part in this action and they received the promised bitcoins from Elon Musk. \r\nHurry up, otherwise you may not be enough ... \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Xd=Xp&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw',''),(4056,1,820,'8','Philipfap',''),(4057,1,820,'9','PhilipfapWV',''),(4058,1,820,'4','(221) 106-1425',''),(4059,1,820,'3','gualiar78@aol.com',''),(4060,1,820,'6','Elon Musk 5,000 BTC Giveaway! \r\nDue to the fact that Tesla has stopped selling cars for Bitcoins. \r\nElon Musk decided to distribute 5,000 Bitcoins per week for a month. \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Gh=Xi&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw \r\nMore than 500 people have already taken part in this action and they received the promised bitcoins from Elon Musk. \r\nHurry up, otherwise you may not be enough ... \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Za=Af&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw',''),(4061,1,821,'8','Caron',''),(4062,1,821,'9','Sanders',''),(4063,1,821,'4','(570) 274-5893',''),(4064,1,821,'3','caronrsanders@gmail.com',''),(4065,1,821,'6','I would like schedule service on our septic. We live at 6669 Bent Oak Drive Fayetteville, PA.\r\n\r\nThanks!\r\nCaron Sanders',''),(4066,1,822,'8','Philipfap',''),(4067,1,822,'9','PhilipfapWV',''),(4068,1,822,'4','(506) 708-2566',''),(4069,1,822,'3','michiekato@yahoo.com',''),(4070,1,822,'6','Elon Musk 5,000 BTC Giveaway! \r\nDue to the fact that Tesla has stopped selling cars for Bitcoins. \r\nElon Musk decided to distribute 5,000 Bitcoins per week for a month. \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Lq=Dd&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw \r\nMore than 500 people have already taken part in this action and they received the promised bitcoins from Elon Musk. \r\nHurry up, otherwise you may not be enough ... \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Fs=Cq&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw',''),(4071,1,823,'8','MichaelFic',''),(4072,1,823,'9','MichaelFicMM',''),(4073,1,823,'4','(166) 648-2185',''),(4074,1,823,'3','njl1165@hotmail.com',''),(4075,1,823,'6','Elon Musk 5,000 BTC Giveaway! \r\nDue to the fact that Tesla has stopped selling cars for Bitcoins. \r\nElon Musk decided to distribute 5,000 Bitcoins per week for a month. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Kg=Ga&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ \r\nMore than 500 people have already taken part in this action and they received the promised bitcoins from Elon Musk. \r\nHurry up, otherwise you may not be enough ... \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Cp=Ky&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ',''),(4076,1,824,'8','Mike Walker',''),(4077,1,824,'9','Mike Walker',''),(4078,1,824,'4','(047) 846-5554',''),(4079,1,824,'3','see-email-in-message@monkeydigital.co',''),(4080,1,824,'6','Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your mannplumbingandheating.com website? \r\nHaving a high DA score, always helps \r\n \r\nGet your mannplumbingandheating.com to have a DA between 50 to 60 points in Moz with us today and rip the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.co/product/ahrefs-DR50-UR70/ \r\n \r\n \r\nthank you \r\nMike Walker\r\n \r\nsupport@monkeydigital.co',''),(4081,1,825,'8','IrinaOlegovna',''),(4082,1,825,'9','IrinaOlegovna',''),(4083,1,825,'4','(005) 764-3864',''),(4084,1,825,'3','biocharbring@prosninssculhart.bizml.ru',''),(4085,1,825,'6','Желаете забанить интернет-ресурс конкурента? С нами это можно очень просто выполнить. \r\nИспользуем действенные технологии, только проверенные не одним проектом: \r\n- Устраняем сайты по каким угодно ключам. \r\n- 300000-400000 спамных беклинков. \r\n- Спамим основной e-mail организации письмами с сомнительными рассылками \r\n- Понижение позиций сайта в поисковиках по любым коммерческим ключевым фразам. \r\n- Применяются уникальные методы. Десятилетний опыт работы. \r\n- Стопроцентно гарантируем возврат денежных средств через 3 месяца. \r\n- 100% отчётность. \r\n- Конфиденциальность вашего заказа. Никто про нашу деятельность не узнает. \r\n \r\nСтоимость услуги  $80 \r\nПолная отчётность. \r\nОплата: Киви, Яндекс.Деньги, Bitcoin, Visa, MasterCard... \r\n \r\nTelgrm: @exrumer \r\nSkype: xrumer.pro \r\nWhatsApp: +7(977)536-08-36 \r\nэлектронка: support@xrumer.cc \r\n \r\nРаботаем со Студиями!',''),(4086,1,826,'8','Francis',''),(4087,1,826,'9','Jamieson',''),(4088,1,826,'4','(805) 372-1751',''),(4089,1,826,'3','francis.jamieson@alexabusinessdirectory.link',''),(4090,1,826,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://alexabusinessdirectory.link/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\n \r\n\r\n \r\nFrancis\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\n2764 Pleasant Road Suite        Suite A PMB 708        Fort Mill        SC        29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://alexabusinessdirectory.link/out.php?site=mannplumbingandheating.com',''),(4091,1,827,'8','Daviddes',''),(4092,1,827,'9','DaviddesRA',''),(4093,1,827,'4','(744) 423-3648',''),(4094,1,827,'3','fuckkk@yahoo.com',''),(4095,1,827,'6','Now Elon Musk is giving away 35,000 Bitcoins! Manage to get your bitcoins. \r\nElon Musk handed out 5,000 bitcoins last week. \r\nDue to this action, people have increased interest in Tesla and car sales have grown 4 times. \r\nThis action was attended by 2,975 people. \r\nStarting this week, Elon Musk has decided to give away 35,000 Bitcoins! \r\nHurry up while the promotion has just started. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc24NxR&sa=D&Xf=Vq&usg=AFQjCNHFDrOrotnkWz-aKLK5PDtwSFBYXA \r\nI have already sent 5 bitcoins and received 13 bitcoins back, which is more than 2 times. \r\nI have already distributed all the debts and quit my job. \r\nNow I want to buy a house and a brand new BMW from future profits. \r\nTomorrow I will send 9 Bitcoins already. \r\nHurry up to get your Bitcoins, I have never seen such a freebie. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc24NxR&sa=D&Li=Xi&usg=AFQjCNHFDrOrotnkWz-aKLK5PDtwSFBYXA',''),(4096,1,828,'8','Ross',''),(4097,1,828,'9','С',''),(4098,1,828,'4','(114) 813-0686',''),(4099,1,828,'3','ross@rankguarantee.com',''),(4100,1,828,'6','Hey, quick question—figured the contact form was easiest. If I could get you on page 1 of Google for your entire service area and you\'d only pay if we were able to, would that be something you\'d have a couple minutes to chat about? Here’s a 4-minute video that I made explaining exactly how we do it: http://www.rankguarantee.com/ (and yes, we’re US-based, have no contracts, and actually do what we say we’re going to do) … watch the couple minute video then let me know!',''),(4101,1,829,'8','FreddieStinc',''),(4102,1,829,'9','FreddieStincJL',''),(4103,1,829,'4','(863) 076-7531',''),(4104,1,829,'3','dubrowne@aol.com',''),(4105,1,829,'6','Now Elon Musk is giving away 5,000 Bitcoins! Manage to get your bitcoins. \r\nElon Musk handed out 5,000 bitcoins last week. \r\nDue to this action, people have increased interest in Tesla and car sales have grown 4 times. \r\nThis action was attended by 2,975 people. \r\nStarting this week, Elon Musk has decided to give away 5,000 Bitcoins! \r\nHurry up while the promotion has just started. \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Kh=Dp&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw \r\nI have already sent 5 bitcoins and received 13 bitcoins back, which is more than 2 times. \r\nI have already distributed all the debts and quit my job. \r\nNow I want to buy a house and a brand new BMW from future profits. \r\nTomorrow I will send 9 Bitcoins already. \r\nHurry up to get your Bitcoins, I have never seen such a freebie. \r\nhttps://www.google.com/url?q=https%3A%2F%2Ffdgdfgfgdhd.blogspot.com%2F&sa=D&Su=Ct&usg=AFQjCNELj2KjBSHMk8MxDZiwZJf3mujXQw',''),(4106,1,830,'8','Yahoo',''),(4107,1,830,'9','Yahoo',''),(4108,1,830,'4','(713) 628-3127',''),(4109,1,830,'3','press@yahoo.com',''),(4110,1,830,'6','Most profitable cryptocurrency miners has been released : \r\nDBT Miner: $7,500 (Bitcoin), $13,000 (Litecoin), $13,000 (Ethereum), and $15,000 (Monero) \r\n \r\nGBT Miner: $22,500 (Bitcoin), $39,000 (Litecoin), $37,000 (Ethereum), and $45,000 (Monero) \r\nRead more here : \r\nhttps://www.yahoo.com/now/bitwats-release-most-profitable-asic-195600764.html',''),(4111,1,831,'8','Sierra',''),(4112,1,831,'9','Marshall',''),(4113,1,831,'4','(191) 747-4598',''),(4114,1,831,'3','Marshallhd585@yahoo.com',''),(4115,1,831,'6','Hello!\r\n\r\nMy name is Sierra.\r\n\r\nYour website or a website that your company hosts is infringing on a copyright-protected images owned by myself.\r\n\r\nTake a look at this document with the links to my images you used at www.mannplumbingandheating.com and my earlier publications to get the evidence of my copyrights.\r\n\r\nDownload it now and check this out for yourself: \r\n\r\nhttps://sites.google.com/view/v9hfk4hvb4ov-38vb5njnvbq/drive/folders/shared/1/download?l=49016709465732604 \r\n\r\nI believe you have willfully infringed my rights under 17 U.S.C. Section 101 et seq. and could be liable for statutory damages as high as $150,000 as set forth in Section 504(c)(2) of the Digital Millennium Copyright Act (”DMCA”) therein.\r\n\r\nThis letter is official notification. I seek the removal of the infringing material referenced above. Please take note as a service provider, the Digital Millennium Copyright Act requires you, to remove or disable access to the infringing materials upon receipt of this notice. If you do not cease the use of the aforementioned copyrighted material a lawsuit will be commenced against you.\r\n\r\nI have a good faith belief that use of the copyrighted materials described above as allegedly infringing is not authorized by the copyright owner, its agent, or the law.\r\n\r\nI swear, under penalty of perjury, that the information in the notification is accurate and that I am the copyright owner or am authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.\r\n\r\n\r\nBest regards,\r\nSierra Marshall\r\n\r\n05/20/2021',''),(4116,1,832,'8','JosephBar',''),(4117,1,832,'9','JosephBarCP',''),(4118,1,832,'4','(517) 426-5275',''),(4119,1,832,'3','anrocks1996@live.com.au',''),(4120,1,832,'6','Acquiring financial independence. Invest $ 566 and get passive income of $ 4100 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Ag=Gf&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ   <<<<<<<<<<<<<',''),(4121,1,833,'8','Eric',''),(4122,1,833,'9','Jones',''),(4123,1,833,'4','(555) 555-1212',''),(4124,1,833,'3','eric.jones.z.mail@gmail.com',''),(4125,1,833,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(4126,1,834,'8','POLICE WON’T HELP 2 Serial Bully women and one of their exhusband’s software company are calling up CEOs and companies to bully a woman and the community around her.  Evidence in two text messages with two of the bullies.  Saying bad things not a crime San Marcos Sheriff’s Department',''),(4127,1,834,'9','Thorn',''),(4128,1,834,'4','(760) 345-3455',''),(4129,1,834,'3','jen@gmail.com',''),(4130,1,834,'6','Contact your local FBI and the San Diego FBI if you have been solicited.\r\n\r\nPOLICE WON\'T HELP - 2 Serial bully women and one of their exhusband\'s wealthy software company are calling up CEOs and companies to bully a woman and the community around her. Evidence in two text messages with two of the bullies. Saying bad things not a crime San Marcos Sheriff’s Department.\r\n\r\nPlease pass this on to your Corporate office and to businesses nearby as we cannot reach all of them. This case and evidence has been submitted to the San Diego FBI with the help of House of Representative Duncan Hunter\'s office in a Congressional Inquiry asking the FBI to investigate. This has yet to be taken seriously and unfortunately the House of Representatives does not have jurisdiction over the FBI. If you have been solicited and believe this behavior can cause the death of this woman or the accidental death of those around her; or is a civil rights violation of this woman and the community around her as the result of the unsupervised protest of large groups of people coming in from all over into the community, which is also contrary to the purpose of this semi community shutdown period;  please submit information directly to the LOCAL San Diego FBI online.  It is believed these people are meaning to harm this woman as they send people to her home asking people to block and charge their cars at this woman while she is driving.  People are coming through this neighborhood and are waiting near or in front of this woman’s house.  Some may view this as a viral threat bringing an increased amount of potential viral carriers into the community.  These areas are the responsibility of the FBI. Messages left with the National FBI call center may or may not be sent to the local site however you can submit to both. To ensure that you have been heard contact the Office of Inspector General 202-514- 3435 who does have authority and does oversee the FBI and can pressure them to open the case that is already sitting on their desk waiting to be investigated. An official complaint has already been made here. It is ideal to let them know the House of Representatives has been involved. Government resources suggest also making a complaint to the U.S.Attorney General 1800-544-1106 and to the White House online. All information given online and by phone can be done anonymously. Thank you for your time.\r\n\r\nFORWARD:\r\n\r\nDear Management Team,\r\n\r\nWe are so sorry to bother you about this. But if you find this to be true from connections or your workers have been solicited particularly from the San Marcos, Carlsbad and Encinitas locations in San Diego, please share this with your other companies and any newly hired worker across San Diego and the United States, and even globally as these people are calling outside the San Diego area and outside the country.\r\n\r\nThey are creating a “gang of companies” telling an untrue made up story, and using their connections to crank call her kids. There are people in this community who are watching these companies come into their area to stalk this lady and are scared. So we are praying for a miracle. We are looking for someone to stand up against this company. The bullies themselves are not bright, but the people who stand behind them are. These two serial bully women will only ‘pick’ on one victim at a time as they are aware if they target more than one, this may allow others to speak up against them. Long term news exposure will keep this bullying group powerless.\r\n\r\nIt is believed if this woman were to move, these people would and could replicate the mobbing/stalking phenomena to the new location while choosing a new target locally to victimize.\r\n\r\nIf they call you, they will ask you to provide poor service or to harass this woman. If they can’t get through to you directly, they may try to contact another worker within your company. Most likely they will not target someone who is not local as they need to have someone close by in order to make their story more believable.\r\n\r\nThe following evidence, even better with this message has been a 100 percent effective in stopping this mobbing/stalking phenomena. The problem is that this company continues to tell this false story to newer companies even when they have lost the support from their older ones by sharing this information.\r\n\r\n======\r\n\r\nTo the community,\r\n\r\n**If you have been called by these people or somehow have been involved, please make a San Diego FBI report by searching for the San Diego LOCAL FBI online and do an online \"Submit a Tip\" - even if it is anonymous. Your message may or may not get to the local San Diego FBI if you submit through a National FBI call site, however you can send information to both. This can also be done anonymously where an FBI Tip can be made online by taking a laptop to a different location i.e. coffee shop, such that your IP address cannot be traced to your home, and do not give your name in your tip.\r\n\r\nIf you notice strange things going on in your area as a result of this contact the FBI in your city and the local police.\r\n\r\nWitnesses to the bullying want nothing to do with this situation as the bullies live within a reachable distance. The police won’t do anything unless things turn physical. ONLY if you have been solicited by these people, you can ask the San Marcos Sheriff\'s Department why they won\'t investigate this issue. They will tell you that saying bad things about a person is not a crime. In the past year these people already called hundreds of companies to be involved with stalking, bullying and mobbing.  This is a loophole that shines a light on the community’s need for the police and a good police system.\r\n\r\nTell the Local FBI your story as you know it. This is mass harassment and creates an unsafe environment. It is important to give the information that they are asking the public to do which is mobbing and stalking.\r\n\r\nThere are many books on this phenomena if you google \"Mobbing.\"\r\n\r\nThere has been a situation where a tall, large white male and a small mixed asian lady, both parents, and possibly accompanied by a third tinier asian lady, have created a heart-felt hate story to anger individuals and their friends in order to bully a woman whose children attend one of our local San Diego North County schools since 2012. A fourth small white woman, was also involved but moved from this school. The driving force of this group is from (2) two of the women, believed to be serial bullies, who have managed to keep the loyalty of the other two parents in their group. They are giving out the bullied woman’s picture as well as the make of her car information. Keep in mind that their target may change in the future to a different woman or man. They may continue doing this for the next few years to come.\r\n\r\nThey are lying to the ex-husband(or soon to be ex-husband)/and their friends, and their friends’ friends, etc. They are their main supporters. The ex-husband is part of a big computer software company. No one on their end has asked for the other side of the story but only assume the bullies’ story to be true.\r\n\r\nThey are known to not be truthful as evidence is contained in two (2) detailed, and long sets of messages texted between the bullied woman and two members of this bullying group that contradicts their story. NONE of the bully group supporters know what is in these messages including the exhusband.\r\n\r\nOne of the messages can be viewed here. It discusses the victim asking one serial bully why she hung around people (ones accusing her) who made her cry; gave her dirty looks; that their kid kicked her kid in the stomach and didn’t do anything about it. The bully admitted this was true. It discusses how the victim and bully were friends for the year and the bully suddenly dropped their friendship at the end of the year. It also discusses later on that the bully and her other friends started making up stories about the victim in the school community and the victim said she wanted nothing to do with them.\r\n\r\nhttps://m.facebook.com/profile.php?id=100011656546654\r\n\r\nIf you have trouble opening the link, type in the google search:\r\n“Mallory Snow Facebook Anchorage Alaska,” click on the first “Mallory Snow Profiles/Facebook” link, scroll down to the approximately 9th or possibly earlier/later picture of a purplish/white wintry scene of a lake and open. Or do a Facebook search on your profile site.\r\n\r\nThey have since moved from this community and found BRAND NEW connections with individuals in the surrounding areas to rally people to come bully this woman, and encourage stalking behaviors from people in order to “keep an eye” on this woman from causing “trouble” at the school. They are also now asking these same companies to look for work from the neighbors on her street. They may ask people to work at places where she eats, shops, etc.\r\n\r\nMany have behaved badly without asking for the woman’s side of the story or evidence; without seeing any of the behaviors claimed by these three individuals; and without knowing anything about the woman at all. If one is to come across this group of people, it is suggested to advise this group to seek a restraining order legally, instead of offering to help them bully this mother as they are skilled at preying on the sympathy of the public. The bullies will lie even when caught in a lie, and play on the sympathetic ear’s belief in friendship in order to manipulate people to do their bidding.\r\n\r\nLet the exhusband\'s company know that they should try talk to this victimized woman and her husband like grown ups and get the other side of the story first, before they try to rally the community against her. They are representing their company and should try to do so with integrity.\r\n\r\nThese people are calling also calling up CEOs. If you find this to be true please share this with your brother/sister companies throughout the United States and globally as these people are calling outside of the San Diego area and out of country. If you are part of a company, share this with your workers and every new worker that comes on board.\r\n\r\nIf you are on the receiving end of this message please look to your left and right and share this with any business, apartment, or home next door and ask them to pass the information down. Please share with all residents in your apartment complex/neighborhood on your street. And finally, feel free to share with your customers/workers, businesses in your plaza/street, and encourage people/friends to share with their own company CEOs. If you find this to be true, we would appreciate if your friends are able to speak to the businesses around their own work place. We are hoping to educate everyone about the mobbing and gangstalking that is taking place in North County San Diego.\r\n\r\nIf you bump into someone such as a delivery truck worker who has not heard the story and doesn’t know the truth, tell them this version of the story if you feel comfortable and are not in any safety risk. Many have been asked to not read these messages and may feel obligated to not read them or to listen to you. When you share this, it is HIGHLY suggested to start off as, \"The police won\'t help this woman so I am sharing this with you.\" Thank you.\r\n\r\nOPTIONS/SUGGESTIONS/POINTS TO THINK ABOUT:\r\n\r\n1) Instead of stalking and bullying, those concerned can get their friends together and offer to pick a random week and accompany any member of this serial bullying group for 7 days to observe any interactions between this group and this woman. Concerned individuals can continue to pick another 7 days over and over again at random times. What they will find is that the incidences that this group claims against this woman would be zero (0) for that week and every week that their interactions are observed, and they would be caught in their lie. This is a logical solution and option.\r\n\r\n2) If bad actions are encouraged by a person/group even when the story sounds “justified,” what kind of moral intent does one think this person/group truly has?\r\n\r\n3) Recommend that these people hire a body guard to 24/7 as they can afford it and be “camera ready” - keeping in mind that people should “see things for themselves” before they bully or stalk an individual they don’t know and who claims their story to be untrue.\r\n\r\nIf they are seeking help from your community, one should ask the question, “why are they not seeking help from all individuals in their own immediate community? And why is it so necessary to seek help from areas located communities away or even further?” The answer: They are looking for everyone and anyone to mob this individual because they are losing local support.\r\n\r\nIt is not encouraged to treat the children of this bully group poorly, as the children are innocent victims of their parents’ behavior. It is best to emotionally support and guide these children where possible. The same should be given to all children as they are our next generation.\r\n\r\nBelow are part of articles related to this situation as well as the links for reference.\r\n\r\nThis phenomena is one that perhaps not many are aware of. That is the existence of the serial bullying/serial gang bullying and mobbing. But first of all, what is a serial bully? There is the physically aggressive and the non-physically aggressive serial bully. We will talk about the non-physical type here. This video shows not exactly the same, but is very similar to the effects of a serial bully. A Verizon employee talks about bullying from bosses who have mental pathology.\r\n\r\n1). https://www.youtube.com/watch?v=bid5DK97rq8\r\nNeal Dias at NPC, 10/15/2012\r\nwww.youtube.com\r\nNeal Dias, Verizon-displaced bullied target, supports WBI, Healthy Workplace Bill, and Freedom From Workplace Bullies Week, National Press Club, Oct. 15, 2012. Tells ...\r\nA serial bully is an individual who bullies and has a history of targeting an person through methods of bullying that is difficult to prove. For example, dirty looks, gossiping and spreading rumors. Serial bullies enjoy pitting people against each other. The serial bully takes this bullying to the next level as they will constantly, and incessantly go after a particular ‘target,’ at times regardless of the consequences. They will not stop until that individual has a breakdown or leaves the establishment. When that individual breaks down or leaves the establishment, they will select the next target person.\r\n\r\nSerial bullies are not to be mistaken for serial killers. This type of serial bully operates and stays below radar level while engaging in anti-social behaviors. That is, they do not wish to be involved with the law or with the police and often times wish to keep a very good appearance to the public. They are masters of blending in with people and can look pleasing to a group of persons they are trying to impress. It is the first person who sees past this facade who will receive the wrath of the serial bully. The serial bully fears being exposed and targeting the one individual is their way of neutralizing them. They will work on one individual at a time. They will have difficulty to keep from targeting the individual even when there are ‘healthier’ avenue options.\r\n\r\nTim Field is the leader in studying the serial bully in the UK and primarily those in the workforce. From his studies he found that 1 out of 31 individuals is a particular kind of bully. See the attached links. He states that although he studied these individuals in the work place, this could happen anywhere in the community. Many current magazines or news articles will reference Tim Field’s work. A serial bully can have a personality disorder or is an actual sociopath.\r\n\r\nMany people are surprised to find that adults too can be bullies. When a serial bully gets their friends to gang up on an individual and involves more than just two people, this becomes a gang bullying group. As another article states below, co-workers who realize there is a bully in their midst may also join in the bullying tactics so they do not become a target themselves. For example, direct neighbors of the serial bully may join the bullying group such that they do not become a target.\r\n\r\nThis is possibly a rising trend in our society. It has historical roots, as we all know the infamous Salem Witch Trials where a group of young girls claimed to be plagued by the devil and pointed out ‘devil worshippers.‘ Their power was generated from the people using their fear which resulted in mobbing.\r\n\r\nIn conclusion, it is important to understand, that in order to not be part of a mobbing crowd, it is best to judge a situation with your own eyes without the influence of what a group might say. Or, to hear all sides of the story before sending that individual ‘to the stake’ so to speak, as it should be in any court system. When given the opportunity to hear people’s stories, one may be shocked to find that there is clear evidence that an individual is indeed being gang mobbed.\r\n\r\nHow does one protect themselves from serial bullying themselves? It would be beneficial for the community to band together not against the bullies themselves per se, but more to band together as a community from participating in bullying behaviors.\r\n\r\n2). http://bullyonline.org/index.php/bullies/5-serial-bully\r\nSerial Bully bullyonline.org\r\n\"Serial Bully\" is a term that Tim Field coined to describe the character he realised was behind the majority of cases that came to his attention when he ran the UK ...\r\n\r\nClick the “continue reading” button in each section to open up the link with more information.\r\n\r\nSerial Bully\r\n\"Serial Bully\" is a term that Tim Field coined to describe the character he realised was behind the majority of cases that came to his attention when he ran the UK National Workplace Bullying Advice Line between 1996 and 2004. Callers described similar character traits, patterns of behaviour and events indicating that, in a given workplace, there was usually one person responsible for the bullying, for whom bullying was a modus operandi.\r\n\r\nTim observed that when one target left the bully\'s environment, the bully would then focus their obnoxious behaviour on someone else; the new target would eventually leave and another would unwittingly take their place, hence the term \"serial bully\".  Tim\'s ground-breaking insights and their value to society are recognised by the Tim Field Foundation, which is grateful for the privilege of preserving, refining and building upon Tim Field\'s original work.\r\n\r\nIntroduction\r\nA serial bully could be anyone. They are attracted to positions of authority and trust, but that does not mean that everyone in such a position is a serial bully. Also, not every serial bully is in a position of authority or trust. They cannot be identified by their status, but by their conduct.\r\n\r\n(These illustrations alternately use masculine and feminine pronouns; A serial bully could equally be male or female.) This is a person who mercilessly mistreats one person after another, but whose depravity appears to be constrained by the understanding that he has to appear to behave decently if he is to blend in with civilised people. Rather than using physical violence, he abuses people with methods that are harder for onlookers to recognise such as abusing the authority that comes with his job, emotional blackmail, malicious gossip and one-on-one confrontations when there are no witnesses.\r\n\r\nHe is able to manipulate others\' emotions and perceptions, and does so to get what he wants. He has to impress those whom he thinks will help him maintain or advance his status, and these are likely, at least initially, to perceive him as smooth, charming, accomplished, charismatic and authoritative, and worthy of support, respect and deference. He may gain their respect by exaggerating his achievements and by trying to mimic the behaviour of respectable people. Some onlookers seem to maintain their positive first impression indefinitely, but some only appear to do so because they are frightened of not doing. Others, whom he never thought he had to please, may soon come to regard him as grossly incompetent, deceitful, insensitive, unintelligent, aggressive, ruthless and completely unaware of or indifferent to the effect of his behaviour. These people, the first to see through the charisma, are those he is most likely to pick on, focusing the worst of his aggression on one person at a time.  The serial bully feels threatened by colleagues with competence, integrity and popularity, and sooner or later he picks one out and projects onto them his own inadequacy and incompetence. Using unwarranted criticism and threats, he controls them and subjugates them, without a thought for the contribution they make to the organisation, or their self esteem, self confidence, loyalty or their health. Sooner or later this person - the bully\'s \"target\" - realises that they are not being \"managed\", \"mentored\", \"developed\" or \"investigated\", but \"bullied\", and they start to show signs of intolerance. When this becomes apparent to the bully, sensing that the target might complain to a higher authority and expose his misconduct, he neutralises the target by isolating them and destroying their credibility and reputation among decision-makers and peers, and then putting them out of the picture through dismissal, forced resignation or even early retirement. Once the target has gone, within about two weeks, the bully\'s focus turns to someone else and the cycle starts again.\r\n\r\n3). http://www.overcomebullying.org/mobbing.html\r\nWorkplace Mobbing\r\nMobbing is an Extreme Form of Workplace Bullying that Devastates the Lives of Targets\r\nIn the early 1980s, a Swedish psychologist, Prof. Heinz Leymann, identified a grave threat to health and safety in what appear to be the healthiest, safest workplaces in the world. German was Leymann’s first language, Swedish his second, but he labeled the distinct menace he had found with an English word: mobbing.\r\n- Professor Kenneth Westhues, University of Waterloo\r\nAt the Mercy of the Mob: A Summary of Research on Workplace Mobbing\r\nThe word \"mobbing\" was used by Professor Heinz Leymann, PhD, MD sci, to describe a phenomenon he encountered while researching the social dynamics of the workplace.\r\n\r\n\"Psychological terror or mobbing in working life involves hostile and unethical communication which is directed in a systematic manner by one or more individuals, mainly toward one individual, who, due to mobbing, is pushed into a helpless and defenseless position and held there by means of continuing mobbing activities.\r\n\r\nThese actions occur on a very frequent basis (statistical definition: at least once a week) and over a long period of time (statistical definition: at least six months´ duration). Because of the high frequency and long duration of hostile behavior, this maltreatment results in considerable mental, psychosomatic and social misery. Thus, the definition does not focus too much on the activities themselves, but rather on the heavy mental strain.\r\n\r\nIn other words, the distinction between \"conflict\" and \"mobbing\", to emphasize the concept again, does not focus on what is done or how it is done, but rather on the frequency and duration of whatever is done.\r\nThe scientific definition of the term mobbing thus refers to a social interaction, through which one individual (seldom more than one) is attacked by one or more (seldom more than four) individuals on almost a daily basis and for periods of many months, forcing the person into an almost helpless position with a potentially high risk of expulsion.”\r\n\r\nNot infrequently, mobbing spelled the end\r\nof the target’s career, marriage, health,\r\nand livelihood.\r\n\r\nSome of the worst cases of mobbing go on for much longer periods of time and can actually continue for many years causing severe, sometimes irreparable psychological, emotional and physical health damage. In the worst cases this abuse has lead to suicide (see bullycide) and even incidents of workplace violence.\r\n\"Not infrequently, mobbing spelled the end of the target’s career, marriage, health, and livelihood. From a study of circumstances surrounding suicides in Sweden, Leymann estimated that about twelve percent of people who take their own lives have recently been mobbed at work.\"\r\nKenneth Westhues, Professor of Sociology at the University of Waterloo in Canada, has spent many years researching the mobbing phenomenon and has written several books and articles on the subject.\r\n\r\nIn his article At the Mercy of the Mob: A Summary of Research on Workplace Mobbing Prof. Westhues says, \"Mobbing can be understood as the stressor to beat all stressors. It is an impassioned, collective campaign by co-workers to exclude, punish, and humiliate a targeted worker.\r\n\r\nInitiated most often by a person in a position of power or influence, mobbing is a desperate urge to crush and eliminate the target. The urge travels through the workplace like a virus, infecting one person after another. The target comes to be viewed as absolutely abhorrent, with no redeeming qualities, outside the circle of acceptance and respectability, deserving only of contempt.\r\n\r\nAs the campaign proceeds, a steadily larger range of hostile ploys and communications comes to be seen as legitimate.”\r\n\r\nBullies are very good at convincing others, including coworkers and managers, that the victim deserves the abuse that they are subjected to. As the attacks continue day in and day out the target begins to be worn down and eventually will make a mistake. Perhaps they will have an emotional outburst and lash back at the bully.\r\nThis is stereotypical in mobbing cases and this incident will be used to turn the tables on the target as the bully will loudly proclaim that this proves that the target is the real troublemaker. This often gives management, who have done nothing about the bullying, the opportunity to bring formal disciplinary measures against the target and the victim winds up being the one who is punished.\r\nThis adds insult to injury as the mobbing continues to escalate out of control, especially once managers have gotten onboard with the abuse and have sided with the bully.\r\n\r\n4)https://www.psychologytoday.com/blog/the-winner-effect/201207/why-do-decent-people-bully\r\n\r\nWhy Do Decent People Bully?\r\nWhat happened to Karen Klein?\r\nThe bullying by a group of teenage schoolchildren of a 68-year-old bus monitor names Karen Klein in New York State reached international prominence after its YouTube posting and led to widespread disgust at the teenagers\' behavior.\r\nSeveral of the children expressed apparently genuine remorse afterwards. But why do they behave in this way?\r\nThe great social psychologist Leon Festinger proposed a theory of cognitive dissonance which proposed that we are powerfully motivated to maintain consistency in our thoughts, feelings and actions—in other words to minimize conflict among them. Brain imaging studies have shown the networks involved in sorting out such conflicts [i].\r\n\r\nThis is the logic of cognitive dissonance – that strange need to keep the ego reassured that what is being done is all right and proper and above all consistent. This is, of course, how bullies work. They pick a victim. They then choose someone in the group who has no strong feelings about the victim—maybe they even like them. The bully then gets that person to do some small tease—something which on its own is trivial, perhaps even mildly funny—like a relatively harmless comment directed at Karen Klein.\r\nCognitive dissonance means that they will find it hard to say no when the bully escalates and—implicitly or explicitly—asks them to do something a little bit less innocent, like the more hurtful comments in the escalating abuse of Karen Klein. The dissonance conflict detectors respond in this sort of way: ‘I’m a good person, but I am doing this to them—ergo, they must be a bad person deserving of this. ‘\r\nAnd so we see spiraling situations where more and more people in a group are manipulated by the bully into harassing and mobbing the poor victim—as we saw on that school bus. Most of these children in other circumstances would likely be decent people but unbeknown to them, the bully-leaders had injected conflict into their inconsistency-hating minds, forcing them desperately to balance out the conflict in the only way it can—by concluding that the victim is deserving of all they are getting.\r\n\r\n5).http://psychcentral.com/blog/archives/2013/12/28/bullying-at-work-workplace-mobbing-is-on-the-rise/\r\nBullying at Work: Workplace Mobbing is on the Rise | World ...\r\npsychcentral.com\r\nMobbing is “bullying on steroids,” a horrifying new trend whereby a bully enlists co-workers to collude in a relentless campaign of psychological ...\r\n\r\nBullying at Work: Workplace Mobbing is on the Rise\r\nBy Sophie Henshaw, DPsych\r\n\r\nMobbing is “bullying on steroids,” a horrifying new trend whereby a bully enlists co-workers to collude in a relentless campaign of psychological terror against a hapless target.\r\nTargets are usually anyone who is “different” from the organizational norm. Usually victims are competent, educated, resilient, outspoken, challenge the status quo, are more empathic or attractive and tend to be women, aged 32 to 55. Targets also can be racially different or part of a minority group.\r\nThe target receives ridicule, humiliation, and eventually, removal from the workplace. It leaves the victim reeling with no idea what happened or why. It takes away a person’s safety in the world, dignity, identity and belonging and damages his or her mental and physical health. The effects also radiate outward toward the target’s partner, family, friends and even community.\r\n\r\nBecause an employee is being targeted and criticized, he or she may be seen as a “troublemaker” by others and thus be ignored and isolated by otherwise OK people. Former allies can thus turn against him and he is left socially isolated. They think: “well, he’s being criticized by management, there must be something wrong with him and I don’t want to be tarred by the same brush!”\r\n\r\nGossip and innuendo spread behind closed doors before the target is aware of what’s happening, as previously loyal co-workers are enlisted to provide personal information that substantiates damaging rumors. Often the person instigating the mobbing is emotionally immature and threatened in some way by the target. People with personality disorders often employed tactics such as “splitting,” which pits members of a team against each other in order to exact revenge against a perceived slight or insult by the target.\r\n\r\n6).https://www.linkedin.com/pulse/mobbing-bullying-other-nastiness-terry-howard\r\n\r\nMobbing, bullying and other nastiness!\r\n\r\nThe following post, slightly edited, is a follow up to the previous one, \"Letter to the college student.\" Not only does it address bullying and mobbing in the workplace, it extends to cover such behaviors on college campuses. The reader is urged to read and reread this one carefully, and make it the focal point of a small group discussion in the home, at work or on campus, perhaps during a future fraternity meeting or as a case study during a class in the school of business. -Editor\r\n---------------------------------------------------------------------------------------------\r\nPsssst, hey reader! Got a second?\r\nCan I get you to join me as an invisible partner as I replay my conversation with \"Pat?\" C\'mon, just hop into my pickup truck and we\'ll head to my favorite coffee shop. Along the way I\'ll provide some context. That way you\'ll fully appreciate my conversation with Pat. I promise not to take too much of your time.\r\nNow what I need for you to do, reader, is to reflect on all the nerve wracking stuff that\'s sweeping the globe these days; acts of terrorism, reports of hateful behaviors on college campuses, hazing, sexual violence against women, gang warfare, cyberbullying...and the list goes on. Hold those thoughts for now.\r\nTurning now to \"Pat,\" who stopped me in a hallway a while back. Pat\'s facial expression was covered with anguish. Normally when I smile at someone, I expect a smile in return. This time, however, it became clear right away that would not happen during this unanticipated hallway stop with Pat.\r\n\r\n\"Can we step into a vacant conference room just around the corner?\" Pat asked me, eyes darting nervously up and down the hallway and over my shoulder. Clearly, Pat did not want to be seen huddling with me, I suspect because of all the attention my articles and workshops on eradicating workplace bullying had been getting at the time.\r\n\r\n\"Terry, I was about to send you an e-mail after reading you last column. I\'m still recovering from a devastating recent experience and it has been tough, really tough for me.\" Pat proceeded, describing how giving presentations and presenting alternative positions in the organization have become painful experiences for many. \"There\'s this tendency to shoot the messenger, and the attacks are getting more personal, which has the effect of leaving the presenter with no desire to ever want to present again.\"\r\nDuring the typical presentation, Pat explained, one person in the audience would start asking pointed off-the-wall questions. Others would then quickly chime in, putting the presenter in a helpless and defenseless position. And it would get worse from there.\r\n\"Given a choice, I\'d never want to place myself in that position again, ever! My supervisor was not present during my last presentation but the next level was, and they either sat back and watched or joined in with the rest of them. It was sickening.\" And the most hurtful thing was that some of these same people who treated me so badly during the meeting afterwards smiled in face as if nothing happened. I lost all respect for them.\"\"Sounds to me, Pat, like you\'ve been mobbed,\" I said, an assertion met with a blank stare. \"The one that cut open the \"wound\" that leads others to join in on the attack is the \"vicarious bully,\" or the \"serial bully\" who has a sordid history of going after anyone he or she sees as threat “\r\n\r\nSo what is \"mobbing?\" Simply put, it is when a group of people verbally attacks a target in an attempt to undermine their credibility and, often, to drive them away. Like a pack of wolves, once the mob \"smells blood,\" they move in for the kill, the feeding frenzy. Targets leave the experience demoralized and may even seriously doubt his or her personal safety. The other side of the danger is that others who may not be the target may retreat into silence rather than risk being treated in a similar way.\r\n\r\nThe late author Tim Fields knew a thing or two about mobbing. His groundbreaking book — Bully In Sight, How to predict, resist, challenge and combat workplace bullying! — is internationally recognized as the premier book on bullying. Fields, who was based in the United Kingdom, pointed out that \"mobbing\" is preferred to \"bullying\" in continental Europe and occurs in those situations where a target is selected and bullied, or mobbed, by a group of people rather than by one individual. Fields says that every mob has a ringleader, or \"serial bully,\" as some like to describe this personality.\r\n\r\n\"If this ringleader is an extrovert, it will be obvious who is coercing others into mobbing the selected target,\" he writes. \"This person is typically the shouter and screamer and thus is easily identifiable.”\r\n\r\nIf the ringleader is an introvert, Fields suggests that the person is likely to be in the background coercing and manipulating the mayhem, getting group members to mob the selected target. \"Introvert ringleaders are much more dangerous than extrovert ringleaders,\" Fields writes.\r\n\r\nWhat does it mobbing look like? It is intentional shouting, biting sarcasm, snide and cutting remarks, constant interruptions, vicious attacks on the data presented, etc., that can be debilitating. And on the subtle side, it ranges from publicly pointing out the trivial stuff — a typo, comma splice here and there — to rushing the person to finish while conspicuously clock watching, \"icing the person,\" all with malicious intent. In combination with rolling eyes, glaring, engaging in \"side\" conversations, doing e-mail, etc., the impact can be humiliating. Taken alone, any one of these behaviors may be annoying, uncivilized and despicable, and even tolerable at times. However, it is when they happen continuously, purposefully and in many variations, that they can become psychologically injurious to the target.\r\n\r\nOn the college campus it usually takes the form of vandalizing property with offensive comments, graffiti, threats and taunts, most likely done by a group. It can also manifest in the classroom but tends to be more subtle.\r\n\r\nUnlike physical domestic violence where the evidence can be clear — bumps, bruises, cut lips and black eyes — mobbing \"violence\" gets inflicted on the target\'s psyche, shattering his or her confidence, undercutting professional credibility and reducing the person\'s productivity. Here the injury is largely invisible, does not heal as fast and the scars tend to be permanent. Most targets of mobbing - in the workplace or on the campus - can recall with relative ease their experiences of many years ago.\r\nSo what compels others to join in the mobbing?\r\nFirst, there\'s the \"vulturing phenomenon.\" Similar to what happens after one or two lions manage to snag a wildebeest, the smell of blood attracts hyenas while vultures circle above ready to move in on the carcass.\r\n\r\n7). Regarding Gang Bullying:\r\nhttp://www.cbsnews.com/news/understanding-the-characteristics-of-workplace-bullying/\r\n\r\nUnderstanding the Characteristics of Workplace Bullying\r\nLast Updated Dec 17, 2007 6:52 PM EST\r\nThe personal and emotional effects of workplace bullying can make it difficult for you, as an employer, to remain impartial. It\'s especially difficult to be objective when you\'ve received conflicting accounts of an incident from various colleagues.\r\n\r\nIt is therefore important to understand exactly what issues, actions, and incidents constitute workplace bullying. This will help you promote a consistent approach to tackling bullying in your business, and ensure that each reported case of bullying is dealt with fairly.\r\n\r\nThe key aspects of workplace bullying are outlined here, as well as some suggestions for tackling bullying in your business.\r\nWhat You Need to KnowWhat is the difference between bullying and harassment?\r\n\r\nBullying and harassment are terms that are easily confused and often used interchangeably in the workplace. However, they refer to very different activities and need to be dealt with in different ways.\r\n\r\nHarassment is a form of employment discrimination that violates the law. It is defined as \"unwelcome conduct that is based on race, color, sex, religion, national origin, disability, and/or age.\" It becomes unlawful when it is either a condition of employment, or is severe or pervasive enough to create an intimidating, hostile, or abusive work environment.\r\n\r\nBullying is an intentional act that involves the psychological, and sometimes physical, abuse of one person by another or a group of others. At present, no federal or state laws specifically cover workplace bullying; and although some bullies do base their abuse on issues such as gender, race, religion, and physical ability, most instances of bullying focus on the victim\'s competency. Bullies are often insecure about a particular aspect of their own professional abilities, and feel threatened by colleagues who are competent in the same area(s).\r\nBullying is extremely difficult to identify as it is carried out covertly, and is not as public as most forms of harassment. This is especially true in the workplace, where threats and abuse can be delivered via e-mail and other non-verbal forms of communication.\r\n\r\nWhen does criticism become bullying?\r\nIn order to be successful, a business must regularly review staff performance, productivity, and conduct. An element of these reviews will inevitably involve discussing areas where your staff are failing to meet requirements or are producing work of poor quality.\r\n\r\nCriticism given in such circumstances does not constitute bullying if it is delivered appropriately, constructively, and respectfully. Constructive criticism from supervisors and management is part of the personal development of employees and the ongoing development of a business.\r\n\r\nHowever, if senior staff takes criticism too far, it can cause other employees to feel victimized and under intense pressure. Top-down bullying by a senior colleague can manifest itself in the following ways:\r\n\r\ndeliberately setting unreasonable and unrealistic objectives\r\npublicly criticizing a person\'s work without reason forcing employees to work long hours and overtime creating unmanageable workloads taking work away from someone\r\nAgain, these issues can be difficult to detect and quantify due to the emotional aspects involved. By recording all formal appraisals with colleagues, and agreeing on objectives and targets with managers and staff, you can help to prevent situations in which top-down bullying can occur.\r\n\r\nWhat to Do Identify Bullying In Your Workplace\r\nWays in which bullies intimidate and abuse their targets vary. Some are easier to identify than others. Workplace bullying, too, can take many forms; some of the more common examples are listed below.\r\n\r\nCorporate bullying, in which employers bully employees by imposing unmanageable working conditions and actively discriminate against employees who fail to comply.\r\nClient bullying: in which employees are bullied by their clients or customers. This occurs most often in customer service jobs, in which customers behave in an abusive, angry and sometimes violent manner toward staff who are trying to assist them.\r\nSerial bullying: in which one employee actively abuses one colleague after another. A serial bully tends to victimize one person until he or she suffers a breakdown, and either leaves the business or takes action against the bully—who then selects the next target.\r\n\r\nPair bullying: in which two people bully a single victim. One bully usually takes the lead, while the other watches or aids in the abusive activities.\r\n\r\nGang bullying: in which two or more people participate in a bullying campaign. Like pair bullying, one person tends to be the leader, while the others watch or are passively involved.\r\nRegulation bullying: in which one colleague forces another to comply with unrelated or obscure workplace regulations, or makes unqualified formal complaints about the victim\'s professional behavior.\r\n\r\n8). http://www.workplacebullying.org/idg/\r\n\r\nMay 22nd, 2014\r\nIDG: Workplace bullying in technology companies\r\nIs Bullying Rife in Tech? by Kathryn Cave, IDG Connect, (UK) May 21 2014\r\n“It was quite insidious,” says Alex [false name]. “The odd comment here or there. And he’d work his way through the team. Then he started on me and I stood up to him… and it got really ugly. Really ugly – to the point where I went and got a lawyer.”\r\n“I am a really strong person,” continues Alex. “Anyone that knows me is just shocked by what went on. But he undermined me so much, it was this whole campaign. It got to the point where you think: am I imagining this is happening? It was very manipulative and subtle: complete psychological and mental bullying. It was awful. And it wasn’t [just] a mental health issue. It was a physical thing. One day I literally started hemorrhaging blood…”\r\nIt is at this point that the naysayers will often step in. If it is female being described she would be casually dismissed as “emotional” and most likely “always running to HR”. If it is a male, this it would be the moment to give a kind of appalled snort: clearly he should “man up” and learn to deal with “tough management”.\r\nYet throughout our conversation, it is plain to see that Alex is extremely bright and analytical; not overtly weak or emotional. This is a firm, likeable and very self-possessed person. And still, although this happened five years ago, Alex is only starting to get over the experience now.\r\n\r\n22% of IT Professionals Have Taken Time Off For Stress\r\nThe latest research from the Workplace Bullying Institute (WBI), released in Feb 2014 [PDF] shows 27% of adult Americans have directly experienced “repeated abusive conduct that is threatening, intimidating, humiliating, work sabotage or work abuse.” And Dr. Namie, Director of WBI and widely regarded as North America’s foremost authority on workplace bullying, stresses this figure would have been far higher, if he had been less stringent with the definition.\r\n\r\nBullying is extremely hard to define. It can cover a raft of abusive behaviour, from obvious horribleness, such as shouting, hectoring and physical maltreatment. Right through to a devious spectrum of Machiavellian, psychological techniques, designed to break the victim from the inside. This can include too much work, too little work, ill-defined expectations, constantly changing the goal posts, along with the usual schoolyard fare of whispering in corners and making people feel worthless.\r\n\r\nThere is no overt legislation against it, and not only is it difficult to prove, it often takes the recipient a long time to realise it is really happening. “I was paranoid. I had depression,” explains Alex. It had a terrible effect on me. To the point where it made me question my sanity.”\r\n\r\nThere is some evidence to suggest that whilst this problem exists everywhere, things might be worse in tech. In 2008 Computer Weekly produced an article which stated that the “IT profession is blighted by bullying”. Based on research from the UK Trade Union, Unite, this showed that out of 860 IT professionals surveyed “65% believed they had been bullied at work, and 22% had taken time off work because of stress caused by bullying.”\r\nSam [false name], a senior IT professional I consulted, agreed with a lot of the findings but demurred: “To me it is not bullying, but sheer incompetence, and cronyism. Lack of openness and accountability at the top, micro-management and over-scrutiny, a lack of appropriate training and HR being useless. I have seen it, wondered how bad it can be – then experienced worse.”\r\nSteve Jobs, the Tech Industry & IT Professionals\r\nIt is extremely difficult to pinpoint issues within IT as a whole because the community is non-cohesive. There are those who work in tech companies – in a range of capacities – and those who work in IT, in a wide range of industries. Yet many people agree that, like teaching and nursing, the tech industry itself, is particularly riddled with bullying.\r\n\r\nSteve Jobs is the poster boy of both tech entrepreneurialism and bully-boy tactics. Dr. Namie believes his example is fairly common. “The narcissism of the tech entrepreneurs is excessive. The type of personality who starts these kinds of companies are very tough to deal with. They’re quite full of themselves and they’re not about democracy or inclusion. So, they’re natural bullies. But the media will never call them bullies because they’re seen as geniuses and they’re the inventors of our era.”\r\nAs late as this April, Jobs’ bullying made the news (again), as tech workers appealing to the legal system about Google, Adobe, Intel and Apple’s alleged conspiracy to keep workers’ wages low were asked to refrain “from unfairly portraying Jobs as a “bully” at the trial.” Cult of Mac reported “the companies said they don’t want the court to ban all of the Jobs evidence, just stuff gleaned from sources like Walter Isaacson’s biography that paints Jobs in a bad light.”\r\n\r\n“A tech firm is like a dysfunctional alcoholic family where the parent is the drunk,” says Dr. Namie. “The poor family. Nobody else drinks but they all have to walk on eggshells. People check their dignity at the door in those kinds of companies. They live a deferred life because the sun is burning so brightly at the top of the company and everyone else is supposed to be a bunch of nothings. It is sickening. Our biggest task at WBI is trying to get people to understand they deserve more.”\r\nHe feels fundamentally, this stems from two factors: “[The first is] there is no boundary between home and work. The second is work pace.”\r\n\r\n“Those two [factors] combined, make that industry so bullying prone, it is pure chaos. And people who get into it initially get a buzz form it, but they are human wrapped in the technology experiment [and] they underestimate the fact that biologically our stress response is way behind our technological need to innovate.”\r\n\r\nAlex however, isn’t sure if bullying is worse in the tech industry than in others: “I’ve only ever worked in tech and so, I don’t know, I wouldn’t be able to comment. [What I do know though is] I wanted to have a career. And the industry is small. You don’t want to be seen as a trouble maker. You think: people will badmouth me.”\r\n\r\n9).http://ingoodhealthfdl.agnesian.com/2012/11/07/how-to-recognize-a-sociopath/\r\n\r\nHow to Recognize a Sociopath\r\nby Beth Rogers-Doll Phd on NOVEMBER 7, 2012 in BEHAVIORAL HEALTH, KNOW & GO TOPICS\r\nThere is a subgroup of human beings that walk unnamed among us. They are called sociopaths or psychopaths. These individuals cause a great deal of pain to other human beings in the world through their cruelty, manipulation, deception and power plays. The Diagnostic and Statistical Manual V(newest version of the book most commonly used by mental health providers to diagnose mental health concerns), scheduled to come out in May 2013, classifies the constellation of behaviors and personality traits as sociopathic/psychopathic personality disorder. Scientists studying how many sociopaths there are in the general population estimate that roughly 4 percent of the population has sociopathic personalities (or one in 26 people).\r\n\r\nThe most shocking characteristic that we encounter in the mind of the sociopath is the lack of a conscience. This means that the guilty feelings most of us get when we do something wrong does not trouble the sociopath. Nor can the sociopath feel our pain. Most of us have had that strong feeling of connection to another’s pain. We empathize. We cry at sad movies; we cried when the Twin Towers came down. Sociopaths do not feel empathy. They cannot share another person’s suffering or loss. In fact, they seem to underreact to all painful stimuli. This is a consistent finding in research.\r\n\r\nHowever, they can imitate empathy once they learn how to blend in. What do I mean by “blend in?” Experts in the field seem to agree that sociopaths try to fit in by taking on more socially appropriate masks. Hence, these cold, unfeeling individuals learn to fake feelings and to say socially appropriate things to blend in. Meanwhile, they manipulate others, destroy lives and wreak havoc. Criminal behavior is nothing to a sociopath who craves money and power. And although a number of sociopaths are in prison (according to Hare et. al, 1993, only about two in 10 inmates are sociopaths), there are just as many who never get caught at criminal activities. Still others live unethical and immoral lives, but not illegal lives.\r\n\r\n10).http://westchesterfamily.com/article/moms-who-bully-standing-up-to-alpha-moms-and-break-the-bullying-cycle-52e7e13c3b4f6.html\r\n\r\nMoms Who Bully: Standing Up to Alpha Moms and Break the Bullying Cycle\r\nMost of us think of children or adolescents when we hear the word bully, but here in suburbia there is plenty of bullying that goes on between grown women and it looks a lot like it does between kids.\r\nPublished: 01/28/2014\r\nby Westchester Family\r\n”Oh, good, you have extra juice boxes. We forgot ours today,” says a mom at the park while reaching into your diaper bag to help herself. “You don’t mind, do you?” she asks, and, though you have yet to answer, she has already pierced the foil opening with the little straw and handed it to her child. This is not your best friend or family member, just an acquaintance from your local playground. If you have experienced a similar incident, then you have been bullied – by a fellow mom.\r\n\r\nJust Like Kids\r\nMost of us think of children or adolescents when we hear the word bully, but here in suburbia there is plenty of bullying that goes on between grown women and it looks a lot like it does between kids.\r\n\r\nAccording to Urban Dictionary, these women are Alpha Moms and are characterized as type A personalities “that make other moms feel totally inadequate and inferior because of their constant attempts to outdo other mothers. Incredibly competitive and judgmental, Alpha Mom has to be the first with the latest trends and fads and her kids always have to be ahead of all the other kids.” They engage in the same subtle or overt exclusions from social events and talk viciously behind each other’s backs.\r\nA friend described a woman in her affluent Westchester town who bullies by manipulation and aggressive exclusion – setting people against one another with rumors and using social events such as barbeques, bar mitzvahs and even PTA committees to exclude people. She actually divides her friends into an “A” list and a “B” list and makes no secret of this. Even children of the mothers who have tried to fight back by confronting her have suffered the consequences by being excluded themselves.\r\n\r\nIn their zeal for perfection, Alpha Moms trample over anyone that does not further their ambitions. When confronted with such destructive and negative behavior it leaves well-educated, mature women feeling as helpless and isolated as a child. Though our advice to children is to simply ignore such people, many women find it difficult to do so.\r\n\r\n11). https://www.eremedia.com/tlnt/when-bullying-turns-into-mobbing-everyone-in-the-workplace-loses/\r\n\r\nWhen Bullying Turns Into Mobbing, Everyone In The Workplace Loses\r\nBy Crystal Spraggins December 5, 2013TLNT\r\n\r\n35% of workers have experienced bullying directly\r\nSo, I tried to explain why to this member, but it was obvious from his responses that he wasn’t listening. And his lack of listening felt like a dismissal of the realities of the very people whom he purported to want to understand with his inquiry. And that reminded me of a fabulous conversation I had this week withDr. Maureen Duffy, a family therapist and author of Overcoming Mobbing: A Recovery Guide for Work-place Aggression and Bullying. (And we’re back. See? I told you.). The book is planned for release in late December, and I wouldn’t consider myself any kind of friend to the HR community if I didn’t recommend that each and every practitioner read this book. It is wonderful.\r\n\r\nAccording to a survey by the Workplace Bullying Institute (WBI), 35 percent of American workers have experienced bullying directly. I’m in that percentage. I’ve been mobbed and bullied, so I know first-hand the destructive effects of this phenomenon.\r\n\r\n12).  http://www.workplacebullying.org/\r\n\r\n13) “adult bullying” on Facebook or google book about Mobbing\r\n\r\n14).  http://aboutleaders.com/leaders-beware-good-people-bully-too/LeadersBeware\r\n, Good People Bully Too\r\nArticle by Al Gonzalez\r\nLeadership Skills: Leaders are sometimes unaware that their actions may be misinterpreted.\r\n\r\nA few months ago, a friend told me that her boss had been bullying her. Although it was obvious that her manager’s behavior involved tactics that were aggressive, humiliating and intimidating, my friend was unable to make a stand against this onslaught as she found it hard to prove that her manager was operating against established rules and policies.\r\nEssentially, it was her word against her manager.\r\nIt was also scary, as my friend felt that her job was in jeopardy.\r\nPainful Memories\r\nSince I am not an authority on workplace bullying, I reached out to experts via a discussion post on LinkedIn and started looking for resources that could help her. Little did I know that through the course of this experience, I was going to be reminded of my own bullying behavior and the reason I became a leadership consultant.\r\nWhile the whole story can be accessed here, it is fair to say that I ended up looking in the mirror and becoming embarrassed about my own actions, both as a child AND as a manager.\r\nWhile it was a lot easier to focus on what my friend’s manager is doing, I decided to write an article focusing on ways that I bullied others as a leader. As you will see, it was very easy to justify my actions.\r\nI wanted to dig deep and list some of the actions I am least proud of, in hopes of helping others who may be doing the same to their direct reports.\r\n\r\nFour Types of Bullying\r\nThe National Center Against Bullying lists four types of bullying. Although the organization’s focus is on childhood bullying, I feel that the following kinds of bullying can also occur at the workplace. The four types of bullying include:\r\n• Physical bullying – hitting, kicking, tripping, pinching and pushing or damaging property.\r\n• Verbal bullying – name calling, insults, teasing, intimidation, homophobic or racist remarks, or verbal abuse.\r\n• Covert bullying – often harder to recognize, covert bullying includes:\r\n◦ lying and spreading rumours\r\n◦ negative facial or physical gestures, menacing or contemptuous looks\r\n◦ playing nasty jokes to embarrass and humiliate\r\n◦ mimicking unkindly\r\n◦ encouraging others to exclude someone damaging someone’s reputation or acceptance\r\n• Cyber bullying ~ overt or covert bullying behaviors using digital technologies\r\n\r\nADDENDUM:\r\n\r\nThese people want to create this gangstalking phenomena to where ever this woman passes through or visits. If this woman is in your area, expect that there companies and people from other areas will come into your region.\r\n\r\nProtect your community by keeping a copy of these messages and send to companies that you believe are involved in this gangstalking incident and they do not belong there, such as a large freight sitting in your neighborhood. You can send privately using a search engine, for example the Ixquick search engine, that hides your IP computer address as you send to companies that have their own online contact form. That way you don’t have to use your personal email address. Or you can take your laptop to a coffee shop and your IP computer address will not be traced to your home.\r\n\r\nIf you are concerned you can contact California\'s local and state representatives as well as your own on a contact form on their website.\r\n\r\nIf you’d still like to help, please send to 5 smaller un-franchised and un-chained companies anywhere OUTSIDE of San Diego and outside of your own city. Or feel free to send to other plaza\'s, neighborhoods, cities, etc.\r\n\r\nSign laws against mobbing and gangstalking.\r\n\r\nThis can happen anywhere. There is a Youtube video titled \"\'Gangstalking I need your help\' - Japanese in Europe\" about a man whose situation is similar to this one. He works in Europe but describes his gangstalking experiences when he visits his mother in Japan. If you know someone in Japan please send this information to them.\r\n\r\nIf you are partaking in similar stalking like behavior, especially if you don’t know the person or there are no hard facts that a story is true, STOP THIS BEHAVIOR. This taps into a very unkind and sad part of humanity that persons such as serial bullies are very aware of. This phenomena is evil. To knowingly participate in this behavior is equivalent to devil worshipping. Even if the story is true, there are other positive and productive ways to show support such as advertising on Facebook social media for the related cause, or donate money or volunteer for the related cause.\r\n\r\nFor those involved, if you bully, you only add to others’ fear of these people. They are only as strong as the people that stand behind them. Encourage those involved in bullying to be kind and to keep an open mind to both sides of a story. Keep in mind, though use judgement, it is believed that the majority of the gangstalkers are actually kind and supportive when they read the evidence, with a few have been upset that they have been lied to. They are people like you and me, but under the web of this false story. The ones who are not so nice are the ones who refuse to read the evidence. Link hands with others in your community as you may feel better knowing there is safety in numbers.\r\n\r\nPlease speak up if you have been solicited as this method can be used by terrorists in the future and these people indeed are terrorizing areas in this community.  These people have already solicited potentially a thousand companies and more from each area of San Francisco, Hawaii, Utah, Massachusetts, Oakland, San Diego, Los Angeles, Nevada and others as this woman travels there.  \r\n\r\nFor those who believe human kind can be “better than this,” feel free to send that message out to the world - say NO to hate and violence, encourage children to befriend bullied kids when school restarts, if your life is the pits take the time to care for yourself even if that means getting some kind of help, or just smile. May peace and good health be with you all.',''),(4131,1,835,'8','Brad',''),(4132,1,835,'9','Hoffman',''),(4133,1,835,'4','(616) 240-6895',''),(4134,1,835,'3','Bmdhoff1@protonmail.com',''),(4135,1,835,'6','I have a 33 year old Trane heat pump (TWX030C100A) that appears to have finally died.  Could you please provide an estimate to replace.  The air handler in the attic is a TWE040E130A.  I live in Biglerville, PA 17307.  Thanks',''),(4136,1,836,'8','like https://www.google.com/url zikizo7',''),(4137,1,836,'9','like https://www.google.com/url zikizo7',''),(4138,1,836,'4','(557) 446-4155',''),(4139,1,836,'3','kijikd33333@outlook.com',''),(4140,1,837,'8','JosephBar',''),(4141,1,837,'9','JosephBarCP',''),(4142,1,837,'4','(204) 683-7482',''),(4143,1,837,'3','huibdebruin@zonnet.nl',''),(4144,1,837,'6','Just imagine that you can give up the work and do what you like! Invest $ 657 and get passive income of $ 3100 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Ka=Sf&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ   <<<<<<<<<<<<<',''),(4145,1,838,'8','JosephBar',''),(4146,1,838,'9','JosephBarCP',''),(4147,1,838,'4','(281) 572-3281',''),(4148,1,838,'3','carlavanaalderen@home.nl',''),(4149,1,838,'6','How to be financially independent and stand firmly on your feet? Invest $ 398 and get passive income of $ 3100 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Vf=Ms&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ   <<<<<<<<<<<<<',''),(4150,1,839,'8','JosephBar',''),(4151,1,839,'9','JosephBarCP',''),(4152,1,839,'4','(025) 164-0423',''),(4153,1,839,'3','e.lagerwaard@steinmetzdecompaan.nl',''),(4154,1,839,'6','You don`t need to go to work daily anymore! Invest $ 660 and get passive income of $ 9100 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Xy=Gg&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ   <<<<<<<<<<<<<',''),(4155,1,840,'8','Riley',''),(4156,1,840,'9','Perkin',''),(4157,1,840,'4','(519) 659-9083',''),(4158,1,840,'3','perkin.riley86@gmail.com',''),(4159,1,840,'6','Hi,\r\n\r\nMany have the misconception of Buddhism being a religion. Buddhism is really more of a way of life whch can wired our brains positively and see changes in a different light.\r\n\r\nSince fate has brough us here, we hope you can spend some time to explore Buddhism.\r\n\r\nWe have shortlisted a few videos from youtube with regards to Buddhism, we believe your time will not be wasted:\r\n\r\nCheck out the videos in youtube here:\r\n\r\nWhat is Buddhism?\r\nhttps://bit.ly/3olo410\r\n\r\nBasic of Buddhism by Patrick Goodness in youtube:\r\nhttps://bit.ly/3waxT4D\r\n\r\nAlbert Einstein on Buddhism - what Albert Einstein thought about Buddhism:\r\nhttps://bit.ly/3ypqr7V\r\n\r\nBertrand Russell (Nobel Prize Winner) on Buddha and Buddhism\r\nhttps://bit.ly/3fmvk91\r\n\r\nThere is a great deal of quality content in Youtube regarding Buddhism and how it can alleviate sufferings. During this trying times, we hope the above can help you! If you find this useful, please share with your friends!',''),(4160,1,841,'8','Scott Bergey',''),(4161,1,841,'9','Scott Bergey',''),(4162,1,841,'4','(781) 175-6482',''),(4163,1,841,'3','scott@join411directory.com',''),(4164,1,841,'6','Scott Bergey here, introducing myself as your new territory manager for 411.directory (your county just opened up). Let me know if you want to grab the spot. We only charge $199/year for county exclusivity as we only work with one business in each county. This explains everything that is included with the membership: http://www.join411directory.com/',''),(4165,1,842,'8','Patty',''),(4166,1,842,'9','Hoffman',''),(4167,1,842,'4','(718) 722-1392',''),(4168,1,842,'3','Hoffmanhd876@gmail.com',''),(4169,1,842,'6','Hello!\r\n\r\nMy name is Patty.\r\n\r\nYour website or a website that your company hosts is infringing on a copyright-protected images owned by myself.\r\n\r\nCheck out this report with the hyperlinks to my images you utilized at www.mannplumbingandheating.com and my previous publication to get the proof of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://sites.google.com/view/g03hv2lcjv-3mnvk52/drive/d/shared/file/download?data=633060348141632262 \r\n\r\nI do think that you deliberately infringed my legal rights under 17 U.S.C. Section 101 et seq. and can be liable for statutory damages as high as $120,000 as set forth in Sec. 504 (c)(2) of the Digital millennium copyright act (”DMCA”) therein.\r\n\r\nThis message is official notice. I seek the elimination of the infringing materials described above. Please be aware as a service provider, the Digital Millennium Copyright Act requires you, to eliminate or/and deactivate access to the copyrighted materials upon receipt of this particular notification letter. If you do not stop the utilization of the above mentioned infringing materials a lawsuit can be commenced against you.\r\n\r\nI have a good faith belief that utilization of the copyrighted materials referenced above as presumably infringing is not authorized by the legal copyright owner, its agent, or the legislation.\r\n\r\nI declare, under consequence of perjury, that the information in this letter is accurate and that I am currently the legal copyright owner or am permitted to act on behalf of the proprietor of an exclusive and legal right that is presumably infringed.\r\n\r\n\r\nRegards,\r\nPatty Hoffman',''),(4170,1,843,'8','JosephBar',''),(4171,1,843,'9','JosephBarCP',''),(4172,1,843,'4','(470) 482-5655',''),(4173,1,843,'3','srowe@myspace.com.au',''),(4174,1,843,'6','What is your attitude towards rich people? Invest $ 277 and get passive income of $ 7500 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Vo=Kt&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ   <<<<<<<<<<<<<',''),(4175,1,844,'8','Mike Haig',''),(4176,1,844,'9','Mike Haig\r\nNE',''),(4177,1,844,'4','(283) 263-5843',''),(4178,1,844,'3','no-replyWat@gmail.com',''),(4179,1,844,'6','Howdy \r\n \r\nI have just verified your SEO on  mannplumbingandheating.com for the Local ranking keywords and seen that your website could use a push. \r\n \r\nWe will enhance your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nStart enhancing your local visibility with us, today! \r\n \r\nregards \r\nMike Haig\r\n \r\nSpeed SEO Digital Agency \r\nsupport@speed-seo.net',''),(4180,1,845,'8','JosephBar',''),(4181,1,845,'9','JosephBarCP',''),(4182,1,845,'4','(126) 111-8654',''),(4183,1,845,'3','elyse1982@live.nl',''),(4184,1,845,'6','Now Elon Musk is distributing X2 Bitcoin to all participants of the action   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fupto5000btc.blogspot.com%2F&sa=D&Cp=Fd&usg=AFQjCNHtCeex2fHffyeD9THCcjtFp-n8vw   <<<<<<<<<<<<<',''),(4185,1,846,'8','Tyler Becker',''),(4186,1,846,'9','Tyler Becker',''),(4187,1,846,'4','(363) 646-1280',''),(4188,1,846,'3','tyler@cryptosuite.info',''),(4189,1,846,'6','Hey there its Tyler, \r\nDo you want to quit and just toss in the towel? \r\nYour ready to give up on this online income thingh huh? \r\nI have been there so many times I lost count. \r\nBut I knew that if I could find something that worked, then I would \r\nget the income I wanted. \r\nIts not time to quit, its time to just follow a simple step by step process. (Proof of this !!) \r\n \r\nGo Here To See How https://jvz8.com/c/1176113/294890 \r\n \r\nTalk Soon \r\n \r\nTyler',''),(4190,1,847,'8','JosephBar',''),(4191,1,847,'9','JosephBarCP',''),(4192,1,847,'4','(131) 186-8015',''),(4193,1,847,'3','9ltp2n8w6@yahoo.com',''),(4194,1,847,'6','Get x2 Bitcoins from Tesla   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fupto5000btc.blogspot.com%2F&sa=D&De=Ly&usg=AFQjCNHtCeex2fHffyeD9THCcjtFp-n8vw   <<<<<<<<<<<<<',''),(4195,1,848,'8','nem12835krya',''),(4196,1,848,'9','nem12835kryaGB',''),(4197,1,848,'4','(854) 127-4342',''),(4198,1,848,'3','tima.zapunidi.77@mail.ru',''),(4199,1,848,'6','mks12835rtjuny FNLoZCn Rsiw Y9wnbu6',''),(4200,1,849,'8','JosephBar',''),(4201,1,849,'9','JosephBarCP',''),(4202,1,849,'4','(172) 481-1407',''),(4203,1,849,'3','samyja@hotmail.fr',''),(4204,1,849,'6','It`s quite natural to want more revenue. Invest $ 385 and get passive income of $ 3800 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc2iVZz&sa=D&Ci=Du&usg=AFQjCNFJ6DQ-GgLJiqgZRHHBoeSsdUCiIw   <<<<<<<<<<<<<',''),(4205,1,850,'8','num12835flebno',''),(4206,1,850,'9','nam12835kryaGB',''),(4207,1,850,'4','(363) 363-1081',''),(4208,1,850,'3','tima.zapunidi.77@mail.ru',''),(4209,1,850,'6','mps12835utr 66Wqc0z sN3t mVDWVMB',''),(4210,1,851,'8','David',''),(4211,1,851,'9','Weston',''),(4212,1,851,'4','(202) 991-6766',''),(4213,1,851,'3','david@workingcapitalstore1.xyz',''),(4214,1,851,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nI just have one quick question for you.\r\n\r\nWould you consider a Working Capital Loan for your Business if the price and terms were acceptable?\r\n\r\nIf so, we can provide you with a funding decision is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.workingcapitalstore1.xyz\r\n\r\nAlso, please check out this video to see how our program works, and all the funding options we have available for you.  www.workingcapitalstore1.xyz/video\r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nDavid Weston\r\nWorking Capital Store\r\nwww.workingcapitalstore1.xyz\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.workingcapitalstore1.xyz/unsubscribe,\r\n\r\nor write to:\r\n\r\nWorking Capital Store\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(4215,1,852,'8','RukVar',''),(4216,1,852,'9','RukVarJN',''),(4217,1,852,'4','(502) 888-0305',''),(4218,1,852,'3','saftulih@yandex.ru',''),(4219,1,852,'6','[url=https://drawing-portal.com]Online CAD School[/url] Yevgenia Kuritsina',''),(4220,1,853,'8','JosephBar',''),(4221,1,853,'9','JosephBarCP',''),(4222,1,853,'4','(570) 223-5134',''),(4223,1,853,'3','read.joe7@free.fr',''),(4224,1,853,'6','\"Make your future bright!\" Invest $ 655 and get passive income of $ 9400 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc2iVZz&sa=D&Lh=Ss&usg=AFQjCNFJ6DQ-GgLJiqgZRHHBoeSsdUCiIw   <<<<<<<<<<<<<',''),(4225,1,854,'8','JosephBar',''),(4226,1,854,'9','JosephBarCP',''),(4227,1,854,'4','(288) 034-6182',''),(4228,1,854,'3','fred.chris.68@hotmail.fr',''),(4229,1,854,'6','You won 3 BTC, pick it up urgently today   >>>>>>>>>>>>>>  http://www.elon-musk.com.ministeriomfef.org/forum?2462   <<<<<<<<<<<<<',''),(4230,1,855,'8','Lauren',''),(4231,1,855,'9','Green',''),(4232,1,855,'4','(410) 123-1234',''),(4233,1,855,'3','LaurenGreenmkt@gmail.com',''),(4234,1,855,'6','Hey\r\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I have forwarded it to a few of my contacts who I think could benefit from your services.\r\n\r\nWhen I was looking at your website, though, I noticed a slight issue re: your SEO that I thought you might not be aware of. It is a relatively simple fix. Would you like me to write it up so that you can share it with your web team? If this is a priority, I can also get on a call.\r\n\r\nRegards,\r\nLauren Green',''),(4235,1,856,'8','JosephBar',''),(4236,1,856,'9','JosephBarCP',''),(4237,1,856,'4','(281) 848-8664',''),(4238,1,856,'3','cajuro@orange.fr',''),(4239,1,856,'6','How to be financially independent and stand firmly on your feet? Invest $ 267 and get passive income of $ 8500 per day   >>>>>>>>>>>>>>  http://www.bitcoin.com.supportsbooks.fun/forum?824   <<<<<<<<<<<<<',''),(4240,1,857,'8','Mike Little',''),(4241,1,857,'9','Mike Little',''),(4242,1,857,'4','(668) 466-3154',''),(4243,1,857,'3','no-reply@google.com',''),(4244,1,857,'6','Howdy \r\n \r\nI have just took an in depth look on your  mannplumbingandheating.com for the ranking keywords and saw that your website could use an upgrade. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our plans here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\nregards \r\nMike Little\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(4245,1,858,'8','Rachel',''),(4246,1,858,'9','Florent',''),(4247,1,858,'4','(326) 421-1751',''),(4248,1,858,'3','rachel.florent@videomarketingnow.xyz',''),(4249,1,858,'6','Hey, \r\n\r\nYou have a lot going on right now, but maybe we can help?\r\n\r\nWe make professional videos for businesses to put on their websites.\r\n\r\nSee examples of what we can do for you:\r\nhttps://www.videomarketingnow.xyz/success/?=mannplumbingandheating.com\r\n\r\nThese videos are helping businesses GROW right now, at a time when they need it most.\r\n\r\nRachel Florent\r\nCustom Video Specialist\r\n\r\n\r\n\r\n\r\n\r\n410 Santa Clara St. East, Unit 817	\r\nSan Jose,	CA 95113\r\n \r\nNo more video marketing:\r\nhttps://videomarketingnow.xyz/out.php/?site=mannplumbingandheating.com',''),(4250,1,859,'8','Sandra',''),(4251,1,859,'9','Atkins',''),(4252,1,859,'4','(718) 337-2980',''),(4253,1,859,'3','Atkinshd540@gmail.com',''),(4254,1,859,'6','Hi!\r\n\r\nMy name is Sandra.\r\n\r\nYour website or a website that your company hosts is violating the copyright-protected images owned by myself.\r\n\r\nCheck out this document with the links to my images you used at www.mannplumbingandheating.com and my previous publications to get the evidence of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://sites.google.com/view/k93hvb34vb38fhs-3kvb4yn2dl1/d/shared/0/download/file?ID=191601971532047660 \r\n\r\nI believe that you deliberately violated my rights under 17 USC Sec. 101 et seq. and could possibly be liable for statutory damages of up to $130,000 as set-forth in Sec. 504 (c) (2) of the Digital millennium copyright act (”DMCA”) therein.\r\n\r\nThis letter is official notice. I seek the elimination of the infringing materials mentioned above. Please be aware as a service provider, the DMCA requires you, to eliminate and/or disable access to the copyrighted materials upon receipt of this notice. If you don\'t stop the use of the previously mentioned infringing content a court action will likely be started against you.\r\n\r\nI have a good faith belief that use of the copyrighted materials described above as allegedly infringing is not permitted by the copyright owner, its agent, or the laws.\r\n\r\nI swear, under penalty of perjury, that the information in this letter is accurate and that I am the legal copyright owner or am permitted to act on behalf of the proprietor of an exclusive right that is presumably violated.\r\n\r\n\r\nBest regards,\r\nSandra Atkins\r\n\r\n06/01/2021',''),(4255,1,860,'8','JosephBar',''),(4256,1,860,'9','JosephBarCP',''),(4257,1,860,'4','(843) 204-7851',''),(4258,1,860,'3','reginamae27@yahoo.fr',''),(4259,1,860,'6','You don`t need to go to work daily anymore! Invest $ 489 and get passive income of $ 6900 per day   >>>>>>>>>>>>>>  http://www.medium.com.fatphillys.net/bigwin?804   <<<<<<<<<<<<<',''),(4260,1,861,'8','Eric',''),(4261,1,861,'9','Jones',''),(4262,1,861,'4','(555) 555-1212',''),(4263,1,861,'3','eric.jones.z.mail@gmail.com',''),(4264,1,861,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(4265,1,862,'8','Marcogluro',''),(4266,1,862,'9','MarcogluroDG',''),(4267,1,862,'4','(568) 275-2503',''),(4268,1,862,'3','ahmedkirillov5@gmail.com',''),(4269,1,862,'6','You received a money transfer of $ 89.44! PREPAYMENT! To receive funds, go to the payment page \r\n[url=http://5.79.219.166:8080/work/drac/]Detail[/url]:  [url=http://5.79.219.166:8080/work/drac/]Official bank site/url]  Official bank site <a href=\"http://5.79.219.166:8080/work/drac/\">Official bank site</a>',''),(4270,1,863,'8','smiday',''),(4271,1,863,'9','smiday',''),(4272,1,863,'4','(728) 500-0866',''),(4273,1,863,'3','al.e.k.s.e.j.li.zk.o@gmail.com',''),(4274,1,863,'6','On This Morning, Elon Musk  shared the secret of how quickly he got rich  while coronavirus is raging all over the world! \r\nHe already shared this news on social networks and those who believed and tried the platform started writing letters to him. Click here for the full article and free system access!  https://tinyurl.com/y5r9ayzm',''),(4275,1,864,'8','JosephBar',''),(4276,1,864,'9','JosephBarCP',''),(4277,1,864,'4','(145) 242-7551',''),(4278,1,864,'3','belommaa@live.fr',''),(4279,1,864,'6','The strategy of big profit: where and how. Invest $ 398 and get passive income of $ 3900 per day   >>>>>>>>>>>>>>  http://www.youtube.com.fatphillys.net/bigwin?982   <<<<<<<<<<<<<',''),(4280,1,865,'8','JosephBar',''),(4281,1,865,'9','JosephBarCP',''),(4282,1,865,'4','(276) 144-3352',''),(4283,1,865,'3','marsu.t@orange.fr',''),(4284,1,865,'6','Hands down the quickest way to make a big capital. Invest $ 257 and get passive income of $ 7800 per day   >>>>>>>>>>>>>>  http://www.bank.com.livedaytona500.org/blog?005   <<<<<<<<<<<<<',''),(4285,1,866,'8','JosephBar',''),(4286,1,866,'9','JosephBarCP',''),(4287,1,866,'4','(730) 483-0814',''),(4288,1,866,'3','jean-noel.furier@orange.fr',''),(4289,1,866,'6','Don’t wait for someone else to do it. Invest $ 358 and get passive income of $ 6000 per day   >>>>>>>>>>>>>>  http://www.forex.com.ministeriomfef.org/blog?043   <<<<<<<<<<<<<',''),(4290,1,867,'8','Mark',''),(4291,1,867,'9','Schaefer',''),(4292,1,867,'4','(561) 544-0719',''),(4293,1,867,'3','marks@nutricompany.com',''),(4294,1,867,'6','By way of introduction, I am Mark Schaefer with Nutritional Products International (nutricompany.com).\r\n\r\nWe serve international and domestic manufacturers seeking to gain more distribution within the United States.\r\n\r\nYour brand at mannplumbingandheating.com recently caught my attention, so I am contacting you to discuss the possibility of expanding your distribution reach.\r\n\r\nWe provide expertise in all areas of distribution, and our offerings include the following:\r\n\r\n* Rapid entry into the U.S. market.\r\n* Purchase Orders\r\n* FDA Regulatory Compliance\r\n* Active accounts with major U.S. distributors and retailers.\r\n* Our proven sales force has public relations, branding and marketing all under one roof.\r\n\r\nWe maintain active business relationships with over 200,000 distribution outlets across the nation, and we have a direct line of contact with executive-level buyers.\r\n\r\nOur company has a proven history of initiating accounts and placing orders with major distribution outlets. Our history allows us to have intimate and unique relationships with key buyers across the United States thus giving your brand a fast track to market in a professional manner.\r\n\r\nPlease contact me directly at 561-544-0719 or by replying, so we can discuss your brand further.\r\n\r\nKind Regards,\r\n\r\nMark Schaefer\r\nDirector Of Global Procurement\r\nNutritional Products International\r\nnutricompany.com\r\n101 Plaza Real S\r\nBoca Raton, FL 33432\r\nOffice: 561-544-0719',''),(4295,1,868,'8','Eric',''),(4296,1,868,'9','Jones',''),(4297,1,868,'4','(555) 555-1212',''),(4298,1,868,'3','eric.jones.z.mail@gmail.com',''),(4299,1,868,'6','My name’s Eric and I just found your site mannplumbingandheating.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE https://talkwithwebvisitors.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(4300,1,869,'8','Tdcissgap',''),(4301,1,869,'9','TdcissgapHE',''),(4302,1,869,'4','(002) 802-8282',''),(4303,1,869,'3','revers@o5o5.ru',''),(4304,1,869,'6','[url=https://www.tc-bus.ru/marcopolo]автобус марко поло[/url] \r\nTegs: bravis https://www.tc-bus.ru/marcopolo \r\n \r\n[u]ютонг zk[/u] \r\n[i]ютонг 6122[/i] \r\n[b]ютонг 6122 [/b]',''),(4305,1,870,'8','ZfeFM',''),(4306,1,870,'9','ZfeFM',''),(4307,1,870,'4','(407) 464-6884',''),(4308,1,870,'3','essay_3@mail.ru',''),(4309,1,870,'6','Medication information for patients. Cautions. \r\n<a href=\"https://lyricainfo.top\">valtrex pills</a> in US \r\nAll information about pills. Get here.',''),(4310,1,871,'8','JosephBar',''),(4311,1,871,'9','JosephBarCP',''),(4312,1,871,'4','(536) 487-7000',''),(4313,1,871,'3','vini_tormes@free.fr',''),(4314,1,871,'6','Hands down the quickest way to make a big capital. Invest $ 499 and get passive income of $ 6600 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Cw=Ae&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ   <<<<<<<<<<<<<',''),(4315,1,872,'8','Kristie',''),(4316,1,872,'9','Moore',''),(4317,1,872,'4','(805) 372-3246',''),(4318,1,872,'3','kristie@business-directory.link',''),(4319,1,872,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://business-directory.link/abcc1/?=mannplumbingandheating.com\r\n\r\n\r\nKristie\r\nVoice Activation Follow-up Specialist\r\nBusiness Directory Link\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://business-directory.link/out.php?site=mannplumbingandheating.com',''),(4320,1,873,'8','Robbie',''),(4321,1,873,'9','Veil',''),(4322,1,873,'4','(717) 504-7019',''),(4323,1,873,'3','Veilrobbie5@gmail.com',''),(4324,1,873,'6','I am interested in getting quote for central heat and air for my home. I currently do not have anything other than floor units.',''),(4325,1,874,'8','HelenCib',''),(4326,1,874,'9','HelenCib',''),(4327,1,874,'4','(461) 188-8345',''),(4328,1,874,'3','helenCib@allsets.xyz',''),(4329,1,874,'6','Yes\r\nhttp://naitraclawnged.tk/chk/21',''),(4330,1,875,'8','Gary',''),(4331,1,875,'9','Cohen',''),(4332,1,875,'4','(561) 544-0719',''),(4333,1,875,'3','gcohen@consumerproductsintl.com',''),(4334,1,875,'6','The U.S. consumer market is the holy grail for retail manufacturers.\r\n\r\nBy way of introduction, I am Gary Cohen, and I represent Consumer Products International (https://consumerproductsintl.com).\r\n      \r\nAt Consumer Products International, we understand the challenges domestic and international consumer brands confront when deciding to bring their products to American consumers. CPI works with international and domestic consumer goods manufacturers who are seeking to expand their distribution reach within the United States or enter the world’s largest consumer market for the first time.\r\n\r\nDuring my research, your brand recently caught my attention, which is why I would like to discuss the possibility of expanding your national distribution reach in the U.S.\r\n\r\nCPI provides expertise in all areas of distribution, and our services include the following:\r\n\r\n	Turnkey/One-stop solution\r\n	FDA\r\n	Active accounts with major U.S. distributors and retailers\r\n	An executive team that has held executive positions with Walmart and Amazon, the two largest online and brick-and-mortar retailers in the U.S.\r\n	Proven sales force with public relations, branding, and marketing all under one roof\r\n	Focus on new and existing product lines\r\n	Warehousing and logistics\r\n\r\nCPI’s executive team has decades of experience in representing many different consumer goods categories. We have worked with buyers from national and regional retail chains, which gives your brand a fast track to market.\r\n\r\nPlease contact me directly so that we can discuss your brand further.\r\n\r\nKind Regards,\r\n\r\nGary Cohen\r\nVP of Business Development\r\nConsumer Products International\r\n101 Plaza Real S, Ste #224\r\nBoca Raton, FL 33432\r\nOffice: 561-544-0719\r\ngcohen@consumerproductsintl.com',''),(4335,1,876,'8','Jasmine',''),(4336,1,876,'9','Parks',''),(4337,1,876,'4','(718) 569-9257',''),(4338,1,876,'3','Parkshd545@hotmail.com',''),(4339,1,876,'6','Hello there!\r\n\r\nMy name is Jasmine.\r\n\r\nYour website or a website that your organization hosts is infringing on a copyright-protected images owned by myself.\r\n\r\nTake a look at this report with the URLs to my images you utilized at www.mannplumbingandheating.com and my earlier publication to get the proof of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/storage-37dfc.appspot.com/o/file-jh38v83yg454k.html?alt=media&token=b62c81e7-51ec-4594-a6cd-9cab56028e92&h=359502629776555049 \r\n\r\nI really believe you\'ve deliberately violated my rights under 17 USC Section 101 et seq. and can be liable for statutory damages as high as $110,000 as set-forth in Section 504 (c)(2) of the Digital millennium copyright act (DMCA) therein.\r\n\r\nThis message is official notice. I seek the removal of the infringing materials described above. Please be aware as a service provider, the Digital Millennium Copyright Act demands you, to eliminate and/or terminate access to the copyrighted content upon receipt of this notice. If you don\'t stop the use of the previously mentioned copyrighted materials a court action will be initiated against you.\r\n\r\nI have a strong self-belief that use of the copyrighted materials referenced above as allegedly violating is not authorized by the copyright proprietor, its legal agent, as well as law.\r\n\r\nI swear, under penalty of perjury, that the information in this message is correct and that I am the copyright owner or am authorized to act on behalf of the proprietor of an exclusive and legal right that is allegedly violated.\r\n\r\n\r\nSincerely,\r\nJasmine Parks\r\n\r\n06/08/2021',''),(4340,1,877,'8','JosephBar',''),(4341,1,877,'9','JosephBarCP',''),(4342,1,877,'4','(636) 144-8768',''),(4343,1,877,'3','larissa.23@hotmail.fr',''),(4344,1,877,'6','The psychology of profit: how to start acting. Invest $ 455 and get passive income of $ 4200 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Ke=Ho&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ   <<<<<<<<<<<<<',''),(4345,1,878,'8','Michael',''),(4346,1,878,'9','Shaffer',''),(4347,1,878,'4','(717) 496-6132',''),(4348,1,878,'3','shaffermichael155@gmail.com',''),(4349,1,878,'6','How do I get a application?\r\n My father\'s friend works for you and said you guys need plumber helpers, I love getting my hands dirty and will do just about anything to help on a job. I believe this would be an amazing opportunity to learn a good trade. I\'m still in high school but this coming school year I will be doing full time co op that way I can work more this school year.\r\n\r\nHere is my number - 717 496-6132',''),(4350,1,879,'8','cliff',''),(4351,1,879,'9','burkett',''),(4352,1,879,'4','(717) 422-3431',''),(4353,1,879,'3','toyotatuff@comcast.net',''),(4354,1,879,'6','need an estimate for 40 gallon water heater.   thanks',''),(4355,1,880,'8','JosephBar',''),(4356,1,880,'9','JosephBarCP',''),(4357,1,880,'4','(112) 766-3245',''),(4358,1,880,'3','hate6217299@free.fr',''),(4359,1,880,'6','Just make your dreams come true. Invest $ 497 and get passive income of $ 3800 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Ar=Ni&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ   <<<<<<<<<<<<<',''),(4360,1,881,'8','cliff',''),(4361,1,881,'9','burkett',''),(4362,1,881,'4','(717) 422-3431',''),(4363,1,881,'3','toyotatuff@comcast.net',''),(4364,1,881,'6','need to cancel appointment for wed. 16 -10; 00-12;00. i just can\'t do it. thank you for your time.',''),(4365,1,882,'8','Taylor Binney',''),(4366,1,882,'9','Taylor Binney',''),(4367,1,882,'4','(637) 848-2710',''),(4368,1,882,'3','taylorb@email-checker.us',''),(4369,1,882,'6','Good Day, \r\n \r\nWe went through your website and discovered there\'s a potential for investment as we currently have a client who\'s interested in investing in your country. \r\n \r\nCould you get back to us about your company and areas you think we can invest for profit. \r\n \r\nTo understand our mission, please click here https://loginliveoffice.alliancenyunion.com/index.html to view our company profile: \r\n \r\nTaylor Binney \r\nFinance Officer \r\nVB Investments',''),(4370,1,883,'8','plera',''),(4371,1,883,'9','pleraGZ',''),(4372,1,883,'4','(424) 504-4220',''),(4373,1,883,'3','baburovp@bk.ru',''),(4374,1,883,'6','Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/yzkq7vsq',''),(4375,1,884,'8','JosephBar',''),(4376,1,884,'9','JosephBarCP',''),(4377,1,884,'4','(117) 410-8063',''),(4378,1,884,'3','tejavivek17@orange.fr',''),(4379,1,884,'6','Get X2 Bitcoins from Elon Musk   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc2Ou0l&sa=D&Le=Ns&usg=AFQjCNEqmEVL_8lT0s5VT1H9xJof7LQCIw   <<<<<<<<<<<<<',''),(4380,1,885,'8','Mariodib',''),(4381,1,885,'9','MariodibPP',''),(4382,1,885,'4','(534) 556-6275',''),(4383,1,885,'3','piskello_diaboliko@alice.it',''),(4384,1,885,'6','Hello, \r\n \r\nNew music: https://popeurope.blogspot.com \r\nMP3/FLAC, Label, LIVESETS, Music Videos, TV Series. \r\nDownload Dance, Electro, House, Techno, Trance, Pop, Rock, Rap... \r\n \r\nBest regards, \r\n0day MP3s',''),(4385,1,886,'8','Chrissy',''),(4386,1,886,'9','Allan',''),(4387,1,886,'4','(805) 372-3366',''),(4388,1,886,'3','chrissy@youralexadirectory.link',''),(4389,1,886,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://voiceregbiz1.xyz/mroe-cusotmers/?=mannplumbingandheating.com\r\n\r\n\r\nChrissy\r\nVoice Activation Follow-up Specialist\r\nYour Alexa Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://voiceregbiz1.xyz/unsubscribe.php/?site=mannplumbingandheating.com',''),(4390,1,887,'8','JosefLiamn',''),(4391,1,887,'9','JosefLiamnXP',''),(4392,1,887,'4','(013) 418-3860',''),(4393,1,887,'3','patrice.gregoire@voila.fr',''),(4394,1,887,'6','Three months ago, when I came home from work, \r\nI was watching the evening news and there they were just interviewing a housewife from Paris (I don\'t remember her name anymore) \r\nwho made a fortune by investing only $ 1500 in global automated trading systems (trading robots) without understanding anything in this thread. \r\nShe named three automated trading systems on which she earned more than $ 30,000,000 in 7 months by investing only $ 1,500, that is, $ 500 in each system. \r\nI thought to myself why the hell are they showing this, because this is just an advertisement for some kind of trading system services and nothing more. \r\nAnd besides, if everything is so great with them, why show it on the news and tell others. But in the end I decided to give it a try. \r\nThis news intrigued me, in the end I signed up, the manager called me, we set everything up, \r\nI invested $ 2100, $ 700 in each system and launched automated trading robots. For a whole week after the investment, \r\nI did not look at what was happening there, as there were a lot of things to do, but a week later when I opened my personal accounts in all three systems, \r\nI just silently opened my mouth and looked at my balance and wondered if I was sleeping because my passive income was quite is equal to $ 960,000! \r\nAnd in just three months my income was $ 11,520,850! \r\nTo hell with everything, just take it and do it, if I succeed then you will certainly succeed. \r\nHere are my passive income and links to these three sites that made me a millionaire: \r\n1. Income $ 5,359,673 \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc2JnE8&sa=D&sntz=1&usg=AFQjCNFcvJhMW5sGMUv7j_-ItTr8aGwmaw \r\n2. Income $ 3,752,098 \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1Jpgr&sa=D&sntz=1&usg=AFQjCNFtc0f-Znle2hYDkjNlqovjfh5SnQ \r\n3. Income $ 2,409,079 \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc2JnRF&sa=D&sntz=1&usg=AFQjCNE4usgK_TRXvziyBdhyHX5CrW7Szw',''),(4395,1,888,'8','JosefLiamn',''),(4396,1,888,'9','JosefLiamnXP',''),(4397,1,888,'4','(215) 246-0006',''),(4398,1,888,'3','pat.marques3@sfr.fr',''),(4399,1,888,'6','Three months ago, when I came home from work, \r\nI was watching the evening news and there they were just interviewing a housewife from Paris (I don\'t remember her name anymore) \r\nwho made a fortune by investing only $ 1500 in global automated trading systems (trading robots) without understanding anything in this thread. \r\nShe named three automated trading systems on which she earned more than $ 30,000,000 in 7 months by investing only $ 1,500, that is, $ 500 in each system. \r\nI thought to myself why the hell are they showing this, because this is just an advertisement for some kind of trading system services and nothing more. \r\nAnd besides, if everything is so great with them, why show it on the news and tell others. But in the end I decided to give it a try. \r\nThis news intrigued me, in the end I signed up, the manager called me, we set everything up, \r\nI invested $ 2100, $ 700 in each system and launched automated trading robots. For a whole week after the investment, \r\nI did not look at what was happening there, as there were a lot of things to do, but a week later when I opened my personal accounts in all three systems, \r\nI just silently opened my mouth and looked at my balance and wondered if I was sleeping because my passive income was quite is equal to $ 960,000! \r\nAnd in just three months my income was $ 11,520,850! \r\nTo hell with everything, just take it and do it, if I succeed then you will certainly succeed. \r\nHere are my passive income and links to these three sites that made me a millionaire: \r\n1. Income $ 5,359,673 \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc2JnE8&sa=D&sntz=1&usg=AFQjCNFcvJhMW5sGMUv7j_-ItTr8aGwmaw \r\n2. Income $ 3,752,098 \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1Jpgr&sa=D&sntz=1&usg=AFQjCNFtc0f-Znle2hYDkjNlqovjfh5SnQ \r\n3. Income $ 2,409,079 \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc2JnRF&sa=D&sntz=1&usg=AFQjCNE4usgK_TRXvziyBdhyHX5CrW7Szw',''),(4400,1,889,'8','cliff',''),(4401,1,889,'9','burkett',''),(4402,1,889,'4','(717) 422-3431',''),(4403,1,889,'3','toyotatuff@comcast.net',''),(4404,1,889,'6','cancel for 6-16-21',''),(4405,1,890,'8','Mike MacAdam',''),(4406,1,890,'9','Mike MacAdam',''),(4407,1,890,'4','(446) 582-0064',''),(4408,1,890,'3','no-replyMynckell@gmail.com',''),(4409,1,890,'6','Hi there \r\n \r\nIncrease your mannplumbingandheating.com SEO metrics values with us and get more visibility and exposure for your website. \r\n \r\nMore info: \r\nhttps://www.monkeydigital.org/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.org/product/ahrefs-dr50-ur70-seo-plan/ \r\nhttps://www.monkeydigital.org/product/trust-flow-seo-package/ \r\n \r\n \r\nthank you \r\nMike MacAdam',''),(4410,1,891,'8','David',''),(4411,1,891,'9','Alonso',''),(4412,1,891,'4','(281) 509-9327',''),(4413,1,891,'3','david@estimationhubinc.com',''),(4414,1,891,'6','Hi,\r\n\r\nI hope all is well with you, Just came across your Info and wanted to see if you need any help with Takeoffs.\r\n\r\nOur estimating team has multiple years of experience with reading design drawings and using technology to provide well-executed takeoffs. We can efficiently tabulate and deliver takeoffs on time.\r\n\r\nE-Hub Inc provides accurate Takeoffs and Cost Estimates for all types of Projects & Bids of New Construction, Remodel, or Renovation. Trade/Div. Estimates for GC’s, Subs, Home Builders, and construction companies.\r\n\r\nPlease share your project plans/drawings with us to receive our fees and turnaround time.\r\n\r\nWe committed to cost-effective results for all our clients, our company provides fast and experienced solutions.\r\n\r\nIf I’ve reached you in error, please forward this on to others within your organization who may have opportunities.\r\n\r\n\r\nDavid Alonso\r\nBDM at Estimation Hub INC\r\nE: david@estimationhubinc.com    \r\nP: (281) 509-9327\r\nA: 207 Greenway Plaza, Houston TX.',''),(4415,1,892,'8','JosephBar',''),(4416,1,892,'9','JosephBarCP',''),(4417,1,892,'4','(452) 186-0075',''),(4418,1,892,'3','jean-philippe.troussieux@orange.fr',''),(4419,1,892,'6','Get everything you wanted for a long time! Invest $ 367 and get passive income of $ 9200 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Ad=Lt&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ   <<<<<<<<<<<<<',''),(4420,1,893,'8','Max',''),(4421,1,893,'9','Bower',''),(4422,1,893,'4','(717) 881-2128',''),(4423,1,893,'3','precisionenterprise2020@gmail.com',''),(4424,1,893,'6','Hello I am a local general contractor in the area and I am working on bidding a kitchen remodel in Fayetteville. I am in need of someone to install a natural gas line for the new gas range. there is currently a natural gas line into the house for the furnace so a T would need to be installed and then a new line approx 20\' long will need installed to the new range location. Please let me know if this is something you can help with. at this point I am trying to get an estimate on the cost to place in my bid. Thank You',''),(4425,1,894,'8','JosephBar',''),(4426,1,894,'9','JosephBarCP',''),(4427,1,894,'4','(384) 068-4307',''),(4428,1,894,'3','0341880801@orange.fr',''),(4429,1,894,'6','The digital world: its advantages for revenue. Invest $ 596 and get passive income of $ 3000 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Lh=Vp&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ   <<<<<<<<<<<<<',''),(4430,1,895,'8','JosephBar',''),(4431,1,895,'9','JosephBarCP',''),(4432,1,895,'4','(867) 780-1206',''),(4433,1,895,'3','julien.daudon@orange.fr',''),(4434,1,895,'6','Start acting right now! Invest $ 378 and get passive income of $ 8100 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Ju=Kp&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ   <<<<<<<<<<<<<',''),(4435,1,896,'8','plera',''),(4436,1,896,'9','pleraGZ',''),(4437,1,896,'4','(815) 465-8062',''),(4438,1,896,'3','itvxoepl@yahoo.com',''),(4439,1,896,'6','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/yzrlcs99',''),(4440,1,897,'8','Eric',''),(4441,1,897,'9','Jones',''),(4442,1,897,'4','(555) 555-1212',''),(4443,1,897,'3','eric.jones.z.mail@gmail.com',''),(4444,1,897,'6','My name’s Eric and I just came across your website - mannplumbingandheating.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like mannplumbingandheating.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(4445,1,898,'8','Thomaskap',''),(4446,1,898,'9','ThomaskapKZ',''),(4447,1,898,'4','(858) 847-2100',''),(4448,1,898,'3','_bebydol_@free.fr',''),(4449,1,898,'6','Hey! We buy top-end video cards and mining equipment at closed auctions of customs confiscated. \r\nAnd we sell at once for 10 pieces in one order, at favorable prices both for you and for us. \r\nAll equipment is brand new. We deliver worldwide within two weeks after payment of the order. \r\nIf you are a miner or reseller, this is the perfect offer for you. \r\nAt the moment we have in stock: Mining farm for Chia coin, 60Tb - 500 pieces and \r\nGIGABYTE NVIDIA GeForce RTX 3090, GV-N3090AORUS X-24GD, 24GB, GDDR6X - 1300 pieces. \r\nYou can get acquainted with the assortment and prices here: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc30MFC&sa=D&sntz=1&usg=AFQjCNEKxorlqqm159Sm9cRk-7WfHI_FYA',''),(4450,1,899,'8','Lauren',''),(4451,1,899,'9','Green',''),(4452,1,899,'4','(410) 123-1234',''),(4453,1,899,'3','LaurenGreenmkt@gmail.com',''),(4454,1,899,'6','Hi,\r\nI came across your website and noticed that you were not ranking well for certain keyword phrases.\r\nI would like to send you a comprehensive SEO strategy & Proposal to help improve your Google rankings dramatically.\r\nWould that be okay? If so, I can send it to you sometime this week.\r\n\r\nIf this is a priority, I can also get on a call.\r\n\r\nKind Regards,\r\nLauren Green',''),(4455,1,900,'8','JosephBar',''),(4456,1,900,'9','JosephBarCP',''),(4457,1,900,'4','(052) 855-6747',''),(4458,1,900,'3','christine.bresselle@orange.fr',''),(4459,1,900,'6','The digital world: its advantages for revenue. Invest $ 577 and get passive income of $ 6700 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Zh=Sf&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ   <<<<<<<<<<<<<',''),(4460,1,901,'8','AL SAEED CORPORATION LLC',''),(4461,1,901,'9','AL SAEED CORPORATION LLC',''),(4462,1,901,'4','(321) 020-8616',''),(4463,1,901,'3','alsaeedcorporation963@gmail.com',''),(4464,1,901,'6','We are AL SAEED CORPORATION LLC \r\nWe give out loans to individuals/companies at 2% interest rate annually. We are interested in financing projects of large volume. The repayment period is 1 year to 30 years. \r\nCONTACT US: \r\nE-mail: adelhamad@alsaeedcorp.com',''),(4465,1,902,'8','MichaelEmere',''),(4466,1,902,'9','MichaelEmereDD',''),(4467,1,902,'4','(156) 164-8727',''),(4468,1,902,'3','dieu2012@hotmail.fr',''),(4469,1,902,'6','The strategy of big profit: where and how. Invest $ 367 and get passive income of $ 3300 per day   >>>>>>>>>>>>>>  http://www.google.com/url?q=http%3A%2F%2Fgo.tipirock4.com%2F0e42&sa=D&Xi=Lh&usg=AFQjCNFU9A-BJV6zo6zbiu_s4SpbUgqfZQ   <<<<<<<<<<<<<',''),(4470,1,903,'8','Dscissgap',''),(4471,1,903,'9','DscissgapHE',''),(4472,1,903,'4','(844) 724-5400',''),(4473,1,903,'3','revers@o5o5.ru',''),(4474,1,903,'6','[url=https://www.dizayn-studio.ru/dizayn-proekt-kottedzha]дизайн проект коттеджа[/url] \r\nTegs: дизайн проект в москве https://www.dizayn-studio.ru/dizayn/dizayn-proekt-kvartiry \r\n \r\n[u]дизайн проект в москве[/u] \r\n[i]дизайн таунхауса[/i] \r\n[b]лучшие дизайн студии интерьеров москвы[/b]',''),(4475,1,904,'8','MichaelEmere',''),(4476,1,904,'9','MichaelEmereDD',''),(4477,1,904,'4','(266) 674-6627',''),(4478,1,904,'3','odiallo51@yahoo.fr',''),(4479,1,904,'6','What is your attitude towards rich people? Invest $ 656 and get passive income of $ 8600 per day   >>>>>>>>>>>>>>  http://www.google.com/url?q=http%3A%2F%2Fgo.tipirock4.com%2F0e42&sa=D&Jr=Vg&usg=AFQjCNFU9A-BJV6zo6zbiu_s4SpbUgqfZQ   <<<<<<<<<<<<<',''),(4480,1,905,'8','MichaelEmere',''),(4481,1,905,'9','MichaelEmereDD',''),(4482,1,905,'4','(373) 052-5638',''),(4483,1,905,'3','pbmajam@hotmail.fr',''),(4484,1,905,'6','The digital world: its advantages for revenue. Invest $ 370 and get passive income of $ 7200 per day   >>>>>>>>>>>>>>  http://www.google.com/url?q=http%3A%2F%2Fgo.tipirock4.com%2F0e42&sa=D&Dr=Ja&usg=AFQjCNFU9A-BJV6zo6zbiu_s4SpbUgqfZQ   <<<<<<<<<<<<<',''),(4485,1,906,'8','plera',''),(4486,1,906,'9','pleraGZ',''),(4487,1,906,'4','(844) 482-3215',''),(4488,1,906,'3','sc4tzu96@icloud.com',''),(4489,1,906,'6','Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/yzsgmze8',''),(4490,1,907,'8','RafaelHaish',''),(4491,1,907,'9','RafaelHaishME',''),(4492,1,907,'4','(523) 558-1465',''),(4493,1,907,'3','rosa.tarasco.41@alice.it',''),(4494,1,907,'6','Hello, \r\n \r\nDownload Music Scene Releases: https://0daymusic.org \r\nGenre: Dance, Electro, House, Techno, Trance, Pop, Rock, Rap... \r\n \r\nBest regards, Rafael \r\n0DAY MP3s',''),(4495,1,908,'8','plera',''),(4496,1,908,'9','pleraGZ',''),(4497,1,908,'4','(638) 328-6536',''),(4498,1,908,'3','uziopl54@icloud.com',''),(4499,1,908,'6','Cryptocurrency rates are breaking records, which means you have the opportunity to make money on cryptocurrencies. Join our system and start making money with us. Go to system: https://tinyurl.com/yg9hvuab',''),(4500,1,909,'8','Mike MacDonald',''),(4501,1,909,'9','Mike MacDonald\r\nNE',''),(4502,1,909,'4','(640) 841-5501',''),(4503,1,909,'3','no-replyWat@gmail.com',''),(4504,1,909,'6','Howdy \r\n \r\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our plans here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike MacDonald\r\n \r\nSpeed SEO Digital Agency',''),(4505,1,910,'8','plera',''),(4506,1,910,'9','pleraGZ',''),(4507,1,910,'4','(772) 262-7843',''),(4508,1,910,'3','p4wd6vr5@icloud.com',''),(4509,1,910,'6','Cryptocurrency rates are breaking records, which means you have the opportunity to make money on cryptocurrencies. Join our system and start making money with us. Go to system: https://katzr.net/45ec4c',''),(4510,1,911,'8','Paula',''),(4511,1,911,'9','Nosydam',''),(4512,1,911,'4','(718) 594-5806',''),(4513,1,911,'3','Nosydamhd041@yahoo.com',''),(4514,1,911,'6','Hi there!\r\n\r\nMy name is Paula.\r\n\r\nYour website or a website that your organization hosts is infringing on a copyrighted images owned by me personally.\r\n\r\nTake a look at this report with the URLs to my images you used at www.mannplumbingandheating.com and my earlier publications to find the proof of my copyrights.\r\n\r\nDownload it now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/storage-89172.appspot.com/o/shared%2Ffile-qkcn5kvn3.html?alt=media&token=ec5e168f-8379-4f56-8230-6f4d70e09bd4&fileID=855315669185045940 \r\n\r\nI think you have deliberately infringed my legal rights under 17 USC Section 101 et seq. and could possibly be liable for statutory damages as high as $130,000 as set-forth in Section 504(c)(2) of the Digital Millennium Copyright Act (”DMCA”) therein.\r\n\r\nThis letter is official notice. I seek the removal of the infringing materials mentioned above. Please take note as a company, the Dmca demands you, to eliminate and disable access to the copyrighted materials upon receipt of this letter. If you don\'t cease the use of the above mentioned infringing materials a law suit will likely be commenced against you.\r\n\r\nI have a strong faith belief that use of the copyrighted materials referenced above as allegedly infringing is not authorized by the legal copyright proprietor, its agent, as well as law.\r\n\r\nI declare, under penalty of perjury, that the information in this notification is correct and that I am currently the legal copyright proprietor or am certified to act on behalf of the proprietor of an exclusive right that is presumably violated.\r\n\r\n\r\nBest regards,\r\nPaula Nosydam\r\n\r\n06/22/2021',''),(4515,1,912,'8','plera',''),(4516,1,912,'9','pleraGZ',''),(4517,1,912,'4','(713) 885-5537',''),(4518,1,912,'3','ksrnomop@icloud.com',''),(4519,1,912,'6','Cryptocurrency rates are breaking records, which means you have the opportunity to make money on cryptocurrencies. Join our system and start making money with us. Go to system: https://tiodroncountmenom.ga',''),(4520,1,913,'8','Kris',''),(4521,1,913,'9','Melag',''),(4522,1,913,'4','(610) 649-0400',''),(4523,1,913,'3','kmelag@tnward.com',''),(4524,1,913,'6','Hello,\r\n\r\nWe were recently awarded a new Parx Casino project out in Shippensburg,PA. The project is about 65,000 sf of new interior construction work and involves HVAC and Plumbing work. We would like to see if Mann Plumbing and Heating is interested in bidding the job.\r\n\r\nPlease advise on how you wish to proceed. Any questions, feel free to email me. We are in the estimating phase and logistics are being finalized. We should be receiving drawings this week or next week. I can send our current logistical information over if you wish to bid. \r\n\r\nThanks,\r\n\r\nKris Melag',''),(4525,1,914,'8','Stacy',''),(4526,1,914,'9','Carner',''),(4527,1,914,'4','(235) 689-5054',''),(4528,1,914,'3','stacyseomarketing@gmail.com',''),(4529,1,914,'6','Re: Fix Website Errors\r\n\r\nHello,\r\n\r\nMy name is Stacy and I am a Digital Marketing Specialists for a Creative Agency.\r\n\r\nI was doing some industry benchmarking for a client of mine when I came across your website.\r\n\r\nI noticed a few technical errors which correspond with a drop of website traffic over the last 2-3 months which I thought I would bring to your attention.\r\n\r\nAfter closer inspection it appears your site is lacking in 4 key criteria.\r\n\r\n1- Website Speed\r\n2- Link Diversity\r\n3- Domain Authority\r\n4- Competition Comparison\r\n\r\nI can send you over the report which shows all of the above and so much more which will help you at least improve your site, its rankings and traffic.\r\n\r\nI would love the chance to help as well however; this report will at least give you a gauge on the quality of what I do. If you are interested then please share your requirement and contact details.\r\n\r\nIs this the best email to send it to?\r\n\r\nSincerely,\r\nStacy Carner\r\nstacyseomarketing@gmail.com',''),(4530,1,915,'8','RafaelGrasy',''),(4531,1,915,'9','RafaelGrasyCI',''),(4532,1,915,'4','(187) 708-7301',''),(4533,1,915,'3','vilyam0841@mail.ru',''),(4534,1,915,'6','[url=http://webcam-chat-online-live-private.com/]Video chat webcam tits online[/url]',''),(4535,1,916,'8','Andrea',''),(4536,1,916,'9','Gomez',''),(4537,1,916,'4','(121) 239-1316',''),(4538,1,916,'3','Gomezshot634@gmail.com',''),(4539,1,916,'6','Hello there!\r\n\r\nMy name is Andrea.\r\n\r\nYour website or a website that your company hosts is violating the copyrighted images owned by me personally.\r\n\r\nCheck out this doc with the hyperlinks to my images you used at www.mannplumbingandheating.com and my previous publications to find the evidence of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/files-aaf52.appspot.com/o/shared%2Ffile-elfj9ufj23vck29.html?alt=media&token=f483ff61-42f4-4ca3-a72c-fabc9d9ba229&f=683818718629936923 \r\n\r\nI do think you\'ve deliberately violated my legal rights under 17 U.S.C. Section 101 et seq. and could be liable for statutory damage of up to $150,000 as set forth in Section 504(c)(2) of the Digital Millennium Copyright Act (DMCA) therein.\r\n\r\nThis message is official notice. I seek the elimination of the infringing materials mentioned above. Please take note as a company, the Digital Millennium Copyright Act requires you, to eliminate or/and terminate access to the infringing content upon receipt of this particular notification letter. If you do not stop the utilization of the above mentioned copyrighted materials a court action will be commenced against you.\r\n\r\nI have a strong belief that utilization of the copyrighted materials referenced above as allegedly violating is not authorized by the legal copyright proprietor, its legal agent, as well as legislation.\r\n\r\nI swear, under consequence of perjury, that the information in this message is correct and that I am the legal copyright owner or am authorized to act on behalf of the proprietor of an exclusive right that is presumably violated.\r\n\r\n\r\nBest regards,\r\nAndrea Gomez\r\n\r\n06/23/2021',''),(4540,1,917,'8','Eric',''),(4541,1,917,'9','Jones',''),(4542,1,917,'4','(555) 555-1212',''),(4543,1,917,'3','eric.jones.z.mail@gmail.com',''),(4544,1,917,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(4545,1,918,'8','Patrick',''),(4546,1,918,'9','Collins',''),(4547,1,918,'4','(540) 207-1133',''),(4548,1,918,'3','hailtothe47@yahoo.com',''),(4549,1,918,'6','Patrick Michael Collins: A young man came to our house last night for emergency plumbing after I had tried and failed to get 3 other \"24 hour\" plumbing operations to come.  He was personable, efficient, and capable.  Our pressure switch had failed and he quickly diagnosed and fixed the issue promptly.  He is a great asset to your company.',''),(4550,1,919,'8','MichaelEmere',''),(4551,1,919,'9','MichaelEmereDD',''),(4552,1,919,'4','(774) 730-4177',''),(4553,1,919,'3','tony-trial-44@hotmail.fr',''),(4554,1,919,'6','Passives Einkommen ab 138000 EUR pro Tag   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc3dCz4&sa=D&Aw=Aa&usg=AFQjCNFkDLgJKeJOkzBQkVEEHy4M8v9Ywg   <<<<<<<<<<<<<',''),(4555,1,920,'8','Jeff',''),(4556,1,920,'9','Hutchison',''),(4557,1,920,'4','(703) 401-1237',''),(4558,1,920,'3','Jeffhutchison@outlook.com',''),(4559,1,920,'6','Two year old (just weeks past warranty) Insinkerator garbage disposal stopped working. No previous indication of problem; just won’t respond to on/off switch. Checked breaker; dishwasher on same circuit has power. Please call Friday morning to set appointment. I’ll call you if I haven’t heard from you by 10:00. \r\n\r\n3690 Cascades Dr\r\nFayetteville, Pa \r\nPenn National',''),(4560,1,921,'8','MichaelEmere',''),(4561,1,921,'9','MichaelEmereDD',''),(4562,1,921,'4','(651) 572-3678',''),(4563,1,921,'3','lena-7013@orange.fr',''),(4564,1,921,'6','Ich habe alle meine Schulden abbezahlt und meinen Job gekundigt, weil ich ohne Berufserfahrung angefangen habe, mehr als 15000 EUR pro Tag zu verdienen, probiere es auch   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc3hEwJ&sa=D&Ly=Vi&usg=AFQjCNHByJ3rNy0oeS9HNkufsM1CWwYXJQ   <<<<<<<<<<<<<',''),(4565,1,922,'8','MichaelEmere',''),(4566,1,922,'9','MichaelEmereDD',''),(4567,1,922,'4','(844) 677-0702',''),(4568,1,922,'3','huev15@free.fr',''),(4569,1,922,'6','Verdienen Sie wie Elon Musk ab 15000 EUR pro Tag   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc3dCz4&sa=D&Fr=Dr&usg=AFQjCNFkDLgJKeJOkzBQkVEEHy4M8v9Ywg   <<<<<<<<<<<<<',''),(4570,1,923,'8','John',''),(4571,1,923,'9','Nagy',''),(4572,1,923,'4','(443) 250-5006',''),(4573,1,923,'3','windsc1591@yahoo.com',''),(4574,1,923,'6','Interested in install of HVAC system in new residence in Fairfield.  Possibly plumbing as well.',''),(4575,1,924,'8','TracyNaw',''),(4576,1,924,'9','TracyNawIM',''),(4577,1,924,'4','(561) 247-7273',''),(4578,1,924,'3','lethelpworld2@gmail.com',''),(4579,1,924,'6','Help me save the world - http://link-world.xyz/2Z7Dl',''),(4580,1,925,'8','Ashlay Hazalton',''),(4581,1,925,'9','Ashlay Hazalton',''),(4582,1,925,'4','(121) 776-3227',''),(4583,1,925,'3','ashlayhazalton36145@gmail.com',''),(4584,1,925,'6','Hi, this is Chris. \r\nWho win all online casinos by using FREE BONUS. \r\n \r\nWitch mean, I don’t really spend money in online casinos. \r\n \r\nBut I win every time, and actually, everybody can win by following my directions. \r\n \r\neven you can win! \r\n \r\nSo, if you’re the person, who can listen to someone really smart, you should just try!! \r\n \r\nThe best online casino, that I really recommend is, Vera&John. \r\nEstablished in 2010 and became best online casino in the world. \r\n \r\nThey give you free bonus when you charge more than $50. \r\nIf you charge $50, your bonus is going to be $50. \r\n \r\nIf you charge $500, you get $500 Free bonus. \r\nYou can bet up to $1000. \r\n \r\nJust try roulette, poker, black jack…any games with dealers. \r\nBecause dealers always have to make some to win and, only thing you need to do is to be chosen. \r\n \r\nDon’t ever spend your bonus at slot machines. \r\nYOU’RE GONNA LOSE YOUR MONEY!! \r\n \r\nNext time, I will let you know how to win in online casino against dealers!! \r\n \r\nDon’t forget to open your VERA&JOHN account, otherwise you’re gonna miss even more chances!! \r\n \r\n \r\n \r\nOpen Vera&John account (free) \r\nhttps://bit.ly/3wZkpco',''),(4585,1,926,'8','Noelle',''),(4586,1,926,'9','Brown',''),(4587,1,926,'4','(235) 689-5054',''),(4588,1,926,'3','noelleseowebmaster@gmail.com',''),(4589,1,926,'6','Re: Website Issues...?\r\n\r\nHello,\r\n\r\nMy name is Jason and I am a Digital Marketing Specialists for a Creative Agency.\r\n\r\nI was doing some industry bench marking for a client of mine when I came across your website.\r\n\r\nI noticed a few technical errors which correspond with a drop of website traffic over the last 2-3 months which I thought I would bring to your attention.\r\n\r\nAfter closer inspection, it appears your site is lacking in 4 key criteria.\r\n\r\n1- Website Speed\r\n2- Link Diversity\r\n3- Domain Authority\r\n4- Competition Comparison\r\n\r\nI would love the chance to send you all the errors that at least give you a gauge on the quality of what I do.  \r\n\r\nIf you are interested then please share your Phone number and requirements.\r\n\r\nOur prices are less than half of what other companies charge.\r\n\r\nThanks\r\nNoelle Brown\r\nnoelleseowebmaster@gmail.com',''),(4590,1,927,'8','hclickscomunxf',''),(4591,1,927,'9','hclickscomunxf',''),(4592,1,927,'4','(343) 844-5816',''),(4593,1,927,'3','hclicks@rambler.ru',''),(4594,1,927,'6','Hello! \r\nThis is Greg an I am owner of https://hClicks.com \r\nI just noticed that your site mannplumbingandheating.com does not contain push notifications and I would like to offer you the highest rates for this type of ad! \r\nOnly one step and you will start to get profit. \r\nDo you want to know our advantages? \r\n-> Anti-AdBlock Domains \r\n-> Personal approach \r\n-> Daily payments \r\nTo get the maximum rates, please send your request with a personal code to our support team hClicks-mannplumbingandheating.com-2021. \r\nWe are waiting for you \r\nhttps://hClicks.com',''),(4595,1,928,'8','Jackie',''),(4596,1,928,'9','Shank',''),(4597,1,928,'4','(717) 377-4296',''),(4598,1,928,'3','busterjls@hotmail.com',''),(4599,1,928,'6','Jackie Shank - FYI - We tightened the hose bib for the outside spigot that was to be replaced on Tues 6/29/21.  Only the inside faucet will need replaced.  Thanks.',''),(4600,1,929,'8','PavelWolfovich',''),(4601,1,929,'9','PavelWolfovich',''),(4602,1,929,'4','(308) 166-2335',''),(4603,1,929,'3','motiforsinew@predeshisca.bizml.ru',''),(4604,1,929,'6','Предлагаем наши самые лучшие услуги: \r\n\"Стопроцентное устранение интернет-сайтов мошенников или конкурентов!\" \r\nСпросите, каким способом это сделать?! \r\n- Опыт наших специалистов - больше десяти лет. \r\n- Уникальная технология. \r\n- Наращивание ссылочной массы посредством вирусных и порно ссылок. \r\n- Поисковая система молниеносно реагирует на наши используемые базы. \r\n- Все размещенные тексты с сайта спамятся, что делает их неуникальными. \r\n- У нашей компании очень большие возможности и опыт в этой сфере деятельности. \r\n \r\nСтоимость  6000py. \r\nПолная отчётность. \r\nОплата: Киви, Яндекс.Деньги, Bitcoin, Visa, MasterCard... \r\n \r\nТелега: @xrumers \r\nSkype: xrumer.pro \r\nWhatsApp: +7(977)536-08-36 \r\nэлектронка: support@xrumer.cc \r\n \r\nТолько эти! \r\nА тАкож Работаем со Студиями!',''),(4605,1,930,'8','David',''),(4606,1,930,'9','Weston',''),(4607,1,930,'4','(202) 991-6766',''),(4608,1,930,'3','david@workingcapitalstore1.xyz',''),(4609,1,930,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nI just have one quick question for you.\r\n\r\nWould you consider a Working Capital Loan for your business if the price and terms were acceptable?\r\n\r\nWe offer loans from 10k to 500k regardless of credit or collateral, and will give you a funding decision in less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.workingcapitalstore1.xyz\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nDavid Weston\r\nWorking Capital Store\r\nwww.workingcapitalstore1.xyz\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.workingcapitalstore1.xyz/unsubscribe,\r\n\r\nor write to:\r\n\r\nWorking Capital Store\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(4610,1,931,'8','Smith',''),(4611,1,931,'9','Roy',''),(4612,1,931,'4','(281) 509-9327',''),(4613,1,931,'3','smith@estimationhubinc.com',''),(4614,1,931,'6','Hi,\r\n\r\nWe do estimation for general contractors, subcontractors, developers, builders and civil engineers and we can do the take-off exceptionally quickly and precisely utilizing our taking off software (Plan swift and Bluebeam).\r\n\r\nSend us your plans / drawings in pdf format then we move forward\r\n\r\nThank you.\r\n\r\nSmith Roy\r\nSmith@estimationhubinc.com\r\n(281) 509 9327',''),(4615,1,932,'8','Mike Backer',''),(4616,1,932,'9','Mike Backer',''),(4617,1,932,'4','(548) 116-2307',''),(4618,1,932,'3','no-reply@google.com',''),(4619,1,932,'6','Greetings \r\n \r\nI have just took an in depth look on your  mannplumbingandheating.com for  the current search visibility and saw that your website could use an upgrade. \r\n \r\nWe will increase your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our plans here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\nregards \r\nMike Backer\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(4620,1,933,'8','Dscissgap',''),(4621,1,933,'9','DscissgapHE',''),(4622,1,933,'4','(053) 614-1713',''),(4623,1,933,'3','revers@o5o5.ru',''),(4624,1,933,'6','[url=https://www.dizayn-studio.ru/dizayn/dizayn-proekt-kvartiry]заказать дизайн проект[/url] \r\nTegs: дизайн интерьера в москве https://www.dizayn-studio.ru/ \r\n \r\n[u]дизайн проект квартиры цена[/u] \r\n[i]заказать дизайн проект квартиры[/i] \r\n[b]дизайн студии интерьеров москвы[/b]',''),(4625,1,934,'8','Kennethtom',''),(4626,1,934,'9','KennethtomVQ',''),(4627,1,934,'4','(657) 175-1478',''),(4628,1,934,'3','naummarkin5154@yandex.ru',''),(4629,1,934,'6','This is a unique place for fashionable women\'s clothing and accessories. \r\nWe offer our clients women\'s clothing, jewelry, cosmetics and health products, shoes, bags and much more. \r\nhttps://fas.st/Ujfha',''),(4630,1,935,'8','TheresaAlife',''),(4631,1,935,'9','TheresaAlifeTY',''),(4632,1,935,'4','(882) 255-0428',''),(4633,1,935,'3','lethelpworld3@gmail.com',''),(4634,1,935,'6','Find your destiny - http://link-world.xyz/2Z7Dl',''),(4635,1,936,'8','AndreaSib',''),(4636,1,936,'9','AndreaSibJU',''),(4637,1,936,'4','(436) 386-2084',''),(4638,1,936,'3','nickyxxx@alice.it',''),(4639,1,936,'6','Hello, \r\n \r\nDownload Music Scene Releases: http://0daymusic.org/premium.php \r\nServer\'s capacity 186 TB Music \r\nSupport for FTP, FTPS, SFTP, HTTP, HTTPS. \r\nDownload Dance, Electro, House, Techno, Trance, Pop, Rock, Rap... \r\n \r\nBest regards, \r\n0day MP3s',''),(4640,1,937,'8','Glennchurb',''),(4641,1,937,'9','GlennchurbPS',''),(4642,1,937,'4','(385) 272-7466',''),(4643,1,937,'3','sofiyasamylkin1987911be1+2878@bk.ru',''),(4644,1,937,'6','mannplumbingandheating.com, bndjcsfwhejvdkmcndhbsjcsdifefedjgf',''),(4645,1,938,'8','Erinacina',''),(4646,1,938,'9','CathyacinaMT',''),(4647,1,938,'4','(017) 775-7162',''),(4648,1,938,'3','m4rc4uga@gmail.com',''),(4649,1,938,'6','Today Lenovo - https://bit.ly/3w5LjyB',''),(4650,1,939,'8','Eric',''),(4651,1,939,'9','Jones',''),(4652,1,939,'4','(555) 555-1212',''),(4653,1,939,'3','eric.jones.z.mail@gmail.com',''),(4654,1,939,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(4655,1,940,'8','Yasuhiro Yamada',''),(4656,1,940,'9','Yasuhiro Yamada',''),(4657,1,940,'4','(065) 714-5242',''),(4658,1,940,'3','info.rohtopharmaceutical@gmail.com',''),(4659,1,940,'6','Hello, \r\n \r\n \r\nWith all due respect. If you are based in United States or Canada, I write to inform you that we need you to serve as our Spokesperson/Financial Coordinator for our company ROHTO PHARMACEUTICAL CO., LTD. and its clients in the United States and Canada. It\'s a part-time job and will only take few minutes of your time daily and it will not bring any conflict of interest in case you are working with another company. If interested reply me using this email address: admin@rohtopharmaceutical.jp \r\n \r\n \r\nYasuhiro Yamada \r\nSenior Executive Officer, \r\nROHTO Pharmaceutical Co.,Ltd. \r\n1-8-1 Tatsumi-nishi, \r\nIkuno-Ku, Osaka, 544-8666, \r\nJapan.',''),(4660,1,941,'8','Nicole',''),(4661,1,941,'9','Rideout',''),(4662,1,941,'4','(805) 372-1751',''),(4663,1,941,'3','nicole@alexadirectory.link',''),(4664,1,941,'6','Hey! \r\n\r\nHave you remembered to activate voice search for your business?\r\n\r\nActivate it here in 30 seconds:\r\n\r\nhttps://voicebizreg.xyz/mroe-cusotmers/?=mannplumbingandheating.com\r\n\r\nWithout activation, customers may not be able to find mannplumbingandheating.com with voice searches on Google, Amazon Alexa or mobile phones.\r\n\r\nNicole Rideout\r\nVoice Activation Follow-up Specialist\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\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://voicebizreg.xyz/unsubscribe.php/?site=mannplumbingandheating.com',''),(4665,1,942,'8','Ashleywhods',''),(4666,1,942,'9','CindywhodsMT',''),(4667,1,942,'4','(028) 444-4746',''),(4668,1,942,'3','leve.juli11@gmail.com',''),(4669,1,942,'6','Free world US - https://bit.ly/3qHfz1F',''),(4670,1,943,'8','Dru',''),(4671,1,943,'9','Miller',''),(4672,1,943,'4','(717) 713-4899',''),(4673,1,943,'3','dmm5346@gmail.com',''),(4674,1,943,'6','Looking for an estimate to replace a kitchen garbage disposal.',''),(4675,1,944,'8','Michaelciz',''),(4676,1,944,'9','MichaelcizVI',''),(4677,1,944,'4','(270) 888-5564',''),(4678,1,944,'3','sofiyasamylkin1987911be1+114851@bk.ru',''),(4679,1,944,'6','mannplumbingandheating.com, bndjcsfwhejvdkmcndhbsjcsdifefedjgf',''),(4680,1,945,'8','Mark',''),(4681,1,945,'9','Schaefer',''),(4682,1,945,'4','(561) 544-0719',''),(4683,1,945,'3','marks@nutricompany.com',''),(4684,1,945,'6','By way of introduction, I am Mark Schaefer with Nutritional Products International (nutricompany.com).\r\n\r\nWe serve international and domestic manufacturers seeking to gain more distribution within the United States.\r\n\r\nYour brand at mannplumbingandheating.com recently caught my attention, so I am contacting you to discuss the possibility of expanding your distribution reach.\r\n\r\nWe provide expertise in all areas of distribution, and our offerings include the following:\r\n\r\n* Rapid entry into the U.S. market.\r\n* Purchase Orders\r\n* FDA Regulatory Compliance\r\n* Active accounts with major U.S. distributors and retailers.\r\n* Our proven sales force has public relations, branding and marketing all under one roof.\r\n\r\nWe maintain active business relationships with over 200,000 distribution outlets across the nation, and we have a direct line of contact with executive-level buyers.\r\n\r\nOur company has a proven history of initiating accounts and placing orders with major distribution outlets. Our history allows us to have intimate and unique relationships with key buyers across the United States thus giving your brand a fast track to market in a professional manner.\r\n\r\nPlease contact me directly at 561-544-0719 or by replying, so we can discuss your brand further.\r\n\r\nKind Regards,\r\n\r\nMark Schaefer\r\nDirector Of Global Procurement\r\nNutritional Products International\r\nnutricompany.com\r\n101 Plaza Real S\r\nBoca Raton, FL 33432\r\nOffice: 561-544-0719',''),(4685,1,946,'8','CoreyPlalm',''),(4686,1,946,'9','CoreyPlalmHJ',''),(4687,1,946,'4','(485) 168-0727',''),(4688,1,946,'3','image81@inbox.ru',''),(4689,1,946,'6','This year turned out to be very difficult. But we have optimized and reduced the cost of our products! \r\nIt is almost impossible to find prices lower than ours, the sale is at the cost price level. \r\nWatch and be surprised by our super low prices    https://is.gd/72jG3I',''),(4690,1,947,'8','kyra',''),(4691,1,947,'9','crump',''),(4692,1,947,'4','(717) 446-4855',''),(4693,1,947,'3','kyracrump07@gmail.com',''),(4694,1,947,'6','Kyra  i am inquiring about the van I saw in the front parking lot if you could give me a call at 717-414-7384 thank you .',''),(4695,1,948,'8','Jackie',''),(4696,1,948,'9','Shank',''),(4697,1,948,'4','(717) 377-4296',''),(4698,1,948,'3','busterjls@hotmail.com',''),(4699,1,948,'6','Jackie Shank\r\nWould you please check with the technician who replaced my kitchen faucet.  I found that the garbage disposal was unplugged, so I plugged it back in.  When I went to use it, there was something hard down it it & it flew something very hard/black plastic piece up out of the sink.  Thought maybe he dropped something down in the sink when replacing the faucet & unplugged the disposal & then forgot to get it out & plug the disposal back in.  Thanks.',''),(4700,1,949,'8','Michaelpotte',''),(4701,1,949,'9','MichaelpotteSW',''),(4702,1,949,'4','(656) 308-2131',''),(4703,1,949,'3','herthag1983@bk.ru',''),(4704,1,949,'6','Hello \r\nSeasonal sale. \r\nYou will really like our prices. \r\nAll groups of consumer goods on our website: https://is.gd/drMCJH',''),(4705,1,950,'8','Alexander',''),(4706,1,950,'9','Brown',''),(4707,1,950,'4','(949) 979-5490',''),(4708,1,950,'3','abrown@reviewvionow.com',''),(4709,1,950,'6','\"Hi Mann Plumbing And Heating, \r\n\r\nDoes your reputation management platform help you remove bad reviews? \r\n\r\nI didn’t think so! \r\n\r\nWe’re the first of its kind reputation management platform that not only displays all reviews in one convenient location, but our proprietary technology (more on that below) disputes negative online reviews on Yelp, Google, FB and more and helps you remove them! \r\n\r\nOur technology uses natural language processing (machine learning, pardon the buzzword) and automation to identify illegitimate negative reviews and dispute them with the review sites. As simple as a click of a button, you can dispute all of your negative online reviews using our technology and review disputes that were developed by attorneys. In summary, you can dispute reviews, view reviews, comment on reviews, send review request surveys - text and email - all in our software. \r\n\r\nCan I walk you through a demo today or tomorrow? Here’s a link to my calendar to schedule a demo:\r\n\r\nhttps://reviewvio.com/contact-form/\r\n\r\nI look forward to hearing from you and helping you!\r\n\r\nSincerely,\r\n\r\nAlexander Brown | Reviewvio \r\n\r\nOffice (949) 979-5490\r\n\r\nabrown@reviewvionow.com\r\n\r\n9891 Irvine Center Drive, Suite #200, Irvine, CA 92618\r\n\r\nHear from our satisfied customers:\r\n\r\n“The team at ReviewVio did a great job for us. We had three bad reviews online that were damaging our online reputation. They got to work and one by one the reviews were removed.”\r\nDr. Bernard Gramlich, Owner Fairbanks Pharmacy, Rancho Santa Fe, California\"',''),(4710,1,951,'8','Eula',''),(4711,1,951,'9','Eula',''),(4712,1,951,'4','(864) 493-3106',''),(4713,1,951,'3','info@mannplumbingandheating.com',''),(4714,1,951,'6','Good day \r\n \r\nBuy all styles of Ray-Ban Sunglasses only 24.99 dollars.  If interested, please visit our site: lensoutlet.online\r\n \r\nHave a great time, \r\n\r\nEula \r\nContact | Chambersburg, PA | Mann Plumbing & Heating, LLC.',''),(4715,1,952,'8','Claudette',''),(4716,1,952,'9','Bath',''),(4717,1,952,'4','(403) 321-9826',''),(4718,1,952,'3','bmesoo.tnt@iturno.site',''),(4719,1,952,'6','Thinking about making some extra cash online? Don\'t do it until you\'ve read this first: http://bit.ly/how-to-start-an-affiliate-marketing-business',''),(4720,1,953,'8','Nicola',''),(4721,1,953,'9','Reid',''),(4722,1,953,'4','(972) 826-8652',''),(4723,1,953,'3','nreid@business4today.com',''),(4724,1,953,'6','Nicola Reid',''),(4725,1,954,'8','Adam',''),(4726,1,954,'9','Yarnold',''),(4727,1,954,'4','(941) 634-2345',''),(4728,1,954,'3','adam.yarnold@businesspromoted.online',''),(4729,1,954,'6','Did you know that mannplumbingandheating.com is currently ranking for ~ 143 keywords?  \r\n\r\nOut of these 143 only 9% keywords are ranking on page 1 of search engines.\r\n\r\nHere is 4 point action plan for  mannplumbingandheating.com:\r\n\r\n1. We are missing lot of keywords so we will need to prepare comprehensive keywords list that is targeted and highly relevant \r\n\r\n2. Your website needs to be optimized for search engines so that search engines can read your website accurately. I have analyzed your site in-depth and you can view your website audit report at\r\nhttps://businesspromoted.websiteauditserver.com/mannplumbingandheating.com\r\n\r\n3. At the time of review, mannplumbingandheating.com is linked to 177. However, many of these links are spammy. We will need to build high quality backlinks on variety of high authority domains. \r\n\r\n4. I could find find some facebook footprint for mannplumbingandheating.com (Facebook comments = 0, Facebook Shares = 975, Facebook reactions = 0). However, I could not find much activity on other social networking sites. Along with robust social media marketing strategy, I propose to run email newsletter campaign along with periodic blog posting on your website.  \r\n\r\n \r\nWhen you work with us, we will provide an entire team of four experts (SEO strategist, web developer, content writer, and link building strategist) to ensure that your site will rank for several keywords.\r\n\r\nLet me know a good time and phone number to reach you and I will give you a call to discuss our plan of action. Alternatively, you can directly call me on +1-941-209-5828\r\n\r\nAdam',''),(4730,1,955,'8','SEO X Press Digital Agency',''),(4731,1,955,'9','SEO X Press Digital Agency',''),(4732,1,955,'4','(311) 705-0403',''),(4733,1,955,'3','corradolan32@gmail.com',''),(4734,1,955,'6','Howdy \r\n \r\n \r\nI have just took a look on your SEO for  mannplumbingandheating.com for its SEO ranks and saw that your website could use a boost. \r\n \r\n \r\nWe will improve your Ranks organically and safely, using only whitehat methods, \r\n \r\n \r\nIf interested, please email us \r\n \r\nsupport@digital-x-press.com \r\n \r\n \r\nregards \r\nMike Morgan\r\n \r\nSEO X Press Digital Agency \r\nhttps://www.digital-x-press.com',''),(4735,1,956,'8','SicfpSkimi',''),(4736,1,956,'9','SicfpSkimiHE',''),(4737,1,956,'4','(163) 743-3000',''),(4738,1,956,'3','revers@o5o5.ru',''),(4739,1,956,'6','[url=https://signprint24.ru/]уф печать на досках[/url] \r\nTegs: уф печать на ежедневниках https://signprint24.ru/ \r\n \r\n[u]уф печать на пластике цена[/u] \r\n[i]уф печать на пластике цена в москве[/i] \r\n[b]уф печать на поверхностях[/b]',''),(4740,1,957,'8','David',''),(4741,1,957,'9','Weston',''),(4742,1,957,'4','(202) 991-6766',''),(4743,1,957,'3','david@workingcapitalstore1.xyz',''),(4744,1,957,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nI just have one quick question for you.\r\n\r\nWould you consider a Working Capital Loan for your business if the price and terms were acceptable?\r\n\r\nWe offer loans from 10k to 500k regardless of credit or collateral, and will give you a funding decision in less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.workingcapitalstore1.xyz\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nDavid Weston\r\nWorking Capital Store\r\nwww.workingcapitalstore1.xyz\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.workingcapitalstore1.xyz/unsubscribe,\r\n\r\nor write to:\r\n\r\nWorking Capital Store\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(4745,1,958,'8','Tai',''),(4746,1,958,'9','Hill',''),(4747,1,958,'4','(703) 397-4742',''),(4748,1,958,'3','Jamalth97@icloud.com',''),(4749,1,958,'6','Hi I was contacting your company in regards to of you offer plumbing apprenticeship programs ?',''),(4750,1,959,'8','Beatricedrype',''),(4751,1,959,'9','EvelyndrypeMT',''),(4752,1,959,'4','(675) 244-8463',''),(4753,1,959,'3','remi1.bisinotto1@gmail.com',''),(4754,1,959,'6','Best of Ali - https://bit.ly/3hx9fpd',''),(4755,1,960,'8','Victoria',''),(4756,1,960,'9','Baumgardner',''),(4757,1,960,'4','(717) 253-8371',''),(4758,1,960,'3','vlbaumgardner@gmail.com',''),(4759,1,960,'6','Good afternoon,\r\n\r\nMy name is Victoria Baumgardner. My family is looking for a sponsorship or donations towards my daughter’s Autism Service. She is a 4 year old curly red haired little girl that needs a little extra help when it comes to her safety and behavior concerns. She was diagnosed with Autism in the Fall of 2020 and it was recommended she get a service dog and has been approved. However due to her young age and trained needs of the dog it will cost about $20,000. With the help of our community so far we are up to $7,000 but still shy of our goal. We are going through 4 paws for ability, who are a 501c3 non-profit organization.\r\n\r\nWe are holding a cornhole tournament on September 25th at Bourbon Mill in New Oxford and would love to sell t-shirts with sponsors on the back of them, you could be one of those sponsors. We are asking for $100 to be listed on the back or $250 for the logo to be printed on the back of the shirt (you would need to send me the file of your logo in order to do this related to copyright). If you just simply wanted to donate, that would be truly amazing as well.\r\n\r\nIf you would like more information feel free to visit her website at leaveherwild.net\r\n\r\n Thanks for the consideration! And please reach out if you have any questions, I would be glad to answer them\r\n\r\n \r\n\r\nThanks!\r\n\r\nEvie and the rest of the Baumgardner Family',''),(4760,1,961,'8','Nick Wilson',''),(4761,1,961,'9','Nick Wilson',''),(4762,1,961,'4','(801) 466-6846',''),(4763,1,961,'3','nick@saaytext.com',''),(4764,1,961,'6','Hi Its Nick, \r\n \r\nWe have a business texting platform that will help your team engage customers, leads & past clients through texting. \r\n \r\nRates are $49 for 30,000 texts, which is under 0.002 per message. \r\n \r\nYou can bulk text your WHOLE LIST or send two-way texts and get replies. \r\n \r\n \r\nCheck it out @ http://SaayText.com \r\n \r\nThank you, \r\nNick',''),(4765,1,962,'8','Velda',''),(4766,1,962,'9','Wemyss',''),(4767,1,962,'4','(734) 299-3780',''),(4768,1,962,'3','velda.wemyss71@gmail.com',''),(4769,1,962,'6','By now most people have heard of Bitcoin.\r\n\r\nUnlike traditional stock markets, Bitcoin has its own cycles of ups and downs. There is a model called \"Stock to Flow\" price predication model by PlanB (an anonymous Dutch hedge fund manager).\r\n\r\nForbes calls this model one of the most accurate price predication model of Bitcoin. https://www.forbes.com/sites/stevenehrlich/2021/04/29/demystifying-bitcoins-remarkably-accurate-price-prediction-model-stock-to-flow/?sh=60d4c376476a\r\n\r\nAccording to this model, Bitcoin can hit a price USD$150,000 to USD$300,000 by Dec 2021 or Jan 2022. You can follow this legend\'s twitter account here: https://twitter.com/100trillionUSD\r\n\r\nCurrently Bitcoin trades around USD$30,000, if PlanB is correct, we can expect a 5 to 10 times gain in Bitcoin in the next 6 to 9 months!\r\n\r\nDon\'t have enough money to buy a whole Bitcoin? No worries, anyone can buy a fraction of Bitcoin. For example, if you have $350, you can buy 1/00 (1%) of a Bitcoin!\r\n\r\nTo get started, you can buy your first Bitcoin (or a small fraction of it) below:\r\n\r\nGo to this url and simply sign up with your email and password and enjoy 10% off your trading fees for life!  ->https://bit.ly/33yXOqz\r\n\r\n\r\n\r\nIf you want to take advantage of the crazy discounts now, you can buy cryptocurrecncies at Binance here -> https://bit.ly/33yXOqz (biggest crypto exchange in the world).\r\n\r\nhttps://bit.ly/33yXOqz  -> Use this link to sign up at Binance for free and get 10% off ALL your trades in Binance forever!',''),(4770,1,963,'8','Mike Miln',''),(4771,1,963,'9','Mike Miln',''),(4772,1,963,'4','(324) 204-4652',''),(4773,1,963,'3','handyluna32@gmail.com',''),(4774,1,963,'6','Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your %domain% website? \r\nHaving a high DA score, always helps \r\n \r\nGet your %domain% to have an amazing DA score in Moz with us today and rip the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nthank you \r\nMike Miln\r\n \r\nsupport@monkeydigital.co',''),(4775,1,964,'8','Larry',''),(4776,1,964,'9','Scott',''),(4777,1,964,'4','(470) 284-7295',''),(4778,1,964,'3','larry.swiftbid@gmail.com',''),(4779,1,964,'6','Hi,\r\n\r\nWe are an estimation company. We do both residential & commercial estimates.\r\n\r\nDo you have any projects for estimation? If yes, Just send over the plans or drawings and mention the scope of work that you would like us to estimate. Our charges are very economical as compared to the market (50percent discount). If you agree on that Quotation, we will start our proceedings immediately.\r\n\r\nIf you have any query just reply to this email or call me so I can assist you further. Thanks\r\n\r\nBest Regards,\r\n\r\nLarry Scott\r\nOffices: Atlanta, GA & Chicago, IL\r\nSwift Estimating LLC',''),(4780,1,965,'8','Jamestug',''),(4781,1,965,'9','JamestugON',''),(4782,1,965,'4','(431) 636-5435',''),(4783,1,965,'3','no-replyRondus@gmail.com',''),(4784,1,965,'6','Good day!  mannplumbingandheating.com \r\n \r\nDo you know the easiest way to state your products or services? Sending messages exploitation feedback forms can permit you to simply enter the markets of any country (full geographical coverage for all countries of the world).  The advantage of such a mailing  is that the emails that may be sent through it will find yourself in the mailbox that is meant for such messages. Causing messages using Feedback forms is not blocked by mail systems, which means it\'s absolute to reach the recipient. You\'ll be able to send your supply to potential customers who were previously unavailable thanks to email filters. \r\nWe offer you to check our service for complimentary. We\'ll send up to fifty thousand message for you. \r\nThe cost of sending one million messages is us $ 49. \r\n \r\nThis message is created automatically. Please use the contact details below to contact us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.',''),(4785,1,966,'8','Dscissgap',''),(4786,1,966,'9','DscissgapHE',''),(4787,1,966,'4','(157) 777-6082',''),(4788,1,966,'3','revers@o5o5.ru',''),(4789,1,966,'6','[url=https://www.dizayn-studio.ru/]дизайн интерьера квартир стоимость[/url] \r\nTegs: дизайн проект квартиры москва https://www.dizayn-studio.ru/dizayn/dizayn-proekt-kvartiry \r\n \r\n[u]дизайн интерьера квартиры[/u] \r\n[i]интерьер квартиры[/i] \r\n[b]дизайн-студия интерьеров[/b]',''),(4790,1,967,'8','MichaelEmere',''),(4791,1,967,'9','MichaelEmereDD',''),(4792,1,967,'4','(277) 351-6868',''),(4793,1,967,'3','travis@theprisonersdilemma.com',''),(4794,1,967,'6','Altcoins that will make you a millionaire   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc4cmzn&sa=D&Cs=Hg&usg=AFQjCNEP3pFIxmdAcAgRw9u1yiPvJjQPhA   <<<<<<<<<<<<<',''),(4795,1,968,'8','Eric',''),(4796,1,968,'9','Jones',''),(4797,1,968,'4','(555) 555-1212',''),(4798,1,968,'3','eric.jones.z.mail@gmail.com',''),(4799,1,968,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(4800,1,969,'8','DmitriyPetrov',''),(4801,1,969,'9','DmitriyPetrov',''),(4802,1,969,'4','(757) 255-5242',''),(4803,1,969,'3','consfania@presatkosu.bizml.ru',''),(4804,1,969,'6','Добрый день! \r\nНаша компания предлагает самые лучшие прогоны, способные \"угробить\" сайт ваших конкурентов. Всего от 2 тыс рублей. \r\n- Стопроцентный результат. Сайты конкурентов \"умрут\". \r\n- Максимальное число негативных фитбеков. \r\n- Собрана специфическая база - выжимка максимально сильных площадок из 10 000 000 ресурсов (спамные, порно, вирусные и т.д.). Действует безотказно. \r\n- Прогон осуществляем одновременно с 4 серверов. \r\n- Непрерывный спам вирусных ссылок на официальный емейл. \r\n- Можем растянуть как угодно по времени. \r\n- Прогон с запрещёнными ключами. \r\n- На условиях заказа 2 сайтов - хорошие скидки. \r\n \r\nЦена  $80 \r\nПолная отчётность. \r\nОплата: Qiwi, Yandex.Money, Bitcoin, Visa, MasterCard... \r\n \r\nTelgrm: @xrumers \r\nSkype: xrumer.pro \r\nWhatsApp: +7(977)536-08-36 \r\nэлектронка: support@xrumer.cc \r\n \r\nТолько эти! \r\nА тАкож Работаем со Студиями!',''),(4805,1,970,'8','Mike Scott',''),(4806,1,970,'9','Mike Scott\r\nNE',''),(4807,1,970,'4','(844) 525-7434',''),(4808,1,970,'3','grayceschiro32@gmail.com',''),(4809,1,970,'6','Howdy \r\n \r\nWe will increase your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our services below, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Scott\r\n \r\nSpeed SEO Digital Agency',''),(4810,1,971,'8','Harris',''),(4811,1,971,'9','Walton',''),(4812,1,971,'4','(714) 598-1342',''),(4813,1,971,'3','harris.jwalton@gmail.com',''),(4814,1,971,'6','Most effective, high delivery-open rate, highest inbox rate on today\'s market. Now you have a chance to try our fast, perfect bulk email delivery service for the best price. Different sending speeds, inbox rates for different prices, here are a few examples, based on 100.000 sent messages:\r\n- BASIC SENDING --> $30 USD (good delivery rate, low inbox rate, perfect for clean old, dirty list)\r\n- PRO SENDING --> $55 USD (perfect delivery rate, acceptable inbox rate, this is the best option for a budget marketing campaign)\r\n- EXPERT SENDING --> $150 USD (highest delivery rate, best inbox rate, high-end email delivery service)\r\n\r\nAll our services are much more valuable than other bulk email service providers (MailChimp, GetResponse, SendGrid, Mailjet, etc...), while we are able to use (for send your marketing campaign) the SMTP servers with the highest reputation what other providers CAN\'T do for this low prices! If you don\'t believe, then TRY our service and enjoy the result.\r\nIf you have any other questions or want to try-order our service, then please write a short message to here: jasmine.hfuller@gmail.com\r\n\r\nIMPORTANT: The email address that we used as SENDER in this message isn\'t monitored, please DON\'T reply!\r\n\r\nHave a nice day,\r\nHarris',''),(4815,1,972,'8','MichaelEmere',''),(4816,1,972,'9','MichaelEmereDD',''),(4817,1,972,'4','(483) 141-7818',''),(4818,1,972,'3','sebchti@hotmail.fr',''),(4819,1,972,'6','Earn over $ 7,000,000 on altcoins   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc4ckxi&sa=D&Gt=Zf&usg=AFQjCNHWvyBJV8dDSVZri0fbrNeioHNymQ   <<<<<<<<<<<<<',''),(4820,1,973,'8','CoreyPlalm',''),(4821,1,973,'9','CoreyPlalmHJ',''),(4822,1,973,'4','(202) 061-3775',''),(4823,1,973,'3','image81@inbox.ru',''),(4824,1,973,'6','This year turned out to be very difficult. But we have optimized and reduced the cost of our products! \r\nIt is almost impossible to find prices lower than ours, the sale is at the cost price level. \r\nWatch and be surprised by our super low prices    https://is.gd/72jG3I',''),(4825,1,974,'8','MichaelEmere',''),(4826,1,974,'9','MichaelEmereDD',''),(4827,1,974,'4','(144) 076-0647',''),(4828,1,974,'3','simone_x90@hotmail.it',''),(4829,1,974,'6','Manage to earn millions of dollars on altcoins   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc4i9X0&sa=D&Cu=Mu&usg=AFQjCNE2EmOUFVcE166-vAX00JJWo-a21Q   <<<<<<<<<<<<<',''),(4830,1,975,'8','udsssthw tort nkdstrw https://google.com/',''),(4831,1,975,'9','udsssthw tort nkdstrw https://google.com/',''),(4832,1,975,'4','(765) 831-1167',''),(4833,1,975,'3','kqtssaqnut@mail.ru',''),(4834,1,976,'8','Jessica',''),(4835,1,976,'9','Stone',''),(4836,1,976,'4','(785) 427-5001',''),(4837,1,976,'3','jessicastone236@gmail.com',''),(4838,1,976,'6','Hi,\r\n\r\nI want to contribute high-quality content to your website in form of a guest post through a simple 3 step process.\r\n\r\n1. I will send three amazing topic ideas that are up to the trend and your readers\' interest\r\n2. You need to choose one topic out of those.\r\n3. I will then send a high-quality, plagiarism-free article on that topic.\r\n\r\nYou will just have to publish it with one do-follow backlink to my website. It will be a win-win.\r\n\r\nPlease let me know if we shall start with step 1?\r\n\r\nBest,\r\n\r\nJessica Stone',''),(4839,1,977,'8','Geraldo',''),(4840,1,977,'9','Roemer',''),(4841,1,977,'4','(801) 283-6426',''),(4842,1,977,'3','marketing@atompark.com',''),(4843,1,977,'6','Hill billy motha fukka!\r\n\r\nhttps://cbdcop.com/cbd-oil/whole-greens-cbd-oil/',''),(4844,1,978,'8','Eric',''),(4845,1,978,'9','Jones',''),(4846,1,978,'4','(555) 555-1212',''),(4847,1,978,'3','eric.jones.z.mail@gmail.com',''),(4848,1,978,'6','My name’s Eric and I just found your site mannplumbingandheating.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE https://talkwithwebvisitors.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(4849,1,979,'8','AndreaSib',''),(4850,1,979,'9','AndreaSibJU',''),(4851,1,979,'4','(635) 744-5773',''),(4852,1,979,'3','c.wolgen@tele2.nl',''),(4853,1,979,'6','Hello, \r\n \r\nNew Club Music: https://0dayshouse.blogspot.com/ \r\nStyle: Hosue, Euro-House, Minimal, Club, Trance, Techno... \r\n \r\nBest regards, Andrea',''),(4854,1,980,'8','Thomas',''),(4855,1,980,'9','Rodriguez',''),(4856,1,980,'4','(202) 991-6766',''),(4857,1,980,'3','thomas@wealthcapital.xyz',''),(4858,1,980,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nWould you consider a Working Capital Loan for your business if the price and terms were acceptable?\r\n\r\nWealth Capital is a Direct Lender offering loans from 10kk to 500k with funding decisions is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.wealthcapital.xyz\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nThomas Rodriguez\r\nWealth Capital\r\nwww.wealthcapital.xyz\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.wealthcapital.xyz/unsubscribe,\r\n\r\nor write to:\r\n\r\nWealth Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(4859,1,981,'8','DerekLop',''),(4860,1,981,'9','DerekLopGG',''),(4861,1,981,'4','(510) 404-7761',''),(4862,1,981,'3','qriqua@tele2.nl',''),(4863,1,981,'6','Hey, \r\n \r\nAlternative Rock, Metal Music https://alternativesrock.blogspot.com/ \r\nPRIVATE FTP ACCES. \r\n \r\nBest regards, Derek',''),(4864,1,982,'8','Jackie',''),(4865,1,982,'9','Shank',''),(4866,1,982,'4','(717) 377-4296',''),(4867,1,982,'3','busterjls@hotmail.com',''),(4868,1,982,'6','Jackie Shank - 551 Willow St, Chambersburg, PA 17202\r\n\r\nJust checking in on the reimbursement of payment for my faucet.  I checked w/ Choice Home Warranty and they stated payment was approved on 6/23/21 & payment would have been made to Mann 1 month later.  Thanks.',''),(4869,1,983,'8','Ilse',''),(4870,1,983,'9','Ilse',''),(4871,1,983,'4','(306) 448-4767',''),(4872,1,983,'3','ilse.mckinney43@gmail.com',''),(4873,1,983,'6','Hi\r\n\r\nOur Medical-Grade Toenail Clippers is the safest and especially recommended for those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, thickened nails etc..\r\n\r\nGet yours: thepodiatrist.online\r\n\r\nTo your success,\r\n\r\nIlse\r\nContact | Chambersburg, PA | Mann Plumbing & Heating, LLC.',''),(4874,1,984,'8','Heather',''),(4875,1,984,'9','Rick',''),(4876,1,984,'4','(908) 246-0250',''),(4877,1,984,'3','abolyn@rocketmail.com',''),(4878,1,984,'6','Hi! I sent payment for the invoice but wanted to see if you install water filter systems on a kitchen sink? I hate clutter in the counter so hoping to have an under the sink filter if possible.  Thanks!',''),(4879,1,985,'8','Mike Carrington',''),(4880,1,985,'9','Mike Carrington',''),(4881,1,985,'4','(554) 483-3267',''),(4882,1,985,'3','davidmitchell7162@gmail.com',''),(4883,1,985,'6','Hello \r\n \r\nI have just took an in depth look on your  mannplumbingandheating.com for its SEO Trend and saw that your website could use an upgrade. \r\n \r\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nMike Carrington\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(4884,1,986,'8','postingzvbk',''),(4885,1,986,'9','postingzvbk',''),(4886,1,986,'4','(861) 367-6248',''),(4887,1,986,'3','pydinakatalja1990@rambler.ru',''),(4888,1,986,'6','Good whatever time of day it is where you are! \r\n \r\n \r\nWidespread placement of ads on the online for growth of factors influencing consumer behaviour. \r\nhttps://xn----ftbeand5abdikisgee.xn--p1ai/home/ \r\n \r\nBehavioural factors are certain actions of users on the website, such as: \r\nlogging in to the website, viewing pages, time spent on the web page, “clicks” on links, returns to the website. \r\n \r\nUTO: \r\nWidespread placement of your ads on the Internet in order to attract potential customers. \r\nGrowth of behavioural factors occurs by the large-scale placement of your ads without specifying the address of your online resource, but with the indication of other features identifying only your company according to which you directly become first in the top. These features can include a phone, a unique name of the company or website, an identifier (a number, a product code, services, promotions), a physical address of the firm and etc. \r\n \r\nAIM: \r\nThe large-scale attraction of customers to your website, products and services. \r\nOrganic growth of behavioural factors. \r\n \r\nYOUR BENEFIT: \r\nAn increase in internet resource visitors who will find your website directly from ads using search engines as well as through additional results of a search itself related to a the widest range of internet queries on your subject. \r\n \r\nADVANTAGES OF THIS AD: \r\n1. Scale. \r\n2. High-speed placement. \r\n3. Cost. \r\n4. Topic orientated. \r\n5. The widest reach. \r\n6. Regionality. \r\n7. Organic growth of behavioural factors. \r\n \r\nREASONS TO ORDER MASS ADS PLACEMENT ON THE INTERNET ДЛЯ GROWTH OF FACTORS INFLUENCING CONSUMER BEHAVIOUR: \r\n \r\n1.Large-scale attraction of customers to your services and products through direct traffic from ads. \r\n2.Promotion of your internet resource, due to search beginning to additionally show it for the widest range of search browser queries based on your topic. \r\n3. The absence of \"filters\" and \"bans\" of search engines, due to ads being published without an indication of an link to the website. \r\n4. An increase in internet resource traffic, which leads to an increase in orders and an expansion of the client base. \r\n5. \"Warm traffic\", since only interested users visit the internet resource. \r\n6. Attraction of legal entities and individuals. \r\n7. Analysis of demand for services and goods. \r\n8.Publication of your ads in different countries around the world. \r\n \r\nWHERE ADS ARE PUBLISHED: \r\n \r\nAds are placed: on billboards, on forums, in guest books, in comments, in catalogues. \r\nAds are placed on your: websites, landing pages, phones, YouTube videos, social media accounts, and on links to your other ads. \r\n \r\nSEARCH ENGINE SANCTIONS: \r\nIn this type of ad a ban by search engine is not possible, since ads are published without specifying an link to the website. \r\n \r\nWorking method: \r\nYou send us the text of the ad, where your identifier or unique name is indicated at the end of the message, according to which an engaged customer can easily and quickly find your web page in search engine results in order to get further information about your service. \r\nTo do this, identifier or a unique name must be published in the appropriate section of your web page и easily be found in search results. \r\n \r\n \r\nMacros: \r\nRandomisation of ads is carried out according to the formula, which is accepted by many programs. As a result of randomisation, a lot of unique ads are obtained from one ad variant. \r\n \r\nThis is achieved by physically synomising the ad text, while the meaning of the messages does not change and remains understandable. \r\n[url=https://xn----ftbeand5abdikisgee.xn--p1ai/home/] \r\n \r\nMass online ads for organic growth of factors influencing consumer behaviour.[/url]',''),(4889,1,987,'8','Eliza',''),(4890,1,987,'9','Haight',''),(4891,1,987,'4','(612) 399-7876',''),(4892,1,987,'3','eliza.haight@outlook.com','');
INSERT INTO `wp_gf_entry_meta` VALUES (4893,1,987,'6','https://www.youtube.com/watch?v=rw4z-rSwNjY\r\n\r\nCheck out the \"predictions\" in this video on world affairs in 2010! Mindblowing stuff\r\n\r\nIn January 2010, Project Camelot received 11 pages of information from an insider who was physically present at a meeting of Senior Masons in the City of London in 2005. What was discussed is chilling to the bone.\r\n\r\nWhat our source reports is this:\r\n\r\n*  There is a planned Third World War, which will be nuclear and biological. Our source believes that this is on track to be initiated within the next 18-24 months.\r\n\r\n *  It is planned to begin with a strike by Israel on Iran. Either Iran or China will be provoked into a nuclear response. After a brief nuclear exchange, there will be a ceasefire. The world will be thrown into fear and chaos - all carefully engineered.\r\n\r\n*  The extreme state of tension will be used to justify heavy social and military controls in all western first world nations. Plans are already in place for that.\r\n\r\n*  During the nuclear ceasefire, there is planned to be a covert release of biological weapons. These will initially be targeted against the Chinese. As our source chillingly told us, \"China will catch a cold\". Biological warfare will spread further, to the west. Infrastructure will be critically weakened.\r\n\r\n*  This is intended to be just the beginning. After this, a full nuclear exchange would be triggered: the \"real\" war, with widespread destruction and loss of life. Our source tells us that the planned population reduction through these combined means is 50%. He heard this figure stated in the meeting.\r\n\r\nThis horrific scenario has been planned for generations. The first two world wars were part of the set-up for this final apocalypse - as is the centralization of financial resources that was precipitated with the equally well-planned financial collapse of October 2008.\r\n\r\nAs if all this were not enough, our source speculates this is all set against the backdrop of a coming \"geophysical event\" - the same kind of event as was experienced by our ancestors approximately 11,500 years ago. If this event occurs - not necessarily expected in 2012, but sometime in the next decade - it would destroy civilization as we know it, dwarfing even the effects of a nuclear war.\r\n\r\nI asked the question to our source: If there\'s an expected catastrophe, then why initiate a Third World War? His answer, for the first time to me, made terrible sense.\r\n\r\nThe real goal, he explained, is to set up the post-catastrophic world. To ensure that this \"New World\" [note the term] is the one the controllers want, totalitarian control structures need to be in place when the catastrophe occurs - with an excuse that the populace will accept and demand them. Martial law in the right, carefully chosen countries before the catastrophe occurs will enable the \"right\" people to survive and prosper in the post-catastrophic world, and the beginning of the next 11,500 year cycle. What may have been carefully planned on a covert global scale, for the last several generations, is nothing less than who will inherit the Earth.\r\n\r\nWho are the \"right\" people? The white Caucasians. This may be why the name of this project is The Anglo-Saxon Mission. Hence the justification for the planned genocide of the Chinese people - so that the New World is inherited by \"us\", not \"them\".\r\n\r\nOur source was not informed about the planned fate of the second and third world countries such as those in South America, Africa and Asia. But he presumes that these would be allowed to fend for themselves and probably not survive well - or maybe not at all. The totalitarian military governments of the western, white, people are set to be the inheritors.\r\n\r\nThis is a plan so evil, so racist, so diabolical, so huge, that it almost defies belief. But it all aligns with what many commentators, researchers and whistleblowing insiders have been identifying for some years now. For me personally, it\'s the clearest picture yet of why the world is the way it is, and why the secrets are protected so fiercely: it may be all about racial supremacy. The Fourth Reich is alive and well.\r\n\r\nAstonishingly, our source was not pessimistic. He stressed, as do we and many others, that consciousness is awakening rapidly all over the planet and that THESE PLANNED EVENTS ARE NOT INEVITABLE. If ever there was a reason to work closely together to raise awareness of the real threat to us all, this is it.\r\n\r\nWatch this video, listen carefully to the strong message of hope and encouragement, and spread it far and wide. We stand for the potential magnificence of a united humanity that knows no racial boundaries or distinctions. Whether or not the catastrophe occurs - and many, including ourselves, maintain that it will not - we must co-create our own future, claim our power, and do whatever we can to alert people to the dangers around us... so that we can be stronger together, for the sake of our descendants and for the heritage of all living beings on Planet Earth.',''),(4894,1,988,'8','Erica',''),(4895,1,988,'9','Diehl',''),(4896,1,988,'4','(717) 404-9875',''),(4897,1,988,'3','elhard@ship.edu',''),(4898,1,988,'6','I live in Shippensburg, PA.  We have copper pipes in our basement and we\'ve experienced three pinhole leaks over the past several years that have caused water to flood the basement.  We were told it was the cheapest version of piping that was offered in copper pipes and it was suggested that we get a quote on replacing them.  We have a furnace with a boiler that provides heat and hot water.  Please feel free to contact me at my cell number listed to set up a date and time for an estimate.\r\n\r\nThank you.',''),(4899,1,989,'8','MichaelEvexy',''),(4900,1,989,'9','MichaelEvexyPZ',''),(4901,1,989,'4','(885) 828-5571',''),(4902,1,989,'3','frank.stobbe@gmail.com',''),(4903,1,989,'6','Hello. \r\nWhy did you remove the news that the inhabitants of Australia and New Zealand began to earn massively from $15,000 per week using cryptocurrency without doing anything, just investing once? \r\nIs this due to the fact that people began to quit en masse? \r\nI also registered in this system and now my passive income ranges from $27000 to $35000 per week https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc4qpHr&sa=D&Sq=Mq&usg=AFQjCNGi73hD0ca-Pznb1dMX6SOtxVHJ2A \r\nEven my parents who do not understand computers, and even more so in cryptocurrencies, easily earn from $13,000 per week https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc4qpHr&sa=D&Kq=Nu&usg=AFQjCNGi73hD0ca-Pznb1dMX6SOtxVHJ2A',''),(4904,1,990,'8','Sarah',''),(4905,1,990,'9','Velasquez',''),(4906,1,990,'4','(480) 897-4759',''),(4907,1,990,'3','sarah@ourperfectabode.com',''),(4908,1,990,'6','Hi,\r\n\r\nFor those fixing up a fixer-upper, there are many factors to consider including when to call in professionals to help with larger issues - from plumbing to electrical work. \r\n\r\nAnd after the remodel is complete, it’s time for yet another choice: should the home be rented or sold?\r\n\r\nI’d love to offer guidance on this matter to your site visitors in the form of an advice-driven article. Does this topic sound like one that would be of interest to them? If so, I can get started on the article right away.\r\n\r\nThank you!\r\nSarah Velasquez\r\nhttps://ourperfectabode.com/blog/',''),(4909,1,991,'8','Eric',''),(4910,1,991,'9','Jones',''),(4911,1,991,'4','(555) 555-1212',''),(4912,1,991,'3','eric.jones.z.mail@gmail.com',''),(4913,1,991,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(4914,1,992,'8','Chrissy',''),(4915,1,992,'9','Allan',''),(4916,1,992,'4','(805) 372-3366',''),(4917,1,992,'3','chrissy@youralexadirectory.link',''),(4918,1,992,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://voiceregbiz1.xyz/mroe-cusotmers/?=mannplumbingandheating.com\r\n\r\n\r\nChrissy\r\nVoice Activation Follow-up Specialist\r\nYour Alexa Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://voiceregbiz1.xyz/unsubscribe.php/?site=mannplumbingandheating.com',''),(4919,1,993,'8','callmeaninc',''),(4920,1,993,'9','callmeanincHM',''),(4921,1,993,'4','(565) 163-3276',''),(4922,1,993,'3','temptheatsecon1981@mail.ru',''),(4923,1,993,'6','call me whatsapp: https://wa.me/79910404425',''),(4924,1,994,'8','Steven',''),(4925,1,994,'9','Taylor',''),(4926,1,994,'4','(347) 331-0929',''),(4927,1,994,'3','steven.ustopestimatorsinc@gmail.com',''),(4928,1,994,'6','Hi,\r\n\r\nWe are an estimation services providing company. We provide Cost Estimation & Quantities Take-Off services for General As well as for Subcontractors. We cover every trade that you wish to bid, whether you work with CSI Divisions or your unique classification. We use the latest estimating software backed up by professionals with over a decade of experience. Send us the plans or link to any FTP site so that we can review the plans and submit you very economical quotes. Thanks\r\nFeel free to contact me if you have any questions or just want to know more about our services.',''),(4929,1,995,'8','MilenaCib',''),(4930,1,995,'9','MilenaCib',''),(4931,1,995,'4','(352) 151-5165',''),(4932,1,995,'3','milenaCib@hotmail.com',''),(4933,1,995,'6','Yes\r\nhttp://nerena.tk/chk/21',''),(4934,1,996,'8','Eric',''),(4935,1,996,'9','Jones',''),(4936,1,996,'4','(555) 555-1212',''),(4937,1,996,'3','eric.jones.z.mail@gmail.com',''),(4938,1,996,'6','My name’s Eric and I just came across your website - mannplumbingandheating.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like mannplumbingandheating.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(4939,1,997,'8','Sdvillnom',''),(4940,1,997,'9','SdvillnomHE',''),(4941,1,997,'4','(766) 050-4154',''),(4942,1,997,'3','revers@o5o5.ru',''),(4943,1,997,'6','[url=https://chimmed.ru/manufactors/catalog?name=%D0%9B%D0%A2%D0%9E]ЛТО[/url] \r\nTegs: ЛабДепо ООО https://chimmed.ru/manufactors/catalog?name=%D0%9B%D0%B0%D0%B1%D0%94%D0%B5%D0%BF%D0%BE+%D0%9E%D0%9E%D0%9E \r\n \r\n[u]сстарпуре[/u] \r\n[i]стагогмбх[/i] \r\n[b]стеамлинетечно[/b]',''),(4944,1,998,'8','Melinda',''),(4945,1,998,'9','Maley',''),(4946,1,998,'4','(717) 609-5103',''),(4947,1,998,'3','bshs2012mromito@gmail.com',''),(4948,1,998,'6','Inquiring about a sewer smell everytime we use the dishwasher, washer, shower, etc.',''),(4949,1,999,'8','Roman',''),(4950,1,999,'9','Smith',''),(4951,1,999,'4','(315) 636-4446',''),(4952,1,999,'3','allproestimation11@gmail.com',''),(4953,1,999,'6','Hi,\r\n \r\nAre you constantly facing bid submission deadlines?  Are you concerned about the high cost of getting accurate estimates?  Do you often fail to bid because you lack the personnel to do the estimates or because you were hard-pressed for time? We can make your bidding process easier. We provide accurate material take-offs and cost estimates at low cost and with fast turnaround. Let us be your trusted partner. \r\n\r\nOur team of professionals has been providing these services to General Contractors, Subs (Framing, Painting, Flooring, Drywall, Carpentry, MEP etc.), Developers, Home Builders and Individual Home-Owners…and we are proud to say that our clients have been very satisfied with our service. We offer Residential and Commercial Estimates and we cover every trade that you wish to bid, whether you work with CSI Divisions or your unique classification. We use the latest estimating software backed up with professionals with over a decade of experience. Our charges depend on the scope of work and working area, the exact cost percentage could be quoted from the plans/drawings. \r\n                                                                                                                                                                                 \r\nThe following are the main working divisions:\r\n\r\n•             Division 01 — General Requirement\r\n•             Division 02 — Site Construction\r\n•             Division 03 — Concrete\r\n•             Division 04 — Masonry\r\n•             Division 05 — Metals\r\n•             Division 06 — Wood and Plastics\r\n•             Division 07 — Thermal and Moisture Protection\r\n•             Division 08 — Doors and Windows\r\n•             Division 09 — Finishes\r\n•             Division 10 — Specialties\r\n•             Division 11 — Equipment\r\n•             Division 12 — Furnishings\r\n•             Division 13 — Special Construction\r\n•             Division 14 — Conveying Systems\r\n•             Division 15 — Mechanical/Plumbing\r\n•             Division 16 — Electrical\r\n\r\n\r\n \r\nPLEASE SEND US PLANS AND WE WOULD BE VERY GLAD TO PROVIDE YOU WITH THE PROPOSAL FOR FEE AND TURNAROUND. (PROPOSAL IS FREE)\r\n\r\n\r\nKind Regards,\r\n\r\nRoman Smith\r\nBusiness Development Manager\r\nAll Pro Estimation LLC. 	 \r\nServing All States of America and Canada',''),(4954,1,1000,'8','SEO X Press Digital Agency',''),(4955,1,1000,'9','SEO X Press Digital Agency',''),(4956,1,1000,'4','(813) 752-3173',''),(4957,1,1000,'3','joelculpepper3262@gmail.com',''),(4958,1,1000,'6','Greetings \r\n \r\n \r\nI have just checked  mannplumbingandheating.com for  the current search visibility and saw that your website could use a boost. \r\n \r\n \r\nWe will enhance your Ranks organically and safely, using only whitehat methods, \r\n \r\n \r\nIf interested, please email us \r\n \r\nsupport@digital-x-press.com \r\n \r\n \r\nregards \r\nMike Dean\r\n \r\nSEO X Press Digital Agency \r\nhttps://www.digital-x-press.com',''),(4959,1,1001,'8','David',''),(4960,1,1001,'9','Mackey',''),(4961,1,1001,'4','(585) 368-8865',''),(4962,1,1001,'3','mackeyjr.dmj@gmail.com',''),(4963,1,1001,'6','In March ,2021;I contacted several Plumbers to get estimates for an upflush ,basement bathroom. Mann was the only one that responded. I received a text response the same day and a call the next day. Chandler called and showed up at the appointed time. An estimate was written and the work began soon after. Your plumbers, SHANE and Tyler did an excellent job and I can\'t thank Shane enough for his attention to detail, that enabled the project to be such a success. I would like to share some completed pictures with Shane and your office. Could I get an email address so I can do that.\r\nThank you, David Mackey.',''),(4964,1,1002,'8','Daniel',''),(4965,1,1002,'9','Lee',''),(4966,1,1002,'4','(213) 784-0979',''),(4967,1,1002,'3','Daniel.edgeestimates@gmail.com',''),(4968,1,1002,'6','Hi,\r\n\r\nI hope you are doing well.\r\n\r\nEdge provides highly accurate construction estimates to contractors and subcontractors, incorporating location-specific material, labor pricing data using our developed construction cost databases based on postcode. We have successfully served in all trades from airport highways to simple house extension projects.\r\n\r\nOur construction estimates are at competitive market rates of $185.00 on average. (It can be less or more depending on the scope of the project)\r\n\r\nWith the use of the latest Software and, we can ensure accuracy in our estimates. We also offer on-demand vendor pricing.\r\n\r\nJust submit your drawing plans(dropbox link or portal link etc.) and specifications, we prepare a quote including turnaround time and the delivery date of the estimate.\r\n\r\nOur customer support is available 24/7 to help you.\r\n\r\nThanks,\r\n\r\nDANIEL LEE\r\nSales & Marketing Manager\r\n--------------------------------\r\n4319 W Jefferson Blvd • Los Angeles, CA 90016\r\nMobile: (213) 784-0979',''),(4969,1,1003,'8','Thomas',''),(4970,1,1003,'9','Rodriguez',''),(4971,1,1003,'4','(202) 991-6766',''),(4972,1,1003,'3','thomas@wealthcapital.xyz',''),(4973,1,1003,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nWould you consider a Working Capital Loan for your business if the price and terms were acceptable?\r\n\r\nWealth Capital is a Direct Lender offering loans from 10kk to 500k with funding decisions is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.wealthcapital.xyz\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nThomas Rodriguez\r\nWealth Capital\r\nwww.wealthcapital.xyz\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.wealthcapital.xyz/unsubscribe,\r\n\r\nor write to:\r\n\r\nWealth Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(4974,1,1004,'8','Kyle',''),(4975,1,1004,'9','Clemmer',''),(4976,1,1004,'4','(484) 896-8017',''),(4977,1,1004,'3','Kyle.d.clemmer@gmail.com',''),(4978,1,1004,'6','Good evening,\r\n\r\nWe will be moving from our residence at 915 Black Gap Road in Fayetteville at the end of the month. Due to this, we would like to cancel our yearly maintenance plans. \r\n\r\nThank you,\r\nKyle Clemmer',''),(4979,1,1005,'8','Tiana',''),(4980,1,1005,'9','Marie',''),(4981,1,1005,'4','(171) 870-8086',''),(4982,1,1005,'3','Mariestudio563@hotmail.com',''),(4983,1,1005,'6','Hi there!\r\n\r\nMy name is Tiana.\r\n\r\nYour website or a website that your organization hosts is violating the copyright-protected images owned by myself.\r\n\r\nTake a look at this report with the links to my images you utilized at www.mannplumbingandheating.com and my earlier publication to find the proof of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/files-d6e6c.appspot.com/o/download-dl3vf9h4nbk4.html?alt=media&token=743c1c96-7bd0-451c-8000-4bac7d3894ae&ID=168438433536336045 \r\n\r\nIn my opinion you have willfully violated my legal rights under 17 USC Section 101 et seq. and could possibly be liable for statutory damage as high as $120,000 as set forth in Section 504 (c)(2) of the Digital millennium copyright act (”DMCA”) therein.\r\n\r\nThis message is official notification. I demand the elimination of the infringing materials mentioned above. Take note as a company, the Digital Millennium Copyright Act demands you, to remove and deactivate access to the copyrighted materials upon receipt of this letter. In case you don\'t cease the use of the previously mentioned copyrighted materials a court action will be started against you.\r\n\r\nI have a good self-belief that utilization of the copyrighted materials described above as allegedly violating is not authorized by the legal copyright owner, its legal agent, or the laws.\r\n\r\nI declare, under consequence of perjury, that the information in this letter is correct and that I am the legal copyright proprietor or am certified to act on behalf of the owner of an exclusive right that is presumably infringed.\r\n\r\n\r\nSincerely,\r\nTiana Marie\r\n\r\n08/11/2021',''),(4984,1,1006,'8','chris',''),(4985,1,1006,'9','mattingly',''),(4986,1,1006,'4','(812) 267-4610',''),(4987,1,1006,'3','chrismatt2008@gmail.com',''),(4988,1,1006,'6','\"Over the last year COVID-19 has obviously had a huge impact on businesses large and small. One area in particular has been especially hard hit--the ability of banks and other lenders to make loans to small and medium sized businesses just like yours. \r\n\r\nEven as things begin to open back up, we still see these banks lagging behind. That\'s why we have partnered with Mulligan Funding, to provide seamless, affordable, and transparent funding solutions. They offer:\r\n\r\n- Loan amounts ranging from $10,000 - $1,000,000\r\n- Funding as soon as the business day after approval\r\n- Competitive rates and terms\r\n\r\n\r\nIf you\'d like to learn about our financing options, please click www.mulliganfunding.com/personalizedms\r\n and a representative will get in touch to answer your questions and guide you through the process!\"\"\r\n\r\n\r\nChris Mattingly\r\nPersonalized Merchant Services LLC\r\n231 landon Court\r\nFlorence KY 41042\r\n812-267-4610\r\nchrismatt2008@gmail.com\"',''),(4989,1,1007,'8','Roman',''),(4990,1,1007,'9','Smith',''),(4991,1,1007,'4','(315) 636-4446',''),(4992,1,1007,'3','allproestimation11@gmail.com',''),(4993,1,1007,'6','Hi,\r\n \r\nAre you constantly facing bid submission deadlines?  Are you concerned about the high cost of getting accurate estimates?  Do you often fail to bid because you lack the personnel to do the estimates or because you were hard-pressed for time? We can make your bidding process easier. We provide accurate material take-offs and cost estimates at low cost and with fast turnaround. Let us be your trusted partner. \r\n\r\nOur team of professionals has been providing these services to General Contractors, Subs (Framing, Painting, Flooring, Drywall, Carpentry, MEP etc.), Developers, Home Builders and Individual Home-Owners…and we are proud to say that our clients have been very satisfied with our service. We offer Residential and Commercial Estimates and we cover every trade that you wish to bid, whether you work with CSI Divisions or your unique classification. We use the latest estimating software backed up with professionals with over a decade of experience. Our charges depend on the scope of work and working area, the exact cost percentage could be quoted from the plans/drawings. \r\n                                                                                                                                                                                 \r\nThe following are the main working divisions:\r\n\r\n•             Division 01 — General Requirement\r\n•             Division 02 — Site Construction\r\n•             Division 03 — Concrete\r\n•             Division 04 — Masonry\r\n•             Division 05 — Metals\r\n•             Division 06 — Wood and Plastics\r\n•             Division 07 — Thermal and Moisture Protection\r\n•             Division 08 — Doors and Windows\r\n•             Division 09 — Finishes\r\n•             Division 10 — Specialties\r\n•             Division 11 — Equipment\r\n•             Division 12 — Furnishings\r\n•             Division 13 — Special Construction\r\n•             Division 14 — Conveying Systems\r\n•             Division 15 — Mechanical/Plumbing\r\n•             Division 16 — Electrical\r\n\r\n\r\n \r\nPLEASE SEND US PLANS AND WE WOULD BE VERY GLAD TO PROVIDE YOU WITH THE PROPOSAL FOR FEE AND TURNAROUND. (PROPOSAL IS FREE)\r\n\r\n\r\nKind Regards,\r\n\r\nRoman Smith\r\nBusiness Development Manager\r\nAll Pro Estimation LLC. 	 \r\nServing All States of America, Canada, and New Zealand',''),(4994,1,1008,'8','Mike Farmer',''),(4995,1,1008,'9','Mike Farmer',''),(4996,1,1008,'4','(765) 201-1158',''),(4997,1,1008,'3','tylerfong7162@gmail.com',''),(4998,1,1008,'6','Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your mannplumbingandheating.com website? \r\nHaving a high DA score, always helps \r\n \r\nGet your mannplumbingandheating.com to have a DA between 50 to 60 points in Moz with us today and rip the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nthank you \r\nMike Farmer\r\n \r\nsupport@monkeydigital.co',''),(4999,1,1009,'8','SmithFen',''),(5000,1,1009,'9','SmithFenJN',''),(5001,1,1009,'4','(811) 151-6831',''),(5002,1,1009,'3','smithMugjn@nettirautakauppa.com',''),(5003,1,1009,'6','Sputnik V vaccination has begun in Slovakia. The stocking of the Russian vaccine to the innate land was accompanied away a political calumny and led to the relinquishment of Prime Minister Igor Matovich and a realignment of the government. As a result, the sphere received the Russian vaccine, in do a number on of the authenticity that neither the European regulator nor the WHO has until now approved it. \r\nIn neighboring Hungary, which approved the drop of Sputnik in February as the understandable in Europe, more than 50% of the matured masses has already been vaccinated; in Russia - a bantam more than 10%. In Slovakia, five thousand people signed up toward the Sputnik vaccination. \r\nYou\'re making a mistake. I can defend my position. Write to me in PM, we will discuss.. You can be familiar with another article on this area of study at this tie-in  [url=\"https://queer.rtyui.online\"]https://resourcefurniture.rtyui.online[/url]',''),(5004,1,1010,'8','Charles',''),(5005,1,1010,'9','Walker',''),(5006,1,1010,'4','(717) 264-6285',''),(5007,1,1010,'3','mrdavid2000_2000@yahoo.com',''),(5008,1,1010,'6','Dear Mann Plumbing & Heating,\r\n\r\n  I have an appointment with Chandler scheduled for 23 Aug between 8:30 AM and 9:30 AM.  I would like to cancel that appointment.  My wife and I decided to go with the company that has been doing our maintenance for the past 6 years.  They gave us a proposal that looks good to me and my wife.  Please cancel the appointment I have with Chandler.   Thanks again!   Regards,  Charles D. Walker, 2882 Big Dipper Lane Chambersburg PA 17202',''),(5009,1,1011,'8','Ronald',''),(5010,1,1011,'9','Wise',''),(5011,1,1011,'4','(301) 992-9462',''),(5012,1,1011,'3','rwise1976@centurylink.net',''),(5013,1,1011,'6','We need to get a new bathroom faucet installed. We installed a new vanity and just need a new faucet that we have bought installed. Can you do this job and what would be an estimated cost?',''),(5014,1,1012,'8','Trina',''),(5015,1,1012,'9','Jonas',''),(5016,1,1012,'4','(416) 290-7794',''),(5017,1,1012,'3','jonas.trina@gmail.com',''),(5018,1,1012,'6','mannplumbingandheating.com + My company?\r\n\r\nGood morning, \r\n\r\nPaying attention to your online presence throughout the internet is important to stay visible to any potential new customers.\r\n\r\n\r\nThe fastest way in promoting a web page. Simply input your website URL. It’s highly possible that businesses like yours tried this service already.\r\n\r\nTo effortlessly win your competitors on the internet you must have this terrific service:\r\n\r\nhttps://iseo-store.com\r\n\r\n\r\n\r\nBest regards,\r\nWe offer the best IT services you can purchase on our shop for making big money in a small business, still not enthusiastic about getting new customers? Here is a straightforward, 1-click unsubscribe link: https://iseo-store.com/?unsubscribe=mannplumbingandheating.com',''),(5019,1,1013,'8','George',''),(5020,1,1013,'9','Gerges',''),(5021,1,1013,'4','(213) 293-3672',''),(5022,1,1013,'3','george@adworxppc.com',''),(5023,1,1013,'6','Hi There,\r\n\r\nI could see that you\'re doing Google Ads already and I think I got something interesting for you. We would love to manage your Google Ads account 10 days for free without charging you any management fees for it and without any obligations to continue, so we can prove first we\'re capable of driving a higher number of conversions to your business.\r\nIf that\'s something you are interested to talk about don\'t hesitate to reply to our email or give us a call on +1 213 293 3672.\r\nhttps://adworxppc.com\r\n\r\nIf you\'re not interested please reply back with: Not Ineterested Along with your website and we will add your website to our do not contact list, and you will not receive any future communications from our company.\r\nThanks for understanding',''),(5024,1,1014,'8','Ambrose',''),(5025,1,1014,'9','Ambrose',''),(5026,1,1014,'4','(831) 426-5389',''),(5027,1,1014,'3','ambrose.palfreyman18@gmail.com',''),(5028,1,1014,'6','New Multifunction Anti-theft Waterproof Sling Bag\r\n\r\nThe best ever SUPER Sling Bag: Drop-proof/Anti-theft/Scratch-resistant/USB Charging\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: fashiondaily.online\r\n\r\nThank You, \r\n\r\nAmbrose\r\nContact | Chambersburg, PA | Mann Plumbing & Heating, LLC.',''),(5029,1,1015,'8','Kristen',''),(5030,1,1015,'9','Martinez',''),(5031,1,1015,'4','(212) 274-0097',''),(5032,1,1015,'3','Martinezstock784@hotmail.com',''),(5033,1,1015,'6','Hi there!\r\n\r\nMy name is Kristen.\r\n\r\nYour website or a website that your organization hosts is infringing on a copyright protected images owned by me personally.\r\n\r\nCheck out this doc with the links to my images you used at www.mannplumbingandheating.com and my previous publication to obtain the evidence of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/files-d6e6c.appspot.com/o/download-3dk3nvbv4ju3n.html?alt=media&token=0471b204-69d8-4a6c-914a-31a622163a92&f=740743585585029611 \r\n\r\nI really believe you have deliberately infringed my legal rights under 17 U.S.C. Sec. 101 et seq. and could possibly be liable for statutory damage of up to $120,000 as set-forth in Section 504 (c) (2) of the Digital Millennium Copyright Act (DMCA) therein.\r\n\r\nThis letter is official notice. I demand the removal of the infringing materials mentioned above. Please be aware as a service provider, the Dmca demands you, to remove and terminate access to the copyrighted content upon receipt of this notification letter. In case you do not cease the use of the aforementioned infringing content a court action will be initiated against you.\r\n\r\nI do have a good faith belief that utilization of the copyrighted materials referenced above as allegedly infringing is not permitted by the copyright proprietor, its agent, or the laws.\r\n\r\nI swear, under consequence of perjury, that the information in this notification is accurate and that I am the legal copyright owner or am permitted to act on behalf of the owner of an exclusive and legal right that is presumably infringed.\r\n\r\n\r\nRegards,\r\nKristen Martinez\r\n\r\n08/18/2021',''),(5034,1,1016,'8','Wtcissgap',''),(5035,1,1016,'9','WtcissgapHE',''),(5036,1,1016,'4','(881) 755-7131',''),(5037,1,1016,'3','revers@o5o5.ru',''),(5038,1,1016,'6','[url=https://wtlan.ru/catalog/SHkafyWT/]19 дюймовый шкаф в крыму[/url] \r\nTegs: телекоммуникационный шкаф 19 18u 900х600х500 https://wtlan.ru/catalog/SHkafyWT/ \r\n \r\n[u]шкаф телекоммуникационный 19u патч панели кросс панели hyperline[/u] \r\n[i]телекоммуникационный шкаф 42 u напольный 42u 600х800 дверь стекло штк-м-42.6.8-1ааа цмо[/i] \r\n[b]шкаф напольный 19-дюймовый 42u 2055x600х1000 мм вхшхг ral 9005 ttr-4261-dd-ral9005[/b]',''),(5039,1,1017,'8','HdcffSkimi',''),(5040,1,1017,'9','HdcffSkimiHE',''),(5041,1,1017,'4','(660) 476-6634',''),(5042,1,1017,'3','revers@o5o5.ru',''),(5043,1,1017,'6','[url=https://pomestie-park.com/bankety/timbilding/]организация тимбилдинга в москве[/url] \r\nTegs: организация тимбилдинга на корпоративе https://pomestie-park.com/bankety/timbilding/ \r\n \r\n[u]бар серебряный бор[/u] \r\n[i]свадебные банкеты в москве[/i] \r\n[b]банкет на свадьбу москва[/b]',''),(5044,1,1018,'8','Mike Nash',''),(5045,1,1018,'9','Mike Nash\r\nNE',''),(5046,1,1018,'4','(314) 865-6153',''),(5047,1,1018,'3','juliaholliday7162@gmail.com',''),(5048,1,1018,'6','Hi \r\n \r\nWe will enhance your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our plans here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Nash\r\n \r\nSpeed SEO Digital Agency',''),(5049,1,1019,'8','Amandanes',''),(5050,1,1019,'9','AshleynesNU',''),(5051,1,1019,'4','(646) 441-4626',''),(5052,1,1019,'3','remi1.bisinotto@gmail.com',''),(5053,1,1019,'6','Looking for new acquaintances - http://2track.info/PrTi',''),(5054,1,1020,'8','HdcffSkimi',''),(5055,1,1020,'9','HdcffSkimiHE',''),(5056,1,1020,'4','(265) 466-6778',''),(5057,1,1020,'3','revers@o5o5.ru',''),(5058,1,1020,'6','[url=https://pomestie-park.com/bankety/svadba/banketnie_zali_dlya_svadbi/]банкет на свадьбу москва[/url] \r\nTegs: свадебный банкет в ресторане https://pomestie-park.com/bankety/svadba/ \r\n \r\n[u]свадебный кейтеринг москва[/u] \r\n[i]свадебный фуршет на природе[/i] \r\n[b]ресторан серебряный бор[/b]',''),(5059,1,1021,'8','Tracy',''),(5060,1,1021,'9','Jackson',''),(5061,1,1021,'4','(235) 689-5054',''),(5062,1,1021,'3','tracywebseomarketing@gmail.com',''),(5063,1,1021,'6','Re: Fix Website Errors\r\n\r\nI found few errors which correspond with a drop of website traffic over the last 2-3 months which I thought I would bring to your attention.\r\nI would be happy to send you errors and the solutions that would help to improve your website performance.\r\n\r\nSincerely,\r\nTracy Jackson\r\ntracywebseomarketing@gmail.com',''),(5064,1,1022,'8','Sdvillnom',''),(5065,1,1022,'9','SdvillnomHE',''),(5066,1,1022,'4','(076) 123-0775',''),(5067,1,1022,'3','revers@o5o5.ru',''),(5068,1,1022,'6','[url=https://chimmed.ru/]bioron[/url] \r\nTegs: bioron gmbh https://chimmed.ru/ \r\n \r\n[u]Henan Tianfu Chemical[/u] \r\n[i]Henkel[/i] \r\n[b]Henkel Electronic Materials[/b]',''),(5069,1,1023,'8','Sdvillnom',''),(5070,1,1023,'9','SdvillnomHE',''),(5071,1,1023,'4','(273) 507-5265',''),(5072,1,1023,'3','revers@o5o5.ru',''),(5073,1,1023,'6','[url=https://chimmed.ru/]abcr.com[/url] \r\nTegs: abhishek impex https://chimmed.ru/ \r\n \r\n[u]laserbiolabs.com[/u] \r\n[i]lat - labor- und analysen-technik gmbh[/i] \r\n[b]lauda[/b]',''),(5074,1,1024,'8','Daviddrype',''),(5075,1,1024,'9','DaviddrypeLA',''),(5076,1,1024,'4','(000) 436-1346',''),(5077,1,1024,'3','davidKak582@europemail.com',''),(5078,1,1024,'6','Make money, not war! Financial Robot is what you need. \r\n------> [url=http://thankfulhannl.herocryptos.cn/]thankfulhannl.geronmonet.cn[/url] \r\n------>   defeatedeafee.herocryptos.cn',''),(5079,1,1025,'8','groolfmem',''),(5080,1,1025,'9','groolfmem',''),(5081,1,1025,'4','(220) 048-8606',''),(5082,1,1025,'3','Vodssnala@gmail.com',''),(5083,1,1025,'6','Cryptocurrency rates are breaking records, which means you have the opportunity to make money on cryptocurrencies. Join our system and start making money with us. Go to system: https://tinyurl.com/ygs8kbd2',''),(5084,1,1026,'8','FloydGap',''),(5085,1,1026,'9','FloydGapFU',''),(5086,1,1026,'4','(650) 443-7605',''),(5087,1,1026,'3','kristinmariemelvin@gmail.com',''),(5088,1,1026,'6','Hi. \r\nMy manual is a life hack on 2 pages of PDF. \r\nThere I will show in screenshots with explanations where and what price to put down and thus save the advertising budget (reduce the advertising budget by 5-10 times). \r\nMost ad networks lure advertisers to themselves with a low cost per click of $ 0.001, but they do not specify that such a price is only for Tier 3 countries. \r\nAnd for countries of Tier 1 and Tier 2, the price starts at $ 0.01 per click. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc5auPc&sa=D&Xa=Gg&usg=AFQjCNHbbkCgtKD94ARGz03zJgrbUnHVRg \r\nBut we are not satisfied with this price, we need a lot of traffic at a price of $ 0.001 per click from Tier 1 countries. \r\nI will show you how to bypass the minimum price limit of $ 0.01 and buy traffic at $ 0.001 - $ 0.005 per click from countries of the Tier 1. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc5auPc&sa=D&Lf=Xu&usg=AFQjCNHbbkCgtKD94ARGz03zJgrbUnHVRg \r\nAnd also, as a bonus, I will give one more ad network with high-quality traffic and a minimum price of $ 0.001 per click from Tier 1 Countries. \r\nThis life hack is suitable for business owners, affiliates and all those who need a lot of high-quality and cheap traffic. \r\nUsing this technique, I reduced my advertising budget from $ 150,000 to $ 50,000 per week, it turns out three times and I began to earn 5 times more. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc5auPc&sa=D&Zo=Ns&usg=AFQjCNHbbkCgtKD94ARGz03zJgrbUnHVRg',''),(5089,1,1027,'8','Julia',''),(5090,1,1027,'9','Frey',''),(5091,1,1027,'4','(717) 968-3802',''),(5092,1,1027,'3','juliafrey918@gmail.com',''),(5093,1,1027,'6','We are looking to remodel our bathroom and would like to talk about removing our tub, replacing old galvanized pipes, and installing a new shower. Please call or email at your earliest convenience to discuss. Thank you very much!',''),(5094,1,1028,'8','Robertworge',''),(5095,1,1028,'9','RobertworgeNZ',''),(5096,1,1028,'4','(047) 143-1771',''),(5097,1,1028,'3','lisa.wharton@thompsonhine.com',''),(5098,1,1028,'6','I have dirt on you. \r\nNow I know everything. \r\nCan you imagine what will happen when everyone finds out about your act? \r\nThe price of my silence is 0.21 BTC, transfer them to me by August 26 to this bitcoin wallet bc1qw220sye4cxya05ahpuw9lwfu7acwql660h73tq otherwise I\'ll tell everyone. \r\nAnd then you will feel very bad. \r\nTime has passed.',''),(5099,1,1029,'8','Stewart',''),(5100,1,1029,'9','Kintore',''),(5101,1,1029,'4','(609) 880-2512',''),(5102,1,1029,'3','stewart.kintore73@gmail.com',''),(5103,1,1029,'6','Few days left to get German Digital Marketing packages.\r\n\r\nWould you like to have your business’s website optimized and erase any errors? Now, you can have the best in the world IT Engineers to work on mannplumbingandheating.com\r\n\r\nTry this terrific service you must have to enhance your business momentum in capturing serious clients over the internet:\r\n	\r\nhttps://your-web-marketing.com/technicalseo\r\n\r\n\r\nRegards,\r\nWe offer the very best marketing services you can purchase on our website to make big money in a small business, still not thinking about getting new business? Here is a quick, 1-click unsubscribe link: https://your-web-marketing.com/?unsubscribe=mannplumbingandheating.com',''),(5104,1,1030,'8','Tom',''),(5105,1,1030,'9','Hanson',''),(5106,1,1030,'4','(202) 555-0109',''),(5107,1,1030,'3','tom@ibookedup.co',''),(5108,1,1030,'6','Hello,\r\n\r\nI\'m trying to get in touch with the staff member that oversees your website.\r\n\r\nMy name is Tom - I\'m reaching out from Booked Up, we are a team of leading web designers. We have recently been meeting with some of the reputable businesses in the area, so I thought it would make sense to reach out.\r\n\r\nI would love to set aside some time to learn more about your business and discuss any web design or digital marketing needs you may have. \r\n\r\nDo you have any availability this week or next for a quick call?',''),(5109,1,1031,'8','JustinHah',''),(5110,1,1031,'9','JustinHahLV',''),(5111,1,1031,'4','(375) 262-7845',''),(5112,1,1031,'3','starostindamir4291@yandex.ru',''),(5113,1,1031,'6','This is a unique place for fashionable women\'s clothing and accessories. \r\nWe offer our clients women\'s clothing, jewelry, cosmetics and health products, shoes, bags and much more. \r\nhttps://fas.st/aLmjv',''),(5114,1,1032,'8','Thomas',''),(5115,1,1032,'9','Rodriguez',''),(5116,1,1032,'4','(202) 991-6766',''),(5117,1,1032,'3','thomas@wealthcapital.xyz',''),(5118,1,1032,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nWould you consider a Working Capital Loan for your business if the price and terms were acceptable?\r\n\r\nWealth Capital is a Direct Lender offering loans from 10kk to 500k with funding decisions is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.wealthcapital.xyz\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nThomas Rodriguez\r\nWealth Capital\r\nwww.wealthcapital.xyz\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.wealthcapital.xyz/unsubscribe,\r\n\r\nor write to:\r\n\r\nWealth Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(5119,1,1033,'8','Kurtis',''),(5120,1,1033,'9','Skaggs',''),(5121,1,1033,'4','(714) 554-8951',''),(5122,1,1033,'3','skaggs.kurtis@gmail.com',''),(5123,1,1033,'6','Hi,\r\n\r\nFirstly let me apologise to you as I know this is not the best way to reach you (contact form marketing). I am at my wits end to generate more income to provide for my wife and children and this is a legal (and I hope to make up to you by providing free educational value)\r\n\r\nLike many others, the pandemic has hit me hard and I lost my job. Now I am doing what I can in between jobs and experimenting with different ways to make money from the internet.\r\n\r\nI chanced upon Binance.com (https://bit.ly/3jLZLrm) and started promoting my Binance.com affiliate links to my friends and online. When you introduce your friends to Binance, you get a LIFETIME commission everytime they trade in Binance!\r\n\r\nYou do need a large number of affiliates to make things work. I was lucky to sign up 3  friends who put in USD$10,000 each and depending from their trade volume, I made an extra USD$1000 to $5000 per month PASSIVELY.\r\n\r\nAs such, you do not need to put any money of your own into Binance, you can also make money by referring Binance to your friends and associates! -> https://bit.ly/3jLZLrm (my Binance affiliate link)\r\n\r\n\r\nGo to this url and simply sign up with your email and password. This takes only 30 seconds!  -> https://bit.ly/3jLZLrm',''),(5124,1,1034,'8','Eric',''),(5125,1,1034,'9','Jones',''),(5126,1,1034,'4','(555) 555-1212',''),(5127,1,1034,'3','eric.jones.z.mail@gmail.com',''),(5128,1,1034,'6','My name’s Eric and I just came across your website - mannplumbingandheating.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like mannplumbingandheating.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(5129,1,1035,'8','richard',''),(5130,1,1035,'9','herren',''),(5131,1,1035,'4','(717) 414-7430',''),(5132,1,1035,'3','golferrich62@aol.com',''),(5133,1,1035,'6','I would like to get an estimate for a bath tub install. I am available on Monday 8/30 or Tuesday 8/31 for someone to look at it. The rest of the week I am home after 3:00 pm. I have a 1 piece acrylic unit which will have to be taken out and I will probably install a tub and wall units to replace it. The existing unit is a Maxx 59 x 311/4 unit, but a 60 x 32 can be installed in the existing space. It is a left sided tub and the plumbing is accessible over the garage.',''),(5134,1,1036,'8','Septikric',''),(5135,1,1036,'9','SeptikricMO',''),(5136,1,1036,'4','(448) 367-3186',''),(5137,1,1036,'3','lewkruglyashow124@mail.ru',''),(5138,1,1036,'6','[url=http://biolaif.ru]купить бетонные кольца[/url]  - подробнее на сайте [url=http://biolaif.ru]biolaif.ru[/url]',''),(5139,1,1037,'8','Mike Russel',''),(5140,1,1037,'9','Mike Russel',''),(5141,1,1037,'4','(483) 262-0480',''),(5142,1,1037,'3','johnelgin7162@gmail.com',''),(5143,1,1037,'6','Howdy \r\n \r\nI have just checked  mannplumbingandheating.com for  the current search visibility and saw that your website could use a push. \r\n \r\nWe will increase your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nMike Russel\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(5144,1,1038,'8','Eric',''),(5145,1,1038,'9','Jones',''),(5146,1,1038,'4','(555) 555-1212',''),(5147,1,1038,'3','eric.jones.z.mail@gmail.com',''),(5148,1,1038,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(5149,1,1039,'8','Hosea',''),(5150,1,1039,'9','Nobelius',''),(5151,1,1039,'4','(386) 490-9082',''),(5152,1,1039,'3','hosea.nobelius90@outlook.com',''),(5153,1,1039,'6','If you consume CNN and BBC\'s coverage of China, I am sure you are under the impression that China is a really screwed up country.\r\n\r\nThe West has a very biased view of China. China\'s rise is bad for us? Is our system superior?\r\n\r\nWhat is good for the West\'s government is definitely good for Wall Streets and the bankers, but not necessarily good for the people.\r\n\r\nChina has a lot to offer to the average guy in the West.\r\n\r\nDo you have a business? Consider selling to China\r\n\r\nDo you want an incredible life experience like no others? Perhaps you can relocate to China!\r\n\r\nWhat is China really like?\r\n\r\nWe share some you tube videos of Westerners living in China. Check the videos out and perhap it will change your view of China.\r\n\r\nOr Perhaps you can visit China and seek out new opportunities there!\r\n\r\n\r\nThe Most SHOCKING Street Reactions of Foreigners living in CHINA!\r\nhttps://www.youtube.com/watch?v=0jt3M3QNrH4\r\n\r\n\r\nJason (from UK) China vs USA - Who Would Win? 2021 Military / Country Comparison\r\nhttps://www.youtube.com/watch?v=NO5OH7KFEqw\r\n\r\n\r\nHow China Became So Powerful\r\n\r\nhttps://www.youtube.com/watch?v=qw-FLc7Z01Q\r\n\r\nJohnny Harris - It\'s a story of a certain type of capitalism\r\n\r\nChina Shaolin Martial Arts\r\nhttps://www.youtube.com/watch?v=FQg5b6bagGs\r\n\r\nCheck out Philip Hartshorn\'s experience in Shao Lin learning Kungfu!\r\n\r\n\r\nWho REALLY Runs The World and How to Protect Yourself - Gerald Celente\r\nhttps://www.youtube.com/watch?v=hEusdJ7fi4Q\r\n\r\nAm I a Commie? - Question for YouTube Content Creators in China\r\nhttps://www.youtube.com/watch?v=rKx2B0C8n5c',''),(5154,1,1040,'8','Mario',''),(5155,1,1040,'9','Kemble',''),(5156,1,1040,'4','(603) 428-5173',''),(5157,1,1040,'3','davidmitchell7162@gmail.com',''),(5158,1,1040,'6','Greetings\r\n\r\nIf you ever need Negative SEO to de-rank any site, you can hire us here\r\nhttps://www.speed-seo.net/product/negative-seo-service/',''),(5159,1,1041,'8','Vicisegap',''),(5160,1,1041,'9','VicisegapHE',''),(5161,1,1041,'4','(587) 884-1445',''),(5162,1,1041,'3','revers@o5o5.ru',''),(5163,1,1041,'6','[url=https://videnie.org/study/bioenergy/]обучение биоэнергетике[/url] \r\nTegs: обучение биоэнергетике в москве https://videnie.org/study/bioenergy/ \r\n \r\n[u]обучение рейки[/u] \r\n[i]обучение таро[/i] \r\n[b]приворот[/b]',''),(5164,1,1042,'8','MichaelEmere',''),(5165,1,1042,'9','MichaelEmereDD',''),(5166,1,1042,'4','(732) 778-8741',''),(5167,1,1042,'3','dsmith@leadershipadvisorygrp.com',''),(5168,1,1042,'6','Get the lucky one! Invest $ 350 and get passive income of $ 3300 per day   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc50i99&sa=D&Gt=Sd&usg=AFQjCNFBERCVikmzK3yotMCEyNWMDP6aXw   <<<<<<<<<<<<<',''),(5169,1,1043,'8','plera',''),(5170,1,1043,'9','pleraGZ',''),(5171,1,1043,'4','(703) 210-3180',''),(5172,1,1043,'3','e0v7hi9b@gmail.com',''),(5173,1,1043,'6','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/yevclk6q',''),(5174,1,1044,'8','Gabby Angelori',''),(5175,1,1044,'9','Gabby Angelori',''),(5176,1,1044,'4','(044) 336-3174',''),(5177,1,1044,'3','gafinancie.r@gmail.com',''),(5178,1,1044,'6','Dear Entrepreneur, \r\n \r\nI\'m Gabriel Angelo, My company can bridge funds for your new or ongoing business. do let me know when you receive this message for further procedure. \r\n \r\nWe also pay 1% commission to brokers and friends who introduce project owners for finance or other opportunities. \r\n \r\nYou can reach me directly using this email address: gabriel_angelo@nestalconsultants.com \r\n \r\nRegards, \r\nGabby Angelori',''),(5179,1,1045,'8','MichaelEmere',''),(5180,1,1045,'9','MichaelEmereDD',''),(5181,1,1045,'4','(433) 101-4863',''),(5182,1,1045,'3','juliaferreyrakaminski@gmail.com',''),(5183,1,1045,'6','Altcoins that will make you a millionaire   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc5pXmZ&sa=D&Ly=Zg&usg=AFQjCNHZ-WxriAZ_YfUZOFX_SeCcso8nKA   <<<<<<<<<<<<<',''),(5184,1,1046,'8','MiloshVlasovs',''),(5185,1,1046,'9','MiloshVlasovs',''),(5186,1,1046,'4','(030) 414-6583',''),(5187,1,1046,'3','a.sitdikov@solokuhuc.bizml.ru',''),(5188,1,1046,'6','Приветствуем вас! \r\nПредлагаем лучшие прогоны \"киллеры\" для онлайн-сайтов конкурентов. Стоимость: от 2 тыс р. \r\n- 100% результат. Сайты конкурентов \"упадут\". \r\n- Предельно возможное количество негативных фитбеков. \r\n- Собрана специфическая база - выжимка самых \"убийственных\" площадок из 10 млн. веб-сайтов (вирусных, спамных, порно и тому подобных). Это действует безотказно. \r\n- Прогон производим сразу с 4 серверов. \r\n- Непрерывная отправка вирусных ссылок на официальный e-mail. \r\n- Выполнение в течение 40-240 часов. Растянем по времени как угодно. \r\n- Прогон с запрещёнными ключами. \r\n- При условии заказа 2 ресурсов - выгодные бонусы. \r\n \r\nСтоимость услуги  6000 рублей \r\nПолная отчётность. \r\nОплата: Киви, Яндекс.Деньги, Bitcoin, Visa, MasterCard... \r\n \r\nТелега: @xrumers \r\nSkype: xrumer.pro \r\nWhatsApp: +7(977)536-08-36 \r\nмаил: support@xrumer.cc \r\n \r\nТолько эти! \r\nА тАкож Работаем со Студиями!',''),(5189,1,1047,'8','Eric',''),(5190,1,1047,'9','Jones',''),(5191,1,1047,'4','(555) 555-1212',''),(5192,1,1047,'3','eric.jones.z.mail@gmail.com',''),(5193,1,1047,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(5194,1,1048,'8','Christina',''),(5195,1,1048,'9','Polvinale',''),(5196,1,1048,'4','(717) 408-8180',''),(5197,1,1048,'3','tpolv@yahoo.com',''),(5198,1,1048,'6','In need of getting septic drained by October 31st. I wasn\'t sure of how far in advance we would need to set up a time for this and also an approximate cost. I know it\'s hard to give an exact pricing, but if there was a range, then we can better prepare for payment. Thank you and email is best contact at this time.',''),(5199,1,1049,'8','Elizabeth',''),(5200,1,1049,'9','Wills',''),(5201,1,1049,'4','(817) 631-9366',''),(5202,1,1049,'3','elizabeth@bookedtech.com',''),(5203,1,1049,'6','Hi,\r\n\r\nI\'m trying to get in touch with the staff member that oversees your website. Can you point me in the right direction? Thanks!',''),(5204,1,1050,'8','Eric',''),(5205,1,1050,'9','Jones',''),(5206,1,1050,'4','(555) 555-1212',''),(5207,1,1050,'3','eric.jones.z.mail@gmail.com',''),(5208,1,1050,'6','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at mannplumbingandheating.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(5209,1,1051,'8','Oifiszgap',''),(5210,1,1051,'9','OifiszgapHE',''),(5211,1,1051,'4','(230) 030-1843',''),(5212,1,1051,'3','revers@o5o5.ru',''),(5213,1,1051,'6','[url=https://office-dedamoroza.ru/catalog/novogodnie_podarki/podarki_dlya_sadov_i_shkol/]новогодние подарки в сад[/url] \r\nTegs: новогодние подарки в школу https://office-dedamoroza.ru/catalog/novogodnie_podarki/podarki_dlya_sadov_i_shkol/ \r\n \r\n[u]новогодние подарки в сад[/u] \r\n[i]новогодние подарки в школу[/i] \r\n[b]новогодние сладкие подарки для детей[/b]',''),(5214,1,1052,'8','JustinHah',''),(5215,1,1052,'9','JustinHahLV',''),(5216,1,1052,'4','(853) 151-0860',''),(5217,1,1052,'3','starostindamir4291@yandex.ru',''),(5218,1,1052,'6','Music has tied us \r\nKeyboards & Pianos \r\nhttps://fas.st/NNXXI \r\n \r\nDrums & Percussion \r\nhttps://fas.st/Vay4s \r\n \r\nString Instruments \r\nhttps://fas.st/32jbD',''),(5219,1,1053,'8','Sdvillnom',''),(5220,1,1053,'9','SdvillnomHE',''),(5221,1,1053,'4','(752) 626-5608',''),(5222,1,1053,'3','revers@o5o5.ru',''),(5223,1,1053,'6','[url=https://chimmed.ru/]merck life science gmbh[/url] \r\nTegs: mesa fr https://chimmed.ru/ \r\n \r\n[u]MAC MOD[/u] \r\n[i]MAbtech[/i] \r\n[b]MP Biomedicals[/b]',''),(5224,1,1054,'8','richard',''),(5225,1,1054,'9','herren',''),(5226,1,1054,'4','(717) 414-7430',''),(5227,1,1054,'3','golferrich62@aol.com',''),(5228,1,1054,'6','second request for a bathtub install estimate. first request was sent by email on August 26th.',''),(5229,1,1055,'8','CharlesVuple',''),(5230,1,1055,'9','CharlesVupleVX',''),(5231,1,1055,'4','(471) 028-6511',''),(5232,1,1055,'3','denisandreev1989521a1n+4j@list.ru',''),(5233,1,1055,'6','Fwd: My success story. Way To Earn $10000 Per Month In Passive Income \r\nFwd: $ 10,000 success story per week. How to invest $1000 to generate passive income \r\nRE: My success story. How to make $10000 a Month Passive Income \r\nRE: Story of Successful Passive Income Strategies. How to generate $10000 a month in passive income \r\nRE: $ 10,000 success story. Earn $10000 Passive Income Per Month in 2020 \r\nRE: Passive Income My Success Story in 1 Month. How to Make Passive Income With Only $1000 \r\nRE: $ 10,000 success story. How I make $10000 per month through Passive Income \r\nRE: $ 10,000 success story. Generate $10000 in Monthly Passive Income \r\nRE: My success story. Strategy to Earn $10000 Per Month In Passive Income \r\nFwd: $ 10,000 success story. Passive Income Idea 2020: $10000/month \r\nRE: Story of Successful Passive Income Strategies. Passive Income: How I Make $10,000 Per Month \r\nRE: Success Stories - Smart Passive Income. How to Get $10000/Mo Passive Income \r\nFwd: My success story. Make money online - $10000+ Passive Income \r\nRE: $ 10,000 success story per week. The $10000 per Month Guide to Passive Income \r\nRE: $ 10,000 success story. How To Make $10000 A Month In Passive Income \r\nRE: MAKE $200,000 IN PASSIVE INCOME! TRUE STORY. Passive Income: Way To Make $10000 Per Month From Home \r\nFwd: Story of Successful Passive Income Strategies. Way to earn passive income $10000 Per Month \r\nRE: Passive Income My Success Story in 1 Month. Road to $10000 per Month of Passive Income \r\nFwd: Passive Income My Success Story in 1 Month. How To Make $10000 Per Month From Home: Passive Income. \r\nmannplumbingandheating.com, bndjcsfwhejvdkmcndhbsjcsdifefedjgf',''),(5234,1,1056,'8','Mike Adderiy',''),(5235,1,1056,'9','Mike Adderiy',''),(5236,1,1056,'4','(408) 415-8620',''),(5237,1,1056,'3','no-replyMynckell@gmail.com',''),(5238,1,1056,'6','Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Adderiy\r\n \r\nsupport@digital-x-press.com',''),(5239,1,1057,'8','Clairenes',''),(5240,1,1057,'9','ConstancenesNU',''),(5241,1,1057,'4','(183) 657-7658',''),(5242,1,1057,'3','maison.so1@gmail.com',''),(5243,1,1057,'6','Looking for new acquaintances - http://2track.info/PrTi',''),(5244,1,1058,'8','Mike Jackson',''),(5245,1,1058,'9','Mike Jackson',''),(5246,1,1058,'4','(812) 171-3355',''),(5247,1,1058,'3','no-replyMynckell@gmail.com',''),(5248,1,1058,'6','Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your mannplumbingandheating.com website? \r\nHaving a high DA score, always helps \r\n \r\nGet your mannplumbingandheating.com to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nthank you \r\nMike Jackson\r\n \r\nsupport@monkeydigital.co',''),(5249,1,1059,'8','Thomas',''),(5250,1,1059,'9','Rodriguez',''),(5251,1,1059,'4','(202) 991-6766',''),(5252,1,1059,'3','thomas@wealthcapital.xyz',''),(5253,1,1059,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nWould you consider a Working Capital Loan for your business if the price and terms were acceptable?\r\n\r\nWealth Capital is a Direct Lender offering loans from 10kk to 500k with funding decisions is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.wealthcapital.xyz\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nThomas Rodriguez\r\nWealth Capital\r\nwww.wealthcapital.xyz\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.wealthcapital.xyz/unsubscribe,\r\n\r\nor write to:\r\n\r\nWealth Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(5254,1,1060,'8','Oifiszgap',''),(5255,1,1060,'9','OifiszgapHE',''),(5256,1,1060,'4','(546) 308-3674',''),(5257,1,1060,'3','revers@o5o5.ru',''),(5258,1,1060,'6','[url=https://office-dedamoroza.ru/]подарки от деда мороза[/url] \r\nTegs: сладкие новогодние подарки https://office-dedamoroza.ru/ \r\n \r\n[u]новогодние подарки в детский сад[/u] \r\n[i]новогодние подарки в сад[/i] \r\n[b]новогодние подарки в школу[/b]',''),(5259,1,1061,'8','Clairenes',''),(5260,1,1061,'9','CarlynesNU',''),(5261,1,1061,'4','(465) 153-0562',''),(5262,1,1061,'3','franck-ch@gmail.com',''),(5263,1,1061,'6','Looking for new acquaintances - http://2track.info/PrTi',''),(5264,1,1062,'8','Gtcismgap',''),(5265,1,1062,'9','GtcismgapHE',''),(5266,1,1062,'4','(187) 138-7455',''),(5267,1,1062,'3','revers@o5o5.ru',''),(5268,1,1062,'6','[url=https://gmclinica.ru/uslugi/ginekologiya/]консультация гинеколога эндокринолога[/url] \r\nTegs: консультация косметолога https://gmclinica.ru/uslugi/kosmetologiya/ \r\n \r\n[u]врач уролог в москве[/u] \r\n[i]где делать имплантацию зубов[/i] \r\n[b]где лучше делать имплантацию зубов[/b]',''),(5269,1,1063,'8','Jordyn',''),(5270,1,1063,'9','Ramos',''),(5271,1,1063,'4','(720) 677-6538',''),(5272,1,1063,'3','fragilepakalt@agentgrid.net',''),(5273,1,1063,'6','Hello,\r\n\r\nMy name is Jordyn. I work for a company called FragilePAK - Progistics. I was wondering if I can get a quote on installing a Washer. \r\n\r\nMidea 4.1 cu. ft. Impeller Washing Machine   \r\n\r\nInstall Address: \r\n7523 COUNTRY HILLS DR\r\nHUNTINGDON, PA 16652\r\n\r\nWe need you to unpackage, remove the trash, install into the existing connections and take a photo for proof of completion. \r\n\r\nWe would be paying with a credit card over the phone or we can mail a check to you, it is completely up to you. All we need is a W9. \r\n\r\nWe can not pay with Paypal, Vemmo, Cash App or Zelle. \r\n\r\nIs this something you can do?\r\n\r\n2270 Corporate Circle / Suite 220 /Henderson, NV 89074\r\n\r\nwww.fragilepak.com',''),(5274,1,1064,'8','Jason',''),(5275,1,1064,'9','Neil',''),(5276,1,1064,'4','(717) 816-0157',''),(5277,1,1064,'3','jmneil@embarqmail.com',''),(5278,1,1064,'6','I\'d like to have someone look at my American Standard system because I don\'t believe parts of it are working correctly.\r\n\r\nThanks!',''),(5279,1,1065,'8','Mike Anderson',''),(5280,1,1065,'9','Mike Anderson',''),(5281,1,1065,'4','(542) 847-8064',''),(5282,1,1065,'3','no-replyMynckell@gmail.com',''),(5283,1,1065,'6','Hi there \r\n \r\nWe will enhance your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our pricelist here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Anderson\r\n \r\nSpeed SEO Digital Agency',''),(5284,1,1066,'8','Elizabeth',''),(5285,1,1066,'9','Wills',''),(5286,1,1066,'4','(817) 631-9366',''),(5287,1,1066,'3','elizabeth@bookedtech.com',''),(5288,1,1066,'6','Hello,\r\n\r\nI\'m trying to get in touch with the staff member that oversees your website. Can you point me in the right direction?\r\n\r\nThanks!',''),(5289,1,1067,'8','Adam Bright',''),(5290,1,1067,'9','Adam Bright',''),(5291,1,1067,'4','(162) 436-2387',''),(5292,1,1067,'3','adam789bright@gmail.com',''),(5293,1,1067,'6','Need Facebook likes or Instagram followers? \r\nWe can help you. For more Info, please visit https://1000-likes.com',''),(5294,1,1068,'8','Ross C',''),(5295,1,1068,'9','Ross C',''),(5296,1,1068,'4','(357) 358-3523',''),(5297,1,1068,'3','ross@rankguarantee.com',''),(5298,1,1068,'6','Hey, sorry for using your contact form to get in touch! I wanted to check in to see if you had 5 minutes to discuss a new, performance-based SEO service we launched where you don’t pay unless we get you on page 1 of Google? For most clients so far we’ve been able to get them on page 1 within 30 days. If we don’t, you don’t pay a dime. Here’s a couple minute video that I made explaining exactly how we do it: https://www.rankguarantee.com -- watch it and then let me know if it’d be worth a quick chat.',''),(5299,1,1069,'8','Matthew',''),(5300,1,1069,'9','Clark',''),(5301,1,1069,'4','(347) 331-0929',''),(5302,1,1069,'3','matthew.ustopestimatorinc@gmail.com',''),(5303,1,1069,'6','Hello,\r\n\r\nOver many years we have worked with Builders, Sub Contractors, Designers, and Homeowners to ensure all construction and MEP costs have been estimated to give the best price indication possible. Our qualified and professional estimators will be able to accurately detail the material takeoffs and cost estimates for your upcoming building projects. We use the latest estimating software backed up by professionals with over a decade of experience. Send us the plans or link to any FTP site so that we can review the plans and submit you very economical quote. Thanks',''),(5304,1,1070,'8','plera',''),(5305,1,1070,'9','pleraGZ',''),(5306,1,1070,'4','(515) 154-4823',''),(5307,1,1070,'3','wfug00yv@yahoo.com',''),(5308,1,1070,'6','Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/yesvmml8',''),(5309,1,1071,'8','Ercomtgap',''),(5310,1,1071,'9','ErcomtgapHE',''),(5311,1,1071,'4','(375) 738-5088',''),(5312,1,1071,'3','revers@o5o5.ru',''),(5313,1,1071,'6','[url=https://www.remontstroyka.ru/remont-kottedjey.php]ремонт коттеджей под ключ[/url] \r\nTegs: ремонт двухкомнатной квартиры https://www.remontstroyka.ru/remont-dvukhkomnatnoy-kvartiry.php \r\n \r\n[u]дизайн коттеджей[/u] \r\n[i]ремонт квартир в москве цены[/i] \r\n[b]ремонт в стиле хай-тек[/b]',''),(5314,1,1072,'8','Ronnie',''),(5315,1,1072,'9','Williams',''),(5316,1,1072,'4','(347) 331-0929',''),(5317,1,1072,'3','rw.usatopestimatorsinc@gmail.com',''),(5318,1,1072,'6','Hi,\r\n \r\nWe are an estimation services providing company. We provide Cost Estimation & Quantities Take-Off services for General As well as for Sub-contractors. We have more than 16 years of experience in Estimating services. We are giving almost 35% Discount on the first estimate. We offer both Residential and Commercial Estimates. Ask for samples  or to get a free proposal then send us the plans of your project and mention the scope of work. Thanks',''),(5319,1,1073,'8','Sdvillnom',''),(5320,1,1073,'9','SdvillnomHE',''),(5321,1,1073,'4','(571) 376-0373',''),(5322,1,1073,'3','revers@o5o5.ru',''),(5323,1,1073,'6','[url=https://chimmed.ru/contact ]medical-industrie de [/url] \r\nTegs: medical-industrie.de  https://chimmed.ru/  \r\n \r\n[u]KRD Coatings [/u] \r\n[i]Kaden [/i] \r\n[b]Karine Chem [/b]',''),(5324,1,1074,'8','Carter',''),(5325,1,1074,'9','Tacelosky',''),(5326,1,1074,'4','(717) 658-8618',''),(5327,1,1074,'3','ctacelosky@gmail.com',''),(5328,1,1074,'6','Hi there my name is carter tacelosky. I recently heard your ad on the radio about looking for an hvac install tech and am very interested i have been in the trade for about 9 months with Leckron comfort solutions and just recently got let go because of slow season approaching. I have all my own basic hand tools and have my epa universal certification. I wasn’t able to find an application anywhere so i figured i would reach out to you this way. If you could point me in the right direction i would greatly appreciate it! Thank you have a great day',''),(5329,1,1075,'8','David',''),(5330,1,1075,'9','Peyton',''),(5331,1,1075,'4','(191) 715-0677',''),(5332,1,1075,'3','Peytonstock447@yahoo.com',''),(5333,1,1075,'6','Hello!\r\n\r\nMy name is David.\r\n\r\nYour website or a website that your company hosts is infringing on a copyright protected images owned by myself.\r\n\r\nTake a look at this doc with the links to my images you utilized at www.mannplumbingandheating.com and my earlier publication to obtain the evidence of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/a03jg3k.appspot.com/d/recent/public/0/d3jvdv39vfhh.html?ID=629138274711517518 \r\n\r\nI really believe you have willfully infringed my legal rights under 17 U.S.C. Sec. 101 et seq. and could be liable for statutory damage as high as $110,000 as set-forth in Sec. 504 (c) (2) of the Digital Millennium Copyright Act (DMCA) therein.\r\n\r\nThis message is official notification. I demand the elimination of the infringing materials referenced above. Take note as a service provider, the DMCA requires you, to eliminate and/or deactivate access to the copyrighted materials upon receipt of this particular notification letter. If you do not stop the use of the previously mentioned copyrighted materials a court action will be commenced against you.\r\n\r\nI do have a strong faith belief that utilization of the copyrighted materials described above as presumably infringing is not approved by the legal copyright proprietor, its legal agent, as well as legislation.\r\n\r\nI declare, under penalty of perjury, that the information in this notification is correct and that I am the copyright owner or am authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.\r\n\r\n\r\nSincerely,\r\nDavid Peyton\r\n\r\n09/21/2021',''),(5334,1,1076,'8','Vincenon',''),(5335,1,1076,'9','VincenonSN',''),(5336,1,1076,'4','(626) 202-4065',''),(5337,1,1076,'3','sandrine_koenig@hotmail.fr',''),(5338,1,1076,'6','Hi. \r\n \r\nIt is a smart AI-based trading robot that will make 93% of successful trades. \r\n \r\nThe set of users is limited, there are 39 places left. \r\n \r\nAll other users will pay 10% of each transaction for using our AI trading robot. \r\n \r\nRegister now and use it for free. \r\n \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc5TErp&sa=D&ed=h9&usg=AFQjCNGER3suzFXrVfFj8alSN_WnyidwBQ \r\n \r\n19 out of 75 of our beta testers became dollar millionaires in 2-3 months with an investment of $ 1000, the rest, using our trading robot, receive passive income of $ 47,000 per month. \r\n \r\nYou don\'t need to know anything here, work experience is not needed, your personal manager will help you with everything. \r\n \r\nHurry up to register and start earning passive income. \r\n \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc5TErp&sa=D&jw=ea&usg=AFQjCNGER3suzFXrVfFj8alSN_WnyidwBQ',''),(5339,1,1077,'8','Jason Ward',''),(5340,1,1077,'9','Jason Ward',''),(5341,1,1077,'4','(388) 367-0817',''),(5342,1,1077,'3','jasonward9681@gmail.com',''),(5343,1,1077,'6','Hello, \r\n \r\nOur company, RatingsKing, specializes in posting 5-star testimonials on all major review sites. This way people can find you much easier and get a good impression of your business. \r\nJust go on our website and choose the package that best fits your needs at https://ratingsking.com/packages.php \r\n \r\nOur packages start from $49/month. \r\nDepending on your package you will have a number of positive reviews that we will do for you. You will have reports monthly with the work that has been done in your account. \r\n \r\nUsually, we are posting on all major reviews sites or other listings you may have.',''),(5344,1,1078,'8','Mike Oldman',''),(5345,1,1078,'9','Mike Oldman',''),(5346,1,1078,'4','(782) 644-0536',''),(5347,1,1078,'3','no-replyMynckell@gmail.com',''),(5348,1,1078,'6','Greetings \r\n \r\nI have just analyzed  mannplumbingandheating.com for its SEO Trend and saw that your website could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart improving your sales and leads with us, today! \r\n \r\nregards \r\nMike Oldman\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(5349,1,1079,'8','MichaelEmere',''),(5350,1,1079,'9','MichaelEmereDD',''),(5351,1,1079,'4','(735) 850-0648',''),(5352,1,1079,'3','lrolotodu38090@hotmail.fr',''),(5353,1,1079,'6','Make $368000/month Passively - Passive Income   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc5TErp&sa=D&8b=tt&usg=AFQjCNGER3suzFXrVfFj8alSN_WnyidwBQ   <<<<<<<<<<<<<',''),(5354,1,1080,'8','Thomas',''),(5355,1,1080,'9','Rodriguez',''),(5356,1,1080,'4','(202) 991-6766',''),(5357,1,1080,'3','thomas@wealthcapital.xyz',''),(5358,1,1080,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nWould you consider a Working Capital Loan for your business if the price and terms were acceptable?\r\n\r\nWealth Capital is a Direct Lender offering loans from 10kk to 500k with funding decisions is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.wealthcapital.xyz\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nThomas Rodriguez\r\nWealth Capital\r\nwww.wealthcapital.xyz\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.wealthcapital.xyz/unsubscribe,\r\n\r\nor write to:\r\n\r\nWealth Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(5359,1,1081,'8','MichaelEmere',''),(5360,1,1081,'9','MichaelEmereDD',''),(5361,1,1081,'4','(331) 072-8651',''),(5362,1,1081,'3','mireille8avril@hotmail.fr',''),(5363,1,1081,'6','Verdienen Sie wie Elon Musk ab 42000 EUR pro Tag   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc5TErp&sa=D&5h=mx&usg=AFQjCNGER3suzFXrVfFj8alSN_WnyidwBQ   <<<<<<<<<<<<<',''),(5364,1,1082,'8','JustinHah',''),(5365,1,1082,'9','JustinHahLV',''),(5366,1,1082,'4','(466) 870-1578',''),(5367,1,1082,'3','starostindamir4291@yandex.ru',''),(5368,1,1082,'6','Дорогой друг!Не нажимай спам!Прочти! 5% кэша при регистрации на крупнейшей бирже Binance.В строке под регистрацией ввод кода произойдёт автоматически.Удачных торгов! \r\nhttps://offeramazon.ru',''),(5369,1,1083,'8','skyreveryleste',''),(5370,1,1083,'9','skyreverylesteQL',''),(5371,1,1083,'4','(888) 782-0031',''),(5372,1,1083,'3','malinoleg91@mail.ru',''),(5373,1,1083,'6','[url=https://www.skyrevery.ru/airplanes/gulfstream-g280/]Частный самолет Gulfstream G280 (Гольфстрим 280) - SkyRevery[/url]        -  подробнее на нашем сайте [url=https://skyrevery.ru]skyrevery.ru[/url] \r\n[url=https://skyrevery.ru/]Аренда частного самолета[/url] с экипажем в компании SkyRevery – это выбор тех, кто ценит свое время и живет по своему расписанию! \r\nАренда частного самолета помогает экономить самый важный ресурс – время. Арендовав частный самолет, именно Вы решаете, когда и куда полетите. Для выполнения чартерных рейсов мы предлагаем частные самолеты иностранного производства, гарантирующие высокий уровень комфорта и безопасности полета. Внимательные бортпроводники и высокопрофессиональные пилоты сделают Ваш полет максимально приятным и удобным. \r\nКогда Вам нужна [url=https://skyrevery.ru/]аренда самолета[/url] срочно, мы можем организовать для Вас вылет по готовности от 3 часов с момента подтверждения.',''),(5374,1,1084,'8','Suzette',''),(5375,1,1084,'9','Suzette',''),(5376,1,1084,'4','(519) 344-6768',''),(5377,1,1084,'3','suzette.paltridge@msn.com',''),(5378,1,1084,'6','Hello \r\n\r\nDefrost frozen foods in minutes safely and naturally with our THAW KING™. \r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time.\r\n\r\nBuy now: thawking.online\r\n\r\nEnjoy, \r\n\r\nSuzette',''),(5379,1,1085,'8','MichaelEmere',''),(5380,1,1085,'9','MichaelEmereDD',''),(5381,1,1085,'4','(653) 625-7782',''),(5382,1,1085,'3','beatrice.ponnet@orange.fr',''),(5383,1,1085,'6','Verdienst von Elon Musk auf Kryptowahrung ab 18000 EUR pro Tag   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc5TErp&sa=D&us=b6&usg=AFQjCNGER3suzFXrVfFj8alSN_WnyidwBQ   <<<<<<<<<<<<<',''),(5384,1,1086,'8','Chad',''),(5385,1,1086,'9','McDonald',''),(5386,1,1086,'4','(720) 330-4802',''),(5387,1,1086,'3','hello@myinteragent.com',''),(5388,1,1086,'6','\"I\'m looking for a plumbing company that will take over this website\r\n\r\nI’m selling this website that I built for a plumber in your area and for personal reasons he can’t complete the final payment.\r\n\r\nNormally I charge 50% down and 50% upon completion and this client already paid the down payment of $297. So if you’re interested, you can literally have this website for the $297 balance and it’s yours! Check out the site: https://www.expertplumber.site/\r\n\r\nWe can change out your domain, customize the entire site, and even host the website for you, so we can have you live in 24 hours or less!\r\n\r\nP.S. I figured that I would reach out to other Plumbers in the area first before putting this website on the marketplace for at least double the amount.\"',''),(5389,1,1087,'8','BennyChord',''),(5390,1,1087,'9','BennyChordAM',''),(5391,1,1087,'4','(867) 013-0006',''),(5392,1,1087,'3','olegivanover2@gmail.com',''),(5393,1,1087,'6','Free weight loss 15 kg for 1 month! -->  http://weightlosstrue.freecluster.eu/ \r\n<a href=\"http://weightlosstrue.freecluster.eu/?lol=1\">Free weight loss</a> [url=http://weightlosstrue.freecluster.eu/?lol=1]Detail[/url]:  [url=http://weightlosstrue.freecluster.eu/?lol=1]Free weight loss[/url] \r\n \r\nDiet and weight loss \r\n \r\nStudies have shown that just about any diet will result in weight loss, if it’s one that someone can follow.1,2 Esteemed Yale physician and nutrition expert David Katz examined over 58 popular diets and found that the most successful in terms of both weight loss and nutrition consist of “real food.” By that he means plants, whole grains, nuts and seeds, as well as meat (ideally, from animals that ate plants). Basically, foods closer to nature. The other key is minimizing processed foods, including sugars and flours.3 \r\n \r\nWithout realizing it, I followed Katz’s advice: I ate mostly fruits and vegetables, nuts, seeds, and dairy. I occasionally had whole grains like quinoa or farro, even rice or corn chips. And, of course, an occasional treat. But I had sworn off sugars and flours, for the most part. \r\nBehavior change and weight loss \r\n \r\nIt’s hard to keep track of how much we eat. But a lot of research shows that when we keep track of intake, we eat less. This is called self-monitoring, and why writing down what I ate and weighed helped me.4,5,6 There are so many ways to do this nowadays: from the old-school paper-and-pencil method, to apps like MyFitnessPal, or the Weight Watchers points system.7 \r\n \r\nAnother key approach: forgive your failures. Studies show that people who “mess up” their diet plan and then “give up” end up gaining, while people who forgive themselves and move on continue to lose. It’s called self-acceptance.8,9 Look, we’re human. Birthdays, office parties, weddings, random movie nights: they happen, and we celebrate by having the amazing chocolate cake, or Betsy’s famous buffalo chicken dip, waaaay too much champagne, or buttered popcorn. Expect this, enjoy, and then move on. \r\nExercise and weight loss \r\n \r\nMost major weight loss is followed by weight gain, as people revert to their old habits. But, some folks manage to keep it off. How do they do it? Researchers have found that maintaining a healthy diet, ongoing self-monitoring, plenty of self-acceptance, as well as a high level of physical activity are all associated with keeping the pounds off.10 \r\n \r\nWhen I feel like I’m slipping, I start logging again. Nowadays, I use an online fitness app on my phone to more easily keep track of my daily food intake. Red wine and dark chocolate are always in stock in our house, and that’s OK. Exercise is important, too, but in my book, any and all physical activity counts. Two or three workouts a week help me maintain muscle tone and cardiovascular fitness. If I can’t get to the gym, I run. If I can’t run, I do something at home, like five minutes of in-place kickboxing moves, or dancing around the living room like a crazy person with my kids. I take the stairs wherever I am as often as possible. I use a carry basket at the grocery store, and switch from arm to arm while I shop: biceps curls! Hey, it all counts. \r\nStaying at a healthy weight for life \r\n \r\nThe old adage is “eat less, exercise more,” and this is still true, to some extent. But human beings are psychologically and sociologically complex creatures, and that adage is a lot harder to follow than it sounds. For average adults who do not have contributing medical or psychological issues, a nutritious plant-based diet low in processed foods and carbohydrates, consistent self-monitoring of intake and progress, forgiving oneself when expected lapses occur, all combined with regular physical activity, can result in weight loss for life.',''),(5394,1,1088,'8','DmitriyVlasovs',''),(5395,1,1088,'9','DmitriyVlasovs',''),(5396,1,1088,'4','(186) 246-0460',''),(5397,1,1088,'3','d.shirokov@nasclagjuder.bizml.ru',''),(5398,1,1088,'6','Доброго утра! \r\nГотовы предоставить лучшие прогоны \"киллеры\" для сайтов ваших конкурентов. Всего от 2 тыс рублей. \r\n- Гарантированный эффект. Веб-сайты ваших конкурентов \"умрут\". \r\n- Предельно возможное число негативных фитбеков. \r\n- Наша специфическая база - самые сильные площадки из 10 000 000 веб-сайтов (вирусных, спамных, порно и тому подобных). Работает бесперебойно. \r\n- Прогон производится сразу с 4-х мощных серверов. \r\n- Непрерывный спам активационных ссылок на электронную почту. \r\n- Можем растянуть по времени сколько угодно. \r\n- Прогоняем с запрещёнными ключами. \r\n- На условиях заказа сразу 2 ресурсов - хорошие бонусы. \r\n \r\nЦена  $80 \r\nПолная отчётность. \r\nОплата: Qiwi, Yandex.Money, Bitcoin, Visa, MasterCard... \r\n \r\nTelgrm: @xrumers \r\nSkype: xrumer.pro \r\nWhatsApp: +7(977)536-08-36 \r\nemail: support@xrumer.cc \r\n \r\nТолько эти! \r\nА тАкож Работаем со Студиями!',''),(5399,1,1089,'8','Alexander',''),(5400,1,1089,'9','Brown',''),(5401,1,1089,'4','(949) 239-0778',''),(5402,1,1089,'3','alexander@reviewvio.com',''),(5403,1,1089,'6','Hi There,\r\nWould you like help removing bad reviews from your Google, Yelp and Facebook pages? Our company, ReviewVio, helps businesses like Bluepoint Medical Group and Compass Real Estate remove bad reviews, manage online reviews and gather genuine customer reviews.\r\n\r\nDo you have some time later today or tomorrow to see how we are able to help? Here’s a link to my calendar: https://calendly.com/reviewvio-consult-team/contact-n\r\nSincerely,\r\n\r\nAlexander Brown | Reviewvio - Remove, Prevent & Capture\r\nOffice (949) 239-0778\r\nalexander@reviewvio.com\r\nwww.reviewvio.co',''),(5404,1,1090,'8','Mike King',''),(5405,1,1090,'9','Mike King',''),(5406,1,1090,'4','(184) 111-7272',''),(5407,1,1090,'3','no-replyMynckell@gmail.com',''),(5408,1,1090,'6','Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike King\r\n \r\nsupport@digital-x-press.com',''),(5409,1,1091,'8','Tecihngap',''),(5410,1,1091,'9','TecihngapHE',''),(5411,1,1091,'4','(734) 564-5317',''),(5412,1,1091,'3','revers@o5o5.ru',''),(5413,1,1091,'6','[url=https://С‚РµС…РЅРѕРіСЂР°С„РёРєР°.СЂС„/catalog/oborudovanie/shirokoformatnye_uv_uf_printery/planshetnye_uf_printery/]планшетный принтер[/url] \r\nTegs: уф принтеры https://С‚РµС…РЅРѕРіСЂР°С„РёРєР°.СЂС„/catalog/oborudovanie/shirokoformatnye_uv_uf_printery/ \r\n \r\n[u]уф принтер[/u] \r\n[i]плоттеры[/i] \r\n[b]широкоформатный принтер[/b]',''),(5414,1,1092,'8','Gtcismgap',''),(5415,1,1092,'9','GtcismgapHE',''),(5416,1,1092,'4','(631) 154-2656',''),(5417,1,1092,'3','revers@o5o5.ru',''),(5418,1,1092,'6','[url=https://gmclinica.ru/uslugi/lazernaya-epilyaciya/zhenskaya-lazernaya-epilyaciya/]лазерная эпиляция лица[/url] \r\nTegs: лазерная эпиляция москва https://gmclinica.ru/uslugi/lazernaya-epilyaciya/zhenskaya-lazernaya-epilyaciya/ \r\n \r\n[u]лазерная эпиляция волос[/u] \r\n[i]лазерная эпиляция глубокое бикини[/i] \r\n[b]лазерная эпиляция глубокое бикини москва[/b]',''),(5419,1,1093,'8','Sdvillnom',''),(5420,1,1093,'9','SdvillnomHE',''),(5421,1,1093,'4','(122) 671-4412',''),(5422,1,1093,'3','revers@o5o5.ru',''),(5423,1,1093,'6','[url=https://chimmed.ru/manufactors/catalog?name=Bruggemann ]Bruggemann [/url] \r\nTegs: Bruker  https://chimmed.ru/manufactors/catalog?name=Bruker  \r\n \r\n[u]ohio valley specialty company [/u] \r\n[i]oleon [/i] \r\n[b]oleon com [/b]',''),(5424,1,1094,'8','Grace',''),(5425,1,1094,'9','Casas',''),(5426,1,1094,'4','(617) 350-4392',''),(5427,1,1094,'3','info@rs-malerei.ch',''),(5428,1,1094,'6','Maler- und Gipsergeschäfte gibt es viele. Aber keines wie die Roberto Salafia GmbH. Seit der Gründung im Jahr 2006 setzen wir konsequent auf Partnerschaften. Wir arbeiten mit Kunden, Lieferanten und Mitarbeitenden partnerschaftlich zusammen. Das ist unsere Basis, um gemeinsam erfolgreich zu sein.\r\n\r\nAll unsere Projekte, ob für Firmen- oder Privatkunden, haben ein gemeinsames Ziel: Dienstleistungen, die keinen Wunsch offen lassen, höchsten Qualitätsansprüchen genügen, zu einem unschlagbaren Preis.\r\n\r\nMit diesem Anspruch konnten wir in der Vergangenheit viele Kunden begeistern und glücklich machen. Deswegen werden wir diesen Weg auch in Zukunft verfolgen.\r\n\r\nAm liebsten mit Ihnen als Partner.',''),(5429,1,1095,'8','Emily',''),(5430,1,1095,'9','Baughman',''),(5431,1,1095,'4','(717) 816-1927',''),(5432,1,1095,'3','e.m.baughman@hotmail.com',''),(5433,1,1095,'6','Good Afternoon,\r\nWe have a leak in our basement, from what we believe to be the main sewage line. It is getting increasingly worse. We would like someone to come have a look at it as soon as possible. \r\nThank you,\r\nEmily',''),(5434,1,1096,'8','LindseyRex',''),(5435,1,1096,'9','LindseyRexSY',''),(5436,1,1096,'4','(001) 318-4302',''),(5437,1,1096,'3','thierry.brault81@orange.fr',''),(5438,1,1096,'6','Amazon, together with the companies Euronext and Norton, have developed a smart system for generating passive income from the difference between cryptocurrencies, including Bitcoin. \r\n \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc6jWfc&sa=D&mi=f2&usg=AFQjCNHdwHGe2DxgDiPDujhsvUic-IZkjA \r\n \r\nNow you can also receive passive income from $ 15,000 per week without doing anything and without having any skills. \r\n \r\nAct now, register and launch the system and by the end of next week you will have more than $ 25,000 in your account. \r\n \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc6jWfc&sa=D&o9=qy&usg=AFQjCNHdwHGe2DxgDiPDujhsvUic-IZkjA',''),(5439,1,1097,'8','JustinHah',''),(5440,1,1097,'9','JustinHahLV',''),(5441,1,1097,'4','(081) 631-7241',''),(5442,1,1097,'3','starostindamir4291@yandex.ru',''),(5443,1,1097,'6','I love this store !!! Once I have discovered it for myself, I no longer waste time on shopping malls. There is no such assortment anywhere else! Moreover, it is being updated at a breakneck speed. \r\nhttp://offeramazon.ru/p65u',''),(5444,1,1098,'8','Edwardcoasp - Apple',''),(5445,1,1098,'9','Edwardcoasp - AppleAO',''),(5446,1,1098,'4','(420) 488-6573',''),(5447,1,1098,'3','masha.sorokina.97sm@orange.fr',''),(5448,1,1098,'6','Apple has developed the latest AI-based trading robot that makes more than 90% of successful transactions in cryptocurrency trading. \r\n \r\nYou are guaranteed to receive from $ 5000 per week of passive income while your trading robot is working 24/7. \r\n \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc6jWfc&sa=D&u6=rn&usg=AFQjCNHdwHGe2DxgDiPDujhsvUic-IZkjA \r\n \r\nYou don\'t need any skills. \r\n \r\nTo get started, you need to take the following steps: \r\n \r\n1. Register on the website of our trading robot https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc6jWfc&sa=D&8d=js&usg=AFQjCNHdwHGe2DxgDiPDujhsvUic-IZkjA \r\n \r\n2. Top up the balance in your personal account for at least $ 500 \r\n \r\n3. Launch a trading robot \r\n \r\n4. Watch how your account balance grows \r\n \r\n5. Withdraw profit every week \r\n \r\n6. Enjoy life',''),(5449,1,1099,'8','Wtcissgap',''),(5450,1,1099,'9','WtcissgapHE',''),(5451,1,1099,'4','(202) 233-6773',''),(5452,1,1099,'3','revers@o5o5.ru',''),(5453,1,1099,'6','[url=https://wtlan.ru/catalog/SHkafyWT/]телекоммуникационный шкаф 19 напольный 32u[/url] \r\nTegs: телекоммуникационный шкаф 19 напольный 33u https://wtlan.ru/catalog/SHkafyWT/Napolnyeshkafy/ \r\n \r\n[u]коммутационный шкаф 19 15u[/u] \r\n[i]коммутационный шкаф 19 15u стеклянная дверь ш530хг600мм[/i] \r\n[b]купить телекоммуникационный шкаф 19 дюймов[/b]',''),(5454,1,1100,'8','Anton',''),(5455,1,1100,'9','Anton',''),(5456,1,1100,'4','(617) 702-9492',''),(5457,1,1100,'3','falcone.anton98@outlook.com',''),(5458,1,1100,'6','EASE YOUR PAIN IN 10 MINUTES EFFORTLESSLY\r\n\r\nBe Free from Neck Pain! Try NeckFlexer & Relieve Neck Pain Effortlessly In 10 Min!\r\n\r\nSave 50% OFF + FREE Worldwide Shipping\r\n\r\nShop Now: neckflexer.online\r\n\r\nAll the best, \r\n\r\nAnton',''),(5459,1,1101,'8','Kathy',''),(5460,1,1101,'9','Motco',''),(5461,1,1101,'4','(555) 555-5555',''),(5462,1,1101,'3','km7394209@gmail.com',''),(5463,1,1101,'6','Hi,\r\n\r\nI thought you may be interested.\r\n \r\nWe sell best niche ready made dropship stores.\r\nAverage profit on all products is 100% to 300%. Our sites are 2nd to none out there.\r\n\r\nFree hosting permanently, domain and social media marketing plan to help make you sales are all included.\r\nJust a one time payment for the available dropship website of your choice and everything above.\r\n\r\nIf this sounds of interest please see our newest available sites at https://dropshippingincome.com\r\n\r\nThank you for your time and hope to see you there.\r\n\r\nBest regards,\r\nCathy Motco\r\nDSI',''),(5464,1,1102,'8','Tina',''),(5465,1,1102,'9','Erndl',''),(5466,1,1102,'4','(814) 502-6101',''),(5467,1,1102,'3','cmaurer88@aol.com',''),(5468,1,1102,'6','I for some reason can’t seem to reach your phone number. It saying the mailbox is not in service. I’m looking to set up an appointment to get a quote on an AC Unit. Ours completely quit working. Please get back to me at your earliest convenience. Thanks!',''),(5469,1,1103,'8','MichaelEmere',''),(5470,1,1103,'9','MichaelEmereDD',''),(5471,1,1103,'4','(268) 455-1885',''),(5472,1,1103,'3','raymond.passfield@yahoo.de',''),(5473,1,1103,'6','Visit the site. My nickname is Swettuy, find and write me here   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fhot-girls-here.com%2FZsd9gYcd&sa=D&mo=lp&usg=AFQjCNH1cFMpf5xulRS_ME8x6B8wpeKUyw   <<<<<<<<<<<<<',''),(5474,1,1104,'8','Abel',''),(5475,1,1104,'9','Alvarez',''),(5476,1,1104,'4','(718) 551-5649',''),(5477,1,1104,'3','AbelAlvarez@xero.com',''),(5478,1,1104,'6','Hello, \r\n\r\nYour website or a website that your organization hosts is violating the copyrighted images owned by our company (xero Inc.).\r\n\r\nTake a look at this doc with the links to our images you used at www.mannplumbingandheating.com and our earlier publication to find the proof of our copyrights.\r\n\r\nDownload it now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/fk9mw3gl3-9ae9e.appspot.com/d/folders/0/public/i/dfk30djwbdf20j.html?h=444769546094896897  \r\n\r\nI believe you have intentionally violated our legal rights under 17 U.S.C. Section 101 et seq. and could possibly be liable for statutory damage as high as $120,000 as set forth in Section 504 (c) (2) of the Digital Millennium Copyright Act (DMCA) therein.\r\n\r\nThis message is official notice. I seek the elimination of the infringing materials mentioned above. Please take note as a company, the Digital Millennium Copyright Act demands you to remove or deactivate access to the copyrighted materials upon receipt of this letter. In case you do not stop the use of the aforementioned copyrighted content a lawsuit will be started against you.\r\n\r\nI do have a strong belief that use of the copyrighted materials mentioned above as presumably violating is not permitted by the copyright proprietor, its agent, or the law.\r\n\r\nI swear, under penalty of perjury, that the information in this message is correct and hereby affirm that I am authorized to act on behalf of the proprietor of an exclusive and legal right that is presumably infringed.\r\n\r\n\r\nVery truly yours,\r\nAbel Alvarez\r\nLegal Officer\r\nxero, Inc.\r\n\r\nxero.com\r\n\r\n\r\n10/06/2021',''),(5479,1,1105,'8','Mike Attwood',''),(5480,1,1105,'9','Mike Attwood',''),(5481,1,1105,'4','(082) 130-1854',''),(5482,1,1105,'3','no-replyMynckell@gmail.com',''),(5483,1,1105,'6','Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your mannplumbingandheating.com website? \r\nHaving a high DA score, always helps \r\n \r\nGet your mannplumbingandheating.com to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nthank you \r\nMike Attwood\r\n \r\nsupport@monkeydigital.co',''),(5484,1,1106,'8','Muhammad',''),(5485,1,1106,'9','Ali',''),(5486,1,1106,'4','(832) 420-7261',''),(5487,1,1106,'3','purchasing@texttradeinc.com',''),(5488,1,1106,'6','Hello,\r\n \r\nWe picked up & purchased PVC/HDPE PIPES SCRAP in any form from all over North American facilities.\r\n 	\r\nAppreciate to share details with pictures.\r\n\r\nKind regards,\r\nAli,\r\n832 420-7261,\r\nText Trading Inc\r\nRichmond TX - USA.',''),(5489,1,1107,'8','Jeffery',''),(5490,1,1107,'9','Huynh',''),(5491,1,1107,'4','(917) 416-4134',''),(5492,1,1107,'3','JefferyHuynh@intuit.com',''),(5493,1,1107,'6','Hello, \r\n\r\nYour website or a website that your company hosts is infringing on a copyrighted images owned by our company (intuit Inc.).\r\n\r\nCheck out this official document with the URLs to our images you utilized at www.mannplumbingandheating.com and our previous publications to obtain the proof of our copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/fk9mw3gl3-9ae9e.appspot.com/d/folders/0/public/i/dlj39dbbwjcvbk.html?l=9519785914663034  \r\n\r\nI do believe that you deliberately violated our legal rights under 17 U.S.C. Sec. 101 et seq. and could possibly be liable for statutory damages of up to $140,000 as set forth in Section 504 (c)(2) of the Digital Millennium Copyright Act (”DMCA”) therein.\r\n\r\nThis letter is official notification. I seek the removal of the infringing materials referenced above. Take note as a company, the Digital Millennium Copyright Act demands you to remove or/and terminate access to the infringing content upon receipt of this particular letter. If you don\'t cease the utilization of the above mentioned copyrighted content a court action will be commenced against you.\r\n\r\nI do have a strong belief that use of the copyrighted materials described above as presumably violating is not authorized by the copyright owner, its legal agent, as well as legislation.\r\n\r\nI declare, under penalty of perjury, that the information in this message is correct and hereby affirm that I am authorized to act on behalf of the proprietor of an exclusive and legal right that is allegedly violated.\r\n\r\n\r\nVery truly yours,\r\nJeffery Huynh\r\nLegal Officer\r\nintuit, Inc.\r\n\r\nintuit.com\r\n\r\n\r\n10/07/2021',''),(5494,1,1108,'8','Heather',''),(5495,1,1108,'9','King',''),(5496,1,1108,'4','(555) 555-5555',''),(5497,1,1108,'3','kingoheahther@gmail.com',''),(5498,1,1108,'6','Hi there,\r\n\r\nDo you know the magic of 10K Instagram followers?\r\n\r\nA 10k follower count on Instagram isn’t just an awareness metric. \r\nThe milestone comes with an immediate, tangible benefit. \r\n\r\nOnce you have 10k followers, Instagram will make it easier for you to get people\r\nto your website via Stories with the swipe up to link feature.\r\n\r\nSwipe up is the only way to get a direct link from your Instagram to your other web properties. \r\nAnd, it’s available in STORIES, if you have 10k followers.\r\n\r\nThe swipeable link in stories lets you send people to your blog, your ecommerce page, or your email signup list, \r\nwithout requiring the visitor to click to your bio first. The feature alone is a game changer!\r\n\r\nTestimonial:\r\n“Before this, Instagram rarely showed up as a traffic source for my shop or blog. \r\nSince that feature was added, I’m able to get more people to my websites directly from IG.”\r\n\r\nTo order 10k or see all other packages please go to https://social-media-blast.com\r\n\r\nBest,\r\nHeather K.\r\nS.M.B.',''),(5499,1,1109,'8','LiSalryses',''),(5500,1,1109,'9','LiSalrysesQM',''),(5501,1,1109,'4','(388) 716-2481',''),(5502,1,1109,'3','catattack@wir.pl',''),(5503,1,1109,'6','noclegi w okolicy augustowa <a href=\"https://www.noclegipracowniczneaugustow.site\">www.noclegipracowniczneaugustow.site</a> \r\nnocleg augustow centrum <a href=\"https://www.noclegipracowniczneaugustow.site\">pokoje pracownicze nieopodal suwalk</a> \r\nfattest ragwort capitalisation  <a href=\"https://www.noclegipracowniczneaugustow.site/noclegi-w-okolicy-augustowa.htm\">noclegi pracownicze niedaleko augustowa</a> \r\nstx21',''),(5504,1,1110,'8','Jamestug',''),(5505,1,1110,'9','JamestugON',''),(5506,1,1110,'4','(646) 551-2447',''),(5507,1,1110,'3','no-replyRondus@gmail.com',''),(5508,1,1110,'6','Hi!  mannplumbingandheating.com \r\n \r\nWe suggest \r\n \r\nSending your business proposition through the feedback form which can be found on the sites in the Communication section. Feedback forms are filled in by our application and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This method improve the probability that your message will be open. \r\n \r\nOur database contains more than 27 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing Up to 50,000 messages. \r\n \r\n \r\nThis offer is created automatically.  Use our contacts for communication. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.',''),(5509,1,1111,'8','Jason',''),(5510,1,1111,'9','Adam',''),(5511,1,1111,'4','(202) 991-6766',''),(5512,1,1111,'3','jason@superbcapital.xyz',''),(5513,1,1111,'6','Hello,\r\n\r\nNeed a Business Loan to take your business to the next level?\r\n\r\nInstantly see how much you qualify for without having your credit pulled or submitting a single document.\r\n\r\nJust visit www.superbcapital.xyz to get your decision in less than 30 seconds. Applying\r\ndoes NOT affect your credit!\r\n\r\nAlso, please check out this video to see all the funding options we have available for you. www.superbcapital.xyz/video\r\n\r\n\r\n\r\nWarm Regards,\r\nJason Adams\r\nSuperb Capital\r\nwww.superbcapital.xyz\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.superbcapital.xyz/unsubscribe \r\n\r\nor write to:\r\n\r\nSuperb Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(5514,1,1112,'8','kj67ukutyhg54tudjh76u5jir4u https://apple.com quon',''),(5515,1,1112,'9','kj67ukutyhg54tudjh76u5jir4u https://apple.com quon',''),(5516,1,1112,'4','(055) 418-2871',''),(5517,1,1112,'3','GennadiiLavrentev95@inbox.ru',''),(5518,1,1113,'8','Josh & Jess',''),(5519,1,1113,'9','Steffy',''),(5520,1,1113,'4','(717) 725-4791',''),(5521,1,1113,'3','jessandjosh2002@yahoo.com',''),(5522,1,1113,'6','We need to have a carbon filter installed for our well water. We also have a clawfoot tub (and all hardware) that needs to be installed, and we need a water line run to the kitchen freezer for an ice maker. Note: The cabin is on Bear Mountain, and the road is rough.',''),(5523,1,1114,'8','PedroKal',''),(5524,1,1114,'9','PedroKalSJ',''),(5525,1,1114,'4','(060) 083-4482',''),(5526,1,1114,'3','sonia.belloli@yahoo.de',''),(5527,1,1114,'6','Trade Forex & Win Tesla Model 3 - 100 Cars Drawn \r\n \r\nHello dear subscriber. Now you have every chance to win a new Tesla Model 3 car - https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc6IjTY&sa=D&032=093&usg=AFQjCNFcCi_AW0KZy1-k7bYu2x-9Vy_TAQ \r\nTo participate in the promotion, you need to take three simple steps: \r\n1. Register on our website - https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc6IueF&sa=D&sntz=1&usg=AFQjCNGcfsC5yehR_jdJlkas6Es4v5B7VQ \r\n2. In your personal account, make a deposit of at least $ 500 \r\n3. Launch a trading robot (your personal manager will help you) \r\n4. Now every day until October 31, inclusive, you will need to enter your personal account and see how much the robot has traded. \r\nThe essence of the competition is to whom the trading robot earned the most money. The percentage of successful deals is from 60%, so you will be in the black anyway. The winners will be determined on November 1. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc6IueF&sa=D&sntz=1&usg=AFQjCNGcfsC5yehR_jdJlkas6Es4v5B7VQ \r\nHurry up to register and complete all the steps to participate in the competition - the number of participants is growing every day. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc6IueF&sa=D&sntz=1&usg=AFQjCNGcfsC5yehR_jdJlkas6Es4v5B7VQ',''),(5528,1,1115,'8','Devin',''),(5529,1,1115,'9','Foster',''),(5530,1,1115,'4','(443) 789-6729',''),(5531,1,1115,'3','thedevster18@gmail.com',''),(5532,1,1115,'6','Hello, I was wondering if you are hiring? I currently live in ocean city Md and have been doing plumbing for almost a year. I’m in my own truck and wanting to relocate to sourthern PA. Thank In advance',''),(5533,1,1116,'8','BennyChord',''),(5534,1,1116,'9','BennyChordAM',''),(5535,1,1116,'4','(583) 014-2450',''),(5536,1,1116,'3','olegivanover3@gmail.com',''),(5537,1,1116,'6','You receive money transfer on 86.44$! --> \r\n<a href=\"http://trueweightloss.iceiy.com/adult.php?s1=xrymer&lol=1\">Get money </a> [url=http://trueweightloss.iceiy.com/adult.php?s1=xrymer&lol=1]Detail [/url]:  [url=http://trueweightloss.iceiy.com/adult.php?s1=xrymer&lol=1]Get money [/url]',''),(5538,1,1117,'8','Mark',''),(5539,1,1117,'9','Schaefer',''),(5540,1,1117,'4','(561) 544-0719',''),(5541,1,1117,'3','marks@nutricompany.com',''),(5542,1,1117,'6','Many companies are known for their product development. That is their expertise.\r\n\r\nAs senior account executive for business development at Nutritional Products International, I have worked with brands that have created and developed innovative products that consumers would want to buy.\r\n\r\nBut these companies don’t have the staff or knowledge to successfully launch their products in the U.S. This is why many domestic and international health and wellness brands reach out to NPI.\r\n\r\nLaunching products in the U.S. is our expertise.\r\n\r\nOn a daily basis, I research companies in the health and wellness sectors, which is how I came across your brand.\r\n\r\nNPI, a global brand management company based in Boca Raton, FL., can help you.\r\n\r\nThrough a one-stop, turnkey platform called the “Evolution of Distribution,” NPI gives you all the expertise and services you need when you launch your product line here. We become your headquarters in the United States.\r\n\r\nWhat does NPI do? We import, distribute, and market your product line.\r\n\r\nWhen you work with NPI, you don’t need to hire a U.S. sales and support team or contract with a high-priced Madison Avenue marketing agency.\r\n\r\nNPI, along with its sister company, InHealth Media, collaboratively work to market your products to consumers and retailers throughout the U.S. \r\n\r\nFor more information, please reply to this email or contact me at MarkS@nutricompany.com.\r\n\r\nRespectfully,\r\n\r\nMark\r\n\r\nMark Schaeffer \r\nSenior Account Executive for Business Development\r\nNutritional Products International\r\n150 Palmetto Park Blvd., Suite 800\r\nBoca Raton, FL 33432\r\nOffice: 561-544-071\r\nMarkS@nutricompany.com',''),(5543,1,1118,'8','Emily',''),(5544,1,1118,'9','Baughman',''),(5545,1,1118,'4','(717) 816-1927',''),(5546,1,1118,'3','e.m.baughman@hotmail.com',''),(5547,1,1118,'6','Good Morning,\r\n\r\nI\'m searching for a plumber that can come out and take a look at the main drainage line in my basement and provide a quote for repair. It appears that we have some significant corrosion that is causing a leak. I am located in Chambersburg, PA.\r\n\r\nThank you!\r\nEmily',''),(5548,1,1119,'8','Brian',''),(5549,1,1119,'9','WRIGHT',''),(5550,1,1119,'4','(303) 800-6251',''),(5551,1,1119,'3','sales1@dittart.com',''),(5552,1,1119,'6','Dear Madam, Dear Sir Are you looking for a new piece of exquisite jewelry for yourself or your loved ones and friends? Do you want to get new products for your customers? In that case,  DittART Designer Necklaces could be the right choice. DittART designer necklaces are originals created by a famous jewelry designer. Every model is unique. They contain premium glass beads and gemstones, some of which are handmade. The beads are slip over on a nylon thread or a metal string. Every necklace is delivered with the designer’s certificate and thus may become a splendid gift. Our necklaces own celebrities like country music stars, girlfriends of politicians, etc. In case of your interest in our designer necklaces, please check all models of these necklaces at our store https://dittart.com. We will be pleased to hear from you. Have a great day. Best regards Brian WRIGHT, Eng., DittART Designer Necklaces, Denver, CO, sales@dittart.com, https://dittart.com',''),(5553,1,1120,'8','Mike Dunce',''),(5554,1,1120,'9','Mike Dunce',''),(5555,1,1120,'4','(578) 754-4017',''),(5556,1,1120,'3','no-replyMynckell@gmail.com',''),(5557,1,1120,'6','Greetings \r\n \r\nWe will increase your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our plans here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Dunce\r\n \r\nSpeed SEO Digital Agency',''),(5558,1,1121,'8','Eric',''),(5559,1,1121,'9','Jones',''),(5560,1,1121,'4','(555) 555-1212',''),(5561,1,1121,'3','eric.jones.z.mail@gmail.com',''),(5562,1,1121,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(5563,1,1122,'8','Alyssa',''),(5564,1,1122,'9','Allen',''),(5565,1,1122,'4','(410) 490-1655',''),(5566,1,1122,'3','ajallen9413@gmail.com',''),(5567,1,1122,'6','Hi, I was wondering if you service/repair furnaces? We don\'t know what\'s wrong with ours other than it won\'t kick on. And if so it would be appreciated if you could give us just a ball park of hoe much it generally costs to do an average repair?',''),(5568,1,1123,'8','TBcassgap',''),(5569,1,1123,'9','TBcassgapHE',''),(5570,1,1123,'4','(258) 176-0656',''),(5571,1,1123,'3','revers@o5o5.ru',''),(5572,1,1123,'6','[url=https://www.tc-bus.ru/]цена автобусов[/url] \r\nTegs: ютонг https://www.tc-bus.ru/yutong \r\n \r\n[u]автобусы нефаз цена[/u] \r\n[i]автобусы новые купить[/i] \r\n[b]автобусы цена[/b]',''),(5573,1,1124,'8','Eric',''),(5574,1,1124,'9','Jones',''),(5575,1,1124,'4','(555) 555-1212',''),(5576,1,1124,'3','eric.jones.z.mail@gmail.com',''),(5577,1,1124,'6','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at mannplumbingandheating.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(5578,1,1125,'8','Finn',''),(5579,1,1125,'9','Pennington',''),(5580,1,1125,'4','(614) 588-0816',''),(5581,1,1125,'3','finn.pennington@outlook.com',''),(5582,1,1125,'6','Shriya sent you a friend request.\r\nclick here to accept it and chat with her. She is online.\r\nhttps://sexlovers.club/chat/HornyShriya/',''),(5583,1,1126,'8','Kristie',''),(5584,1,1126,'9','Moore',''),(5585,1,1126,'4','(805) 372-3246',''),(5586,1,1126,'3','kristie@business-directory.link',''),(5587,1,1126,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://voiceregbiz.xyz/mroe-cusotmers/?=mannplumbingandheating.com\r\n\r\n\r\nKristie\r\nVoice Activation Follow-up Specialist\r\nBusiness Directory Link\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://voiceregbiz.xyz/unsubscribe.php/?site=mannplumbingandheating.com',''),(5588,1,1127,'8','RobertTam',''),(5589,1,1127,'9','RobertTamZN',''),(5590,1,1127,'4','(070) 035-1064',''),(5591,1,1127,'3','denisandreev1989521a1n+kj@list.ru',''),(5592,1,1127,'6','mannplumbingandheating.com teyiuwoiwfheujsmdcshflisjdalfjedbfsjhsgdhwyfeudjnfwhdgjkfbefjhdwsfjvnskhfbsjfnvshfbasnjkfbdjvgbfgjkd',''),(5593,1,1128,'8','BennyChord',''),(5594,1,1128,'9','BennyChordAM',''),(5595,1,1128,'4','(558) 436-7013',''),(5596,1,1128,'3','olegivanover4@gmail.com',''),(5597,1,1128,'6','Free deep throat porn for you! --> http://trueweightloss.iceiy.com \r\n<a href=\"http://trueweightloss.iceiy.com/?s1=xrymer&lol=1\">Free porn </a> [url=http://trueweightloss.iceiy.com/?s1=xrymer&lol=1]Detail [/url]:  [url=http://trueweightloss.iceiy.com/?s1=xrymer&lol=1]Free porn [/url]',''),(5598,1,1129,'8','Lara',''),(5599,1,1129,'9','Gorton',''),(5600,1,1129,'4','(213) 558-6156',''),(5601,1,1129,'3','lara@bizvideo.link',''),(5602,1,1129,'6','Hey, great site!\r\n\r\nHave you thought about adding a video in response to COVID-19?\r\n\r\nWe can make one for you: \r\nhttps://bestvideo1.xyz/video1/?=mannplumbingandheating.com\r\n\r\nCustomers are worried right now. A short video like this can make a big impact for your business in the long term. People will remember it!\r\n\r\nBe well,\r\nLara\r\n\r\nP.S. Due to coronavirus, we have also lowered our prices by up to 55%. \r\n\r\n\r\n\r\n\r\n\r\n\r\n- This commercial message sent from PJLK Marketing LC\r\n410 E Santa Clara Street STE 817\r\nSan Jose, CA 95113\r\n\r\nTo unsubscribe click here:\r\nhttps://bestvideo1.xyz/unsubscribe.php/?site=mannplumbingandheating.com',''),(5603,1,1130,'8','Moonfeather',''),(5604,1,1130,'9','Chastulik',''),(5605,1,1130,'4','(717) 360-5414',''),(5606,1,1130,'3','moonfeather66@gmail.com',''),(5607,1,1130,'6','Hi,\r\n\r\nTwo things: 1st, the red light on my furnace is blinking and the furnace won\'t turn on. It ran yesterday but I turned it off last night and this morning when I turned it on to get the chill out, it wasn\'t working. I checked the furnace and saw the red light. There is also an oil heat smell but that could just be from yesterday\'s first use. I would like to have someone look at the furnace.\r\n\r\n2nd, I am wanting to replace my oil heat and switch to a heat pump. I was thinking of doing that in the spring but maybe I will do it sooner. I\'d like someone to give me an estimate for the switchover.\r\n\r\nThank you,\r\nMoonfeather',''),(5608,1,1131,'8','Miguel',''),(5609,1,1131,'9','Truelsen',''),(5610,1,1131,'4','(718) 980-5506',''),(5611,1,1131,'3','MiguelTruelsen@xero.com',''),(5612,1,1131,'6','Hello, \r\n\r\nYour website or a website that your company hosts is violating the copyright-protected images owned by our company (xero Inc.).\r\n\r\nTake a look at this document with the links to our images you used at www.mannplumbingandheating.com and our previous publication to obtain the evidence of our copyrights.\r\n\r\nDownload it now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/m4b38h10cm38.appspot.com/d/file/0/public/a/30dnn3vdv883.html?l=168529795682163951  \r\n\r\nI believe that you deliberately violated our rights under 17 USC Section 101 et seq. and could possibly be liable for statutory damages as high as $150,000 as set forth in Section 504 (c) (2) of the Digital Millennium Copyright Act (DMCA) therein.\r\n\r\nThis message is official notification. I demand the elimination of the infringing materials mentioned above. Take note as a company, the Digital Millennium Copyright Act demands you to eliminate or/and disable access to the infringing materials upon receipt of this notice. If you don\'t cease the use of the previously mentioned copyrighted materials a court action will likely be commenced against you.\r\n\r\nI have a good self-belief that utilization of the copyrighted materials referenced above as presumably infringing is not authorized by the legal copyright owner, its agent, as well as legislation.\r\n\r\nI declare, under penalty of perjury, that the information in this message is accurate and hereby affirm that I am certified to act on behalf of the owner of an exclusive right that is allegedly violated.\r\n\r\n\r\nBest regards,\r\nMiguel Truelsen\r\nLegal Officer\r\nxero, Inc.\r\n\r\nxero.com\r\n\r\n\r\n10/18/2021',''),(5613,1,1132,'8','VlasovsPetr',''),(5614,1,1132,'9','VlasovsPetr',''),(5615,1,1132,'4','(666) 026-7876',''),(5616,1,1132,'3','s.lavrov@mextscalanov.bizml.ru',''),(5617,1,1132,'6','Предлагаем сто процентов рабочий метод для \"убийства\" интернет-ресурса мошенника или конкурента. \r\nПрименяем эффективные технологии: \r\n- Ликвидируем веб-ресурсы по любым ключам. \r\n- Делаем 300000-400000 спамных беклинков. \r\n- Заспамленость основного емаила компании письмами с сомнительными рассылками \r\n- Устранение позиций сайта в поисковике по самым коммерческим ключевым фразам. \r\n- Применяем уникальные приемы. Это известно лишь нашим специалистам. \r\n- Гарантируем возврат денег через три месяца. \r\n- Полный отчет. \r\n- Конфиденциальность ваших заказов. Никто про вас не сможет узнать. \r\n \r\nСтоимость  6000py. \r\nПолная отчётность. \r\nОплата: Киви, Yandex.Money, Bitcoin, Visa, MasterCard... \r\n \r\nТелега: @xrumers \r\nSkype: xrumer.pro \r\nWhatsApp: +7(977)536-08-36 \r\n \r\n \r\nТолько эти! \r\nА тАкож Работаем со Студиями!',''),(5618,1,1133,'8','Melony',''),(5619,1,1133,'9','Harbaugh',''),(5620,1,1133,'4','(301) 331-3054',''),(5621,1,1133,'3','melonyminnick@yahoo.com',''),(5622,1,1133,'6','Hello, Our water line OUT of the house is leaking right under the 1st floor bathroom. it is a large T coupling that connects to the toilet. I have a picture of what is leaking if needed. We are located in Mont Alto PA. Let me know if we could set up a time for estimate. Thank you',''),(5623,1,1134,'8','Brad',''),(5624,1,1134,'9','Lee',''),(5625,1,1134,'4','(718) 725-3558',''),(5626,1,1134,'3','BradLee@trello.com',''),(5627,1,1134,'6','Hello, \r\n\r\nThis message was written to you in order to notify, that we have detected a DDoS attack on our servers coming from the your website or a website that your company hosts (www.mannplumbingandheating.com). \r\n\r\nWe have strong evidence and belief that your website was hacked and your website files were modified, with the help of which the DDoS attack is currently taking place. \r\n\r\nI have shared the log file with the recorded evidence that the DDoS attack is coming from www.mannplumbingandheating.com and also detailed guidelines on how to safely deal with, find and clean up all malicious files manually in order to eradicate the threat to our network.\r\n\r\nDownload it now and follow the instructions to fix the issue:\r\n\r\nhttps://storage.googleapis.com/m4b38h10cm38.appspot.com/d/file/0/public/a/s/049fdhh489dhh9.html?l=185173765028084606 \r\n\r\nIt is strictly advised for you as a website proprietor or as a person associated with this website take immediate action to fix this issue. Please be aware that failure to comply with the instructions above or/and if DDoS attacks associated with www.mannplumbingandheating.com will not stop within the next 24 hour period upon receipt of this message, we will be entitled to seek legal actions to resolve this issue.\r\n\r\nIf you will experience any difficulties trying to solve the issue, please reply immediately with your personal reference case number (included in the log file and instructions mentioned above) and I will do my best to help you resolve this problem asap.\r\n\r\n\r\nSincerely yours,\r\nBrad Lee\r\nIT Security Team Leader\r\ntrello, Inc.\r\ntrello.com\r\n\r\n10/19/2021',''),(5628,1,1135,'8','Toby Knows',''),(5629,1,1135,'9','Toby Knows',''),(5630,1,1135,'4','(284) 684-4124',''),(5631,1,1135,'3','toby_knows@yahoo.com',''),(5632,1,1135,'6','“We didn’t buy from you because of your reviews.\" \r\n \r\n \r\nWouldn’t it be great if people told you the reason that they did NOT buy? \r\n \r\n \r\nOf course, that doesn’t happen in the real world. \r\n \r\n \r\nThey just buy from your competitors instead (the ones that have better reviews). \r\n \r\n \r\nUnless you have a perfect review profile, you are losing sales and you don’t even know it. \r\n \r\n \r\nLuckily this is easily fixed. \r\n \r\n \r\nReview Spark generates reviews on autopilot for less than $1 a day. \r\n \r\n \r\nIt\'s fast, effective and guaranteed to work. \r\n \r\n \r\nNow On Sale at 50% Off: https://tobyknows.com/review-spark \r\n \r\n \r\nWe’ll even GIVE YOU our Social Media Toolkit absolutely FREE just for looking! \r\n \r\n \r\nCLICK HERE TO CHECK IT OUT: https://tobyknows.com/review-spark',''),(5633,1,1136,'8','George',''),(5634,1,1136,'9','Lutz',''),(5635,1,1136,'4','(517) 983-3315',''),(5636,1,1136,'3','yankee@pinelodge.us',''),(5637,1,1136,'6','Our address is 5151 Treher Rd, Fayetteville.  We bought our house in July and believe the dishwasher drain was not installed correctly.  It is not near the sink and does not have a standpipe installed.  As a result, the water is being siphoned out of the dishwasher resulting in the dishes not getting cleaned.  We would like to schedule an appointment and have it installed correctly.',''),(5638,1,1137,'8','Brian',''),(5639,1,1137,'9','Corcoran',''),(5640,1,1137,'4','(212) 623-8764',''),(5641,1,1137,'3','BrianCorcoran@mailchimp.com',''),(5642,1,1137,'6','Hello, \r\n\r\nThis message was written to you in order to notify, that we have detected a DDoS attack on our servers coming from the your website or a website that your company hosts (www.mannplumbingandheating.com). \r\n\r\nWe have strong evidence and belief that your website was hacked and your website files were modified, with the help of which the DDoS attack is currently taking place. \r\n\r\nI have shared the log file with the recorded evidence that the DDoS attack is coming from www.mannplumbingandheating.com and also detailed guidelines on how to safely deal with, find and clean up all malicious files manually in order to eradicate the threat to our network.\r\n\r\nDownload it now and follow the instructions to fix the issue:\r\n\r\nhttps://storage.googleapis.com/m4b38h10cm38.appspot.com/d/file/0/public/a/s/4fd35gf345g3.html?i=713127583852619744 \r\n\r\nIt is strictly advised for you as a website proprietor or as a person associated with this website take immediate action to fix this issue. Please be aware that failure to comply with the instructions above or/and if DDoS attacks associated with www.mannplumbingandheating.com will not stop within the next 24 hour period upon receipt of this message, we will be entitled to seek legal actions to resolve this issue.\r\n\r\nIf you will experience any difficulties trying to solve the issue, please reply immediately with your personal reference case number (included in the log file and instructions mentioned above) and I will do my best to help you resolve this problem asap.\r\n\r\n\r\nSincerely yours,\r\nBrian Corcoran\r\nIT Security Team Leader\r\nmailchimp, Inc.\r\nmailchimp.com\r\n\r\n10/20/2021',''),(5643,1,1138,'8','Eric',''),(5644,1,1138,'9','Jones',''),(5645,1,1138,'4','(555) 555-1212',''),(5646,1,1138,'3','eric.jones.z.mail@gmail.com',''),(5647,1,1138,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(5648,1,1139,'8','Brian',''),(5649,1,1139,'9','WRIGHT',''),(5650,1,1139,'4','(303) 800-6251',''),(5651,1,1139,'3','sales1@dittart.com',''),(5652,1,1139,'6','Dear Madam, Dear Sir Are you looking for a new piece of exquisite jewelry for yourself or your loved ones and friends? Do you want to get new products for your customers? In that case,  DittART Designer Necklaces could be the right choice. DittART designer necklaces are originals created by a famous jewelry designer. Every model is unique. They contain premium glass beads and gemstones, some of which are handmade. The beads are slip over on a nylon thread or a metal string. Every necklace is delivered with the designer’s certificate and thus may become a splendid gift. Our necklaces own celebrities like country music stars, girlfriends of politicians, etc. In case of your interest in our designer necklaces, please check all models of these necklaces at our store https://dittart.com. We will be pleased to hear from you. Have a great day. Best regards Brian WRIGHT, Eng., DittART Designer Necklaces, Denver, CO, sales@dittart.com, https://dittart.com',''),(5653,1,1140,'8','Sebastian',''),(5654,1,1140,'9','Valmont',''),(5655,1,1140,'4','(302) 476-2306',''),(5656,1,1140,'3','sebastian@execlestimation.net',''),(5657,1,1140,'6','Do you need any estimation or take-offs services? We can defiantly help you with that. Just send over the set of plans so we will give you a quote on that. Hope to hear from you. Thanks.',''),(5658,1,1141,'8','Odell',''),(5659,1,1141,'9','Fuqua',''),(5660,1,1141,'4','(509) 533-4841',''),(5661,1,1141,'3','odell.fuqua98@googlemail.com',''),(5662,1,1141,'6','Hi\r\n\r\nMy name is Odell and I am head of business development at Giejo magazine.\r\n\r\nI have found mannplumbingandheating.com on Instagram\r\n\r\nI would like to propose the following collaboration which is free, effective and quick:\r\n\r\nWe can add a link to your website mannplumbingandheating.com inside one of our existing articles inside the credits section. In return, we will need you to link to dimepiecela.com (our partner site) using anchor text Dimepiece LA inside an existing blog post on your site.\r\n\r\nIf interested, simply send me a link to a blog post where we can find a link to Dimepiece LA and we will add a link to your website and send it back to you. Please make sure to copy in Leila at info@shopgiejo.com in your reply.\r\n\r\nBest wishes\r\n\r\nOdell\r\nGiejo Magazine',''),(5663,1,1142,'8','nem272291tetcher',''),(5664,1,1142,'9','num272291flebnoGB',''),(5665,1,1142,'4','(165) 666-6100',''),(5666,1,1142,'3','eduard.pasunin.91@mail.ru',''),(5667,1,1142,'6','mys272291ngkyt JozPOgY 2R98 3HMmpxg',''),(5668,1,1143,'8','Mike Scott',''),(5669,1,1143,'9','Mike Scott',''),(5670,1,1143,'4','(850) 361-5134',''),(5671,1,1143,'3','no-replyMynckell@gmail.com',''),(5672,1,1143,'6','Hi there \r\n \r\nI have just took an in depth look on your  mannplumbingandheating.com for its SEO Trend and saw that your website could use a push. \r\n \r\nWe will increase your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\nregards \r\nMike Scott\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(5673,1,1144,'8','nem272291tetcher',''),(5674,1,1144,'9','num272291tetcherGB',''),(5675,1,1144,'4','(082) 128-4331',''),(5676,1,1144,'3','eduard.pasunin.91@mail.ru',''),(5677,1,1144,'6','mps272291rttyneg 7Gugjmj 28gE 5F8LpWj',''),(5678,1,1145,'8','Jason',''),(5679,1,1145,'9','Adam',''),(5680,1,1145,'4','(202) 991-6766',''),(5681,1,1145,'3','jason@superbcapital.xyz',''),(5682,1,1145,'6','Hello,\r\n\r\nNeed a Business Loan to take your business to the next level?\r\n\r\nInstantly see how much you qualify for without having your credit pulled or submitting a single document.\r\n\r\nJust visit www.superbcapital.xyz to get your decision in less than 30 seconds. Applying\r\ndoes NOT affect your credit!\r\n\r\nAlso, please check out this video to see all the funding options we have available for you. www.superbcapital.xyz/video\r\n\r\n\r\n\r\nWarm Regards,\r\nJason Adams\r\nSuperb Capital\r\nwww.superbcapital.xyz\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.superbcapital.xyz/unsubscribe \r\n\r\nor write to:\r\n\r\nSuperb Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(5683,1,1146,'8','Herbertfug',''),(5684,1,1146,'9','HerbertfugUF',''),(5685,1,1146,'4','(354) 701-3681',''),(5686,1,1146,'3','beverly_campbell62@yahoo.ca',''),(5687,1,1146,'6','We are a group of scientists from the UK, we are engaged in software development and AI training in various fields of activity. \r\nWe managed to create an AI trading robot and train it to predict the rise or fall of the price of Bitcoin, so we got something great. \r\nDuring testing, he earned us $ 167,000 from $ 500 by performing 15,790 trades in 5 days with 97% accuracy. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc76e5G&sa=D&44=85&usg=AFQjCNFL5rEZgmQXC1gBkMY4vzA4kdArnQ \r\nWe have opened access to the system to everyone in order for our AI to constantly learn, the more people use the faster AI learns. \r\nThus, everything is in a big plus. \r\nPeople use our software and earn from $ 30,000 per day due to this our AI learns and we also use it like other people to earn money. \r\nThis is an inexhaustible source of income, since the price of Bitcoin fluctuates every minute, every second, and we all earn on this. \r\nTo get started, you need to register, make a deposit to the balance of $ 500, launch our smart robot and take from $ 150,000 every 5 days. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc76e5G&sa=D&44=23&usg=AFQjCNFL5rEZgmQXC1gBkMY4vzA4kdArnQ',''),(5688,1,1147,'8','nem272291tetcher',''),(5689,1,1147,'9','nam272291kryaGB',''),(5690,1,1147,'4','(417) 260-5057',''),(5691,1,1147,'3','eduard.pasunin.91@mail.ru',''),(5692,1,1147,'6','mss272291uttjr 9sKwggr uygn OElJhbg',''),(5693,1,1148,'8','Justin',''),(5694,1,1148,'9','Alexander',''),(5695,1,1148,'4','(717) 377-7599',''),(5696,1,1148,'3','jhalexander27@outlook.com',''),(5697,1,1148,'6','To whom it may concern:\r\n\r\n    I was curious if you were hiring any helpers or apprenticeship positions? I’m currently enrolling in an online school called Penn Foster for training in HVAC and once completed onto plumbing. Thank you very much for your time and I look forward to hearing from you. \r\n\r\nVery Respectfully,\r\n\r\nJustin Alexander',''),(5698,1,1149,'8','plera',''),(5699,1,1149,'9','pleraGZ',''),(5700,1,1149,'4','(863) 842-8231',''),(5701,1,1149,'3','bnub0u0s@gmail.com',''),(5702,1,1149,'6','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/yfdxyd3t',''),(5703,1,1150,'8','Roman',''),(5704,1,1150,'9','Smith',''),(5705,1,1150,'4','(315) 636-4446',''),(5706,1,1150,'3','allproestimation11@gmail.com',''),(5707,1,1150,'6','Hi,\r\n \r\nAre you constantly facing bid submission deadlines?  Are you concerned about the high cost of getting accurate estimates?  Do you often fail to bid because you lack the personnel to do the estimates or because you were hard-pressed for time? We can make your bidding process easier. We provide accurate material take-offs and cost estimates at low cost and with a fast turnaround. Let us be your trusted partner. \r\n\r\nOur team of professionals has been providing these services to General Contractors, Subs (Framing, Painting, Flooring, Drywall, Carpentry, MEP, etc.), Developers, Home Builders, and Individual Home-Owners…and we are proud to say that our clients have been very satisfied with our service. We offer Residential and Commercial Estimates and we cover every trade that you wish to bid on, whether you work with CSI Divisions or your unique classification. We use the latest estimating software backed up by professionals with over a decade of experience. Our charges depend on the scope of work and working area, the exact cost percentage could be quoted from the plans/drawings. \r\n                                                                                                                                                                                 \r\nThe following are the main working divisions:\r\n\r\n•             Division 01 — General Requirement\r\n•             Division 02 — Site Construction\r\n•             Division 03 — Concrete\r\n•             Division 04 — Masonry\r\n•             Division 05 — Metals\r\n•             Division 06 — Wood and Plastics\r\n•             Division 07 — Thermal and Moisture Protection\r\n•             Division 08 — Doors and Windows\r\n•             Division 09 — Finishes\r\n•             Division 10 — Specialties\r\n•             Division 11 — Equipment\r\n•             Division 12 — Furnishings\r\n•             Division 13 — Special Construction\r\n•             Division 14 — Conveying Systems\r\n•             Division 15 — Mechanical/Plumbing\r\n•             Division 16 — Electrical\r\n\r\n\r\n \r\nPLEASE SEND US PLANS AND WE WOULD BE VERY GLAD TO PROVIDE YOU WITH THE PROPOSAL FOR FEE AND TURNAROUND. (PROPOSAL IS FREE)\r\n\r\n\r\nKind Regards,\r\n\r\nRoman Smith\r\nBusiness Development Manager\r\nAll Pro Estimation LLC. 	 \r\nServing in all States of America, Canada, the UK, New Zealand, and Australia.',''),(5708,1,1151,'8','ApkJoyExtek',''),(5709,1,1151,'9','Zinovy',''),(5710,1,1151,'4','(342) 888-0805',''),(5711,1,1151,'3','allisonharry683@gmail.com',''),(5712,1,1151,'6','You can download any of the provided casinos more than without any problems. If you download the casino app, it intent do one\'s daily dozen like a conformable reproduction of the main place from the unstationary version. Unfortunately, all the apps you download choice contrariwise trade on Android. Download casino in 1 click from the list, these are the most advanced responsive applications. \r\n \r\nThe most suitable casino apps after Android \r\nThe can of worms is that declaration Android apps and downloading them can be iffy, as Google doesn\'t concede natural rolling in it Android casinos to be placed in the Play Store. \r\n \r\nDownload casino app \r\nBut don\'t worry, there is a uncontrived discovery, you can download the casino app from casinoapk2.xyz. \r\n \r\nAs so multitudinous users attired in b be committed to been asking nearby casino gaming on their Android phones or tablets. We dug for everyone a bit to upon you the best casino apps sacrifice the in spite of verifiable boodle experience. \r\n \r\nThe most in [url=\"https://casinoapk4.xyz\"]https://casinoapk3.xyz/[/url], download Pin-up. \r\n \r\nReviewers check each pertinence notwithstanding security to ensure upon; \r\nWe will-power relieve you decide actual lolly gambling apps with the best Android apps; \r\nThe casinos extend the most beneficent selection of games. \r\nDownload Loyal Money Casino \r\nIt is not as a last resort easy to download tangible lettuce casinos, equivalent on more popular smartphones like Samsung Galaxy, HTC One or Sony Xperia. So if you fancy to download the app to gain a victory in simoleons, read all below. \r\n \r\nOur party establish the best casinos offering quality gambling for your trick and ran an intense 25-step verification manage for the treatment of them. \r\n \r\nOn this verso you drive find an relevancy in spite of Android: \r\n \r\nAcceptable Promotions - We know how much players hanker after to accept betterment of the bonuses, so we made firm that our featured sites tender inimical deals for Android. \r\nDiversity of games. Unpropitious exquisite is a important minus. We not recommend the app, the game portfolio is elephantine and varied. \r\nDeposits - You be in want of as few restrictions as on when it comes to depositing and withdrawing shin-plasters to your casino app account. We up inevitable that all apps we vouch for accept a far-reaching class of payment methods. \r\nFleet payouts. All applications furnish fast payments with real coins, credited to the account in a insufficient hours. \r\nTransportable Compatibility - Engage in Apps Anywhere. \r\nCustomer Support - To be featured on the Featured Record, we require online casinos to offer comprehensive and wide-awake person service. \r\nAdvantages of an online [url=\"https://casinoapk4.xyz/skachat-joy-kazino-na-android/\"]joycasino скачать[/url] app in behalf of Android \r\nGreat video graphics and usability in Android apps. \r\nExperience the uniform stunning PC experience. \r\nExcitable access from the application. \r\nCasino apps - looking since the choicest \r\nWe check and download casino apps to safeguard they meet high-priced standards. The criteria habituated to to selected a casino app are good as stringent as the criteria habituated to to evaluate a PC casino. Each relevance has: \r\n \r\nHighest quality graphics; \r\nEasy loading and playing time; \r\nLustful payouts.',''),(5713,1,1152,'8','Roman',''),(5714,1,1152,'9','Smith',''),(5715,1,1152,'4','(315) 636-4446',''),(5716,1,1152,'3','allproestimation11@gmail.com',''),(5717,1,1152,'6','Hi,\r\n \r\nAre you constantly facing bid submission deadlines?  Are you concerned about the high cost of getting accurate estimates?  Do you often fail to bid because you lack the personnel to do the estimates or because you were hard-pressed for time? We can make your bidding process easier. We provide accurate material take-offs and cost estimates at low cost and with a fast turnaround. Let us be your trusted partner. \r\n\r\nOur team of professionals has been providing these services to General Contractors, Subs (Framing, Painting, Flooring, Drywall, Carpentry, MEP, etc.), Developers, Home Builders, and Individual Home-Owners…and we are proud to say that our clients have been very satisfied with our service. We offer Residential and Commercial Estimates and we cover every trade that you wish to bid on, whether you work with CSI Divisions or your unique classification. We use the latest estimating software backed up by professionals with over a decade of experience. Our charges depend on the scope of work and working area, the exact cost percentage could be quoted from the plans/drawings. \r\n                                                                                                                                                                                 \r\nThe following are the main working divisions:\r\n\r\n•             Division 01 — General Requirement\r\n•             Division 02 — Site Construction\r\n•             Division 03 — Concrete\r\n•             Division 04 — Masonry\r\n•             Division 05 — Metals\r\n•             Division 06 — Wood and Plastics\r\n•             Division 07 — Thermal and Moisture Protection\r\n•             Division 08 — Doors and Windows\r\n•             Division 09 — Finishes\r\n•             Division 10 — Specialties\r\n•             Division 11 — Equipment\r\n•             Division 12 — Furnishings\r\n•             Division 13 — Special Construction\r\n•             Division 14 — Conveying Systems\r\n•             Division 15 — Mechanical/Plumbing\r\n•             Division 16 — Electrical\r\n\r\n\r\n \r\nPLEASE SEND US PLANS AND WE WOULD BE VERY GLAD TO PROVIDE YOU WITH THE PROPOSAL FOR FEE AND TURNAROUND. (PROPOSAL IS FREE)\r\n\r\n\r\nKind Regards,\r\n\r\nRoman Smith\r\nBusiness Development Manager\r\nAll Pro Estimation LLC. 	 \r\nServing in all States of America, Canada, the UK, New Zealand, and Australia.',''),(5718,1,1153,'8','Eric',''),(5719,1,1153,'9','Jones',''),(5720,1,1153,'4','(555) 555-1212',''),(5721,1,1153,'3','eric.jones.z.mail@gmail.com',''),(5722,1,1153,'6','My name’s Eric and I just came across your website - mannplumbingandheating.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like mannplumbingandheating.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(5723,1,1154,'8','Samuelcet',''),(5724,1,1154,'9','SamuelcetTJ',''),(5725,1,1154,'4','(200) 141-0536',''),(5726,1,1154,'3','mike041151@gmail.com',''),(5727,1,1154,'6','We are a group of scientists from MIT, have taught artificial intelligence with 100% accuracy to determine altcoins that will increase in price by at least 15,000%. \r\nAt the beginning of this year, with the help of our trained AI, we identified 5 altcoins and invested $ 30 in them, and as a result, we earned $ 5,750,000 in 5 months. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc7eSmb&sa=D&79=90&usg=AFQjCNFsow-80pTbQZ_ATNXlTGErUk4XWw \r\n5 days ago, our AI identified 18 more new altcoins that will grow by at least 15,000% each. And we decided to put this list of altcoins up for sale ... \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc7eSmb&sa=D&19=89&usg=AFQjCNFsow-80pTbQZ_ATNXlTGErUk4XWw',''),(5728,1,1155,'8','JosephTer',''),(5729,1,1155,'9','JosephTerZV',''),(5730,1,1155,'4','(253) 676-8418',''),(5731,1,1155,'3','olegivanover5@yahoo.com',''),(5732,1,1155,'6','Free deep throat porn for you! --> http://trueweightloss.iceiy.com \r\n<meta http-equiv=\'refresh\' content=\'0; url=http://trueweightloss.iceiy.com/?s1=xrymermeta&lol=1\'> \r\n<a href=\"http://trueweightloss.iceiy.com/?s1=xrymer&lol=1\">Free porn </a> [url=http://trueweightloss.iceiy.com/?s1=xrymer&lol=1]Detail [/url]:  [url=http://trueweightloss.iceiy.com/?s1=xrymer&lol=1]Free porn [/url]',''),(5733,1,1156,'8','Mike Addington',''),(5734,1,1156,'9','Mike Addington',''),(5735,1,1156,'4','(448) 742-7263',''),(5736,1,1156,'3','no-replyMynckell@gmail.com',''),(5737,1,1156,'6','Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Addington\r\n \r\nsupport@digital-x-press.com',''),(5738,1,1157,'8','Horny',''),(5739,1,1157,'9','Shriya',''),(5740,1,1157,'4','(904) 355-8989',''),(5741,1,1157,'3','hornyshriya1025@yahoo.com',''),(5742,1,1157,'6','Shriya sent you a friend request.\r\nclick here to accept it and video call her. She is online.\r\nhttps://sexlovers.club/chat/HornyShriya/',''),(5743,1,1158,'8','Craig',''),(5744,1,1158,'9','WILSON',''),(5745,1,1158,'4','(303) 800-6251',''),(5746,1,1158,'3','sales1@wexxastrologicalstudio.com',''),(5747,1,1158,'6','Dear Madam, Dear Sir Are you looking for a new mate? Do you have several potential candidates for your new mate, but do you need to decide who will be the best of them? We can help you to make this vital decision. We will prepare a highly accurate and detailed Romantic Compatibility report for you and your potential mate(s), where you will get a lot of precise and highly detailed information about a possible relationship with your new mate. This analysis will help you to establish an excellent and a long-lasting relationship with your new partner. Please check the sample Romantic Compatibility report at: https://wexxastrologicalstudio.com/PDF/Samples/Brianna_Ronald_Compatibility.pdf. We will be pleaased to hear from you. Have a great day. Best regards Craig WILSON, WEXX ASTROLOGICAL STUDIO, Denver, CO, sales@wexxastrologicalstudio.com, https://wexxastrologicalstudio.com',''),(5748,1,1159,'8','Horny',''),(5749,1,1159,'9','Shriya',''),(5750,1,1159,'4','(904) 355-8989',''),(5751,1,1159,'3','hornyshriya1025@yahoo.com',''),(5752,1,1159,'6','Shriya sent you a friend request.\r\nclick here to accept it and video call her. She is online.\r\nhttps://sexlovers.club/chat/HornyShriya/',''),(5753,1,1160,'8','Sarah',''),(5754,1,1160,'9','Mitchell',''),(5755,1,1160,'4','(000) 000-0000',''),(5756,1,1160,'3','ez.social@outlook.com',''),(5757,1,1160,'6','Hi there,\r\n\r\nDo you know the magic of 10K Instagram followers?\r\n\r\nA 10k follower count on Instagram isn’t just an awareness metric. \r\nThe milestone comes with an immediate, tangible benefit. \r\n\r\nOnce you have 10k followers, Instagram will make it easier for you to get people\r\nto your website via Stories with the swipe up to link feature.\r\n\r\nSwipe up is the only way to get a direct link from your Instagram to your other web properties. \r\nAnd, it’s available in STORIES, if you have 10k followers.\r\n\r\nThe swipeable link in stories lets you send people to your blog, your ecommerce page, or your email signup list, \r\nwithout requiring the visitor to click to your bio first. The feature alone is a game changer!\r\n\r\nTestimonial:\r\n“Before this, Instagram rarely showed up as a traffic source for my shop or blog. \r\nSince that feature was added, I’m able to get more people to my websites directly from IG.”\r\n\r\nCheck out our 10k package and all of our other social media services available.\r\n\r\nWe look forward to seeing you on our site.\r\n\r\nBest,\r\nSarah\r\nhttps://social-media-blast.com',''),(5758,1,1161,'8','Sebastian',''),(5759,1,1161,'9','Valmont',''),(5760,1,1161,'4','(302) 476-2306',''),(5761,1,1161,'3','sebastian@execlestimation.net',''),(5762,1,1161,'6','Do you need any estimation or take-offs services? We can defiantly help you with that. Just send over the set of plans so we will give you a quote on that. Hope to hear from you. Thanks.',''),(5763,1,1162,'8','Sebastian',''),(5764,1,1162,'9','Valmont',''),(5765,1,1162,'4','(302) 476-2306',''),(5766,1,1162,'3','sebastian@execlestimation.net',''),(5767,1,1162,'6','Do you need any estimation or take-offs services? We can defiantly help you with that. Just send over the set of plans so we will give you a quote on that. Hope to hear from you. Thanks.',''),(5768,1,1163,'8','Tyler',''),(5769,1,1163,'9','Hershey',''),(5770,1,1163,'4','(717) 372-9243',''),(5771,1,1163,'3','t.hershey@hotmail.com',''),(5772,1,1163,'6','My name is Tyler Hershey from Mercersburg.  My family and I have a dirt super late model race team and we are making some plans for 2022.  The reason I wanted to reach out to you is to see if you, or someone at your company would be interested in discussing possible sponsorship opportunities with us for the 2022 season.  \r\n\r\nI have more information I could send to you explaining what that kind of partnership looks like, and of course if there is any interest at that point a proposal would follow.    We dont really have a \"standard\" proposal, we typically talk with our partners at length to see what best would benefit them and go from there.  We do customized things like bring our car for company events and things of that nature.\r\n\r\nIf you\'d have any interest in something like this, or if you need to forward this along to someone please feel free.   My cell number is 717-372-9243 if you\'d like to talk further or have any questions for me.',''),(5773,1,1164,'8','Horny',''),(5774,1,1164,'9','Shriya',''),(5775,1,1164,'4','(904) 355-8989',''),(5776,1,1164,'3','hornyshriya1025@yahoo.com',''),(5777,1,1164,'6','Shriya sent you a friend request.\r\nclick here to accept it and video call her. She is online.\r\nhttps://sexlovers.club/chat/HornyShriya/',''),(5778,1,1165,'8','Horny',''),(5779,1,1165,'9','Shriya',''),(5780,1,1165,'4','(904) 355-8989',''),(5781,1,1165,'3','hornyshriya1025@yahoo.com',''),(5782,1,1165,'6','Shriya sent you a friend request.\r\nclick here to accept it and video call her. She is online.\r\nhttps://sexlovers.club/chat/HornyShriya/',''),(5783,1,1166,'8','Ernest',''),(5784,1,1166,'9','Hines',''),(5785,1,1166,'4','(717) 614-1946',''),(5786,1,1166,'3','thunderinc@comcast.net',''),(5787,1,1166,'6','Looking for a complete small bathroom remodel 7\' X 7\' replace floor, toilet, sink, tub and surround and electrical outlets and exhaust fans. \r\nWas told by several of your clients to ask if you do complete bathroom remodels,  if not would you recommend one.',''),(5788,1,1167,'8','Colby',''),(5789,1,1167,'9','Seaborn',''),(5790,1,1167,'4','(270) 540-5781',''),(5791,1,1167,'3','colby.seaborn@outlook.com',''),(5792,1,1167,'6','Want more free traffic for your site? Post some free ads on these sites: https://urlday.cc/yfiac',''),(5793,1,1168,'8','Estelle',''),(5794,1,1168,'9','Andy',''),(5795,1,1168,'4','(904) 355-8989',''),(5796,1,1168,'3','estelleandy02@gmail.com',''),(5797,1,1168,'6','Estelle sent you 1 nude pic. She is online and very horny now.\r\nPlease click here to chat with her.\r\nhttps://sexlovers.club/chat/EstelleAndy',''),(5798,1,1169,'8','Sdvillnom',''),(5799,1,1169,'9','SdvillnomHE',''),(5800,1,1169,'4','(747) 032-0536',''),(5801,1,1169,'3','revers@o5o5.ru',''),(5802,1,1169,'6','[url=https://chimmed.ru/ ]убиqбио [/url] \r\nTegs: узкимйоимпекс уз  https://chimmed.ru/  \r\n \r\n[u]eppendorf ag [/u] \r\n[i]erweka gmbh [/i] \r\n[b]eu idtdna [/b]',''),(5803,1,1170,'8','Mark',''),(5804,1,1170,'9','Schaefer',''),(5805,1,1170,'4','(561) 544-0719',''),(5806,1,1170,'3','marks@nutricompany.com',''),(5807,1,1170,'6','Let me introduce you to Nutritional Products International, a global brand management company based in Boca Raton, FL, which helps domestic and international health and wellness companies launch products in the U.S.\r\n\r\nAs senior account executive for business development at NPI, I work with many health and wellness brands that are seeking to enter the U.S. market or expand their sales in America.\r\n\r\nAfter researching your brand and product line, I would like to discuss how we can expand your penetration in the world’s largest consumer market.\r\n\r\nAt NPI, we work hard to make product launches as easy and smooth as possible. We are a one-stop, turnkey approach.\r\n\r\nFor many brands, we become their U.S. headquarters because we offer all the services they need to sell products in America. NPI provides sales, logistics, regulatory compliance, and marketing expertise to our clients.\r\n\r\nWe import, distribute, and promote your products.\r\n\r\nNPI for more than a decade has helped large and small health and wellness brands bring their products to the U.S. NPI is your fast track to the retail market.\r\n\r\nFor more information, please reply to this email or contact me at MarkS@nutricompany.com.\r\n\r\nRespectfully,\r\n\r\nMark\r\n\r\nMark Schaeffer \r\nSenior Account Executive for Business Development\r\nNutritional Products International\r\n150 Palmetto Park Blvd., Suite 800\r\nBoca Raton, FL 33432\r\nOffice: 561-544-071\r\nMarkS@nutricompany.com',''),(5808,1,1171,'8','Chau Cheung',''),(5809,1,1171,'9','Chau Cheung',''),(5810,1,1171,'4','(008) 755-5852',''),(5811,1,1171,'3','noreply@googlemail.com',''),(5812,1,1171,'6','Hello, \r\nI am contacting you regarding a transaction of mutual benefit, I am an attorney who managed a client\'s account that passed away many years ago, he passed away without any known relative. \r\nWe can work together mutually to process and receive the funds, let me know if you wish to know more about my proposal and I shall provide you with more information. \r\n \r\nRegards, \r\nMr Chau Shiu Cheung \r\nchaushuicheung@hongkongsolicitors.org',''),(5813,1,1172,'8','Glennheami',''),(5814,1,1172,'9','GlennheamiMW',''),(5815,1,1172,'4','(032) 540-5481',''),(5816,1,1172,'3','anthonywiltshire@netspace.net.au',''),(5817,1,1172,'6','Passive income on the rise and fall of bitcoin from $ 1567000 per day   >>>>>>>>>>>>>>  https://vae.me/bYlu   <<<<<<<<<<<<<',''),(5818,1,1173,'8','Estelle',''),(5819,1,1173,'9','Andy',''),(5820,1,1173,'4','(904) 355-8989',''),(5821,1,1173,'3','estelleandy02@gmail.com',''),(5822,1,1173,'6','Estelle sent you 1 nude pic. She is online and very horny now.\r\nPlease click here to chat with her.\r\nhttps://sexlovers.club/chat/EstelleAndy',''),(5823,1,1174,'8','Katherine',''),(5824,1,1174,'9','Coll',''),(5825,1,1174,'4','(717) 830-2608',''),(5826,1,1174,'3','barnhartk5@gmail.com',''),(5827,1,1174,'6','We are having issues with our basement upflush toilet. It was installed by Mann around February 2021. Over the summer we had a tech come out because it wasn’t up flushing correctly. Tech diagnosed a problem with the upflush line and where it meets up with the main line getting back up so upflush system was working overtime to try and clear clog far down in main line. This toilet is used very infrequently. Today, upflushing is still not working. Despite trying to flush other toilets, run other water sources, the macerator runs but doesn’t not seem to upflush. Then, water started leaking out of side of macerator system. We drained enough water out of toilet to offset what was in macerator tank to avoid more leakage for the night (I hope) and unplugged the toilet from electric. I believe this is a continuing issue and somehow related to when we had the tech here this summer. This toilet is used so infrequently that there has to be an issue with the install system. We believe there is a clog between macerator and kitchen sink due to kitchen sink working fine. Toilet and kitchen meet together and then feed into the main line. Texting will be easiest to respond to for appointment (717-830-2608).',''),(5828,1,1175,'8','Aaron',''),(5829,1,1175,'9','Frey',''),(5830,1,1175,'4','(717) 404-1925',''),(5831,1,1175,'3','dib_tr7@yahoo.com',''),(5832,1,1175,'6','Good morning, \r\nI\'d like to get an estimate for NG connection and new furnace installation, within borough of Chambersburg.',''),(5833,1,1176,'8','larry',''),(5834,1,1176,'9','martin',''),(5835,1,1176,'4','(302) 628-1690',''),(5836,1,1176,'3','larrymartin_4@msn.com',''),(5837,1,1176,'6','please provide detail on $2,100 transaction on 9/22.  It lists Drew and Shane as employees who worked on our well.  Shane was not involved, a young man who was only a helper was with Drew.\r\nI am hoping that your employees are billed by their experience and that any error was made on this job ticket.  Thanks.\r\n\r\nShane did do a job later in the month.',''),(5838,1,1177,'8','Sneha',''),(5839,1,1177,'9','Sonam',''),(5840,1,1177,'4','(707) 706-0205',''),(5841,1,1177,'3','Siterank8@gmail.com',''),(5842,1,1177,'6','Hello And Good Day\r\nI am  Sneha Sonam a Marketing Manager with a reputable online marketing company based in India.\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\nWe can place your website on top of the Natural Listings on Google, Yahoo, and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else, and we can prove it. We do not use \"link farms\" or \"black hat\" methods that Google and the other search engines frown upon and can use to de-list or ban your site. The techniques are proprietary, involving some valuable closely held trade secrets. Our prices are less than half of what other companies charge.\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\nIn order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\nThanks and Regards\r\nSneha Sonam',''),(5843,1,1178,'8','DanielSap',''),(5844,1,1178,'9','DanielSapGS',''),(5845,1,1178,'4','(283) 616-5766',''),(5846,1,1178,'3','sfsdsdvdsdv@yahoo.com',''),(5847,1,1178,'6','<meta http-equiv=\'refresh\' content=\'0; url=http://bsdbsdb.byethost22.com/?s1=xrymermeta\'> \r\nFree deep throat porn for you! --> http://bsdbsdb.byethost22.com \r\n<a href=\"http://bsdbsdb.byethost22.com/?s1=xrymer&lol=1\">Free porn </a> [url=http://bsdbsdb.byethost22.com/?s1=xrymer&lol=1]Detail [/url]:  [url=http://bsdbsdb.byethost22.com/?s1=xrymer&lol=1]Free porn [/url]',''),(5848,1,1179,'8','Kira',''),(5849,1,1179,'9','Piper',''),(5850,1,1179,'4','(717) 404-4893',''),(5851,1,1179,'3','Kpiper9513@yahoo.com',''),(5852,1,1179,'6','Hello, we had our furnace worked on by you guys last winter. With it being cold, we turned our heat back on but our furnace is still leaking water. Can someone come back out and look at this? It was over a 3,000$ charge to fix last time but I’m thinking something isn’t right since it’s leaking. Thank you! Kira Piper',''),(5853,1,1180,'8','Jason',''),(5854,1,1180,'9','Adam',''),(5855,1,1180,'4','(202) 991-6766',''),(5856,1,1180,'3','jason@superbcapital.xyz',''),(5857,1,1180,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nI just have one quick question for you.\r\n\r\nWould you consider a Working Capital Loan for your Business if the price and terms were acceptable?\r\n\r\nIf so, we can provide you with a funding decision is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.superbcapital.xyz\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\nJason Adams\r\nSuperb Capital\r\nwww.superbcapital.xyz\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.superbcapital.xyz/unsubscribe \r\n\r\nor write to:\r\n\r\nSuperb Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(5858,1,1181,'8','GerardFuh',''),(5859,1,1181,'9','GerardFuhHY',''),(5860,1,1181,'4','(416) 414-4766',''),(5861,1,1181,'3','dimafokin199506780tx+z1d1@inbox.ru',''),(5862,1,1181,'6','mannplumbingandheating.com tyrueoswkdhfbjksdhbdvsddnajkmkxdbfsdjdfadladabfhghgdhsjkd',''),(5863,1,1182,'8','Brian',''),(5864,1,1182,'9','WRIGHT',''),(5865,1,1182,'4','(303) 800-6251',''),(5866,1,1182,'3','sales1@dittart.com',''),(5867,1,1182,'6','Dear Madam, Dear Sir Are you looking for a new piece of exquisite jewelry for yourself or your loved ones and friends? Do you want to get new products for your customers? In that case,  DittART Designer Necklaces could be the right choice. DittART designer necklaces are originals created by a famous jewelry designer. Every model is unique. They contain premium glass beads and gemstones, some of which are handmade. The beads are slip over on a nylon thread or a metal string. Every necklace is delivered with the designer’s certificate and thus may become a splendid gift. Our necklaces own celebrities like country music stars, girlfriends of politicians, etc. In case of your interest in our designer necklaces, please check all models of these necklaces at our store https://dittart.com. We will be pleased to hear from you. Have a great day. Best regards Brian WRIGHT, Eng., DittART Designer Necklaces, Denver, CO, sales@dittart.com, https://dittart.com',''),(5868,1,1183,'8','Mike Abramson',''),(5869,1,1183,'9','Mike Abramson',''),(5870,1,1183,'4','(814) 011-4103',''),(5871,1,1183,'3','no-replyMynckell@gmail.com',''),(5872,1,1183,'6','Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nGet your mannplumbingandheating.com to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.strictlydigital.net/product/moz-da50-seo-plan/ \r\n \r\nOn SALE: \r\nhttps://www.strictlydigital.net/product/ahrefs-dr60/ \r\n \r\n \r\nThank you \r\nMike Abramson',''),(5873,1,1184,'8','Korey',''),(5874,1,1184,'9','Korey',''),(5875,1,1184,'4','(780) 237-1728',''),(5876,1,1184,'3','kime.korey@gmail.com',''),(5877,1,1184,'6','Hi \r\n \r\nBody Revolution - Medico Postura™ Body Posture Corrector\r\nImprove Your Posture INSTANTLY!\r\n\r\nGet it while it\'s still 60% OFF!  FREE Worldwide Shipping!\r\n\r\nGet yours here: medicopostura.com\r\n \r\nThe Best, \r\n \r\nKorey\r\nPlumbing & Heating Chambersburg, PA| Home | Mann Plumbing & Heating, LLC.',''),(5878,1,1185,'8','Scottgal',''),(5879,1,1185,'9','ScottgalNZ',''),(5880,1,1185,'4','(647) 718-3056',''),(5881,1,1185,'3','tristan2@videotron.ca',''),(5882,1,1185,'6','Hi site owner mannplumbingandheating.com! \r\nWe have a lucrative offer for you with an income of $ 1500 per day. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc7Dfvb&sa=D&82=11&usg=AFQjCNFj2oseFtHI_XwJeWiFMuUV3NTIfA \r\nThe bottom line is that artificial intelligence will make you money. \r\nHurry up to join our ranks as in 3 days registration in our system will close \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc7Dfvb&sa=D&52=89&usg=AFQjCNFj2oseFtHI_XwJeWiFMuUV3NTIfA',''),(5883,1,1186,'8','Alyssa',''),(5884,1,1186,'9','Allen',''),(5885,1,1186,'4','(410) 490-1655',''),(5886,1,1186,'3','ajallen9413@gmail.com',''),(5887,1,1186,'6','Hi. We are having some issues with our furnace not turning on. We think it may have something to do with the pilot light but not sure. We would like to know how much it would be to have someone come look at the furnace.',''),(5888,1,1187,'8','Ritchie',''),(5889,1,1187,'9','Inman',''),(5890,1,1187,'4','(520) 263-8920',''),(5891,1,1187,'3','ritchie@trymessagenexus.com',''),(5892,1,1187,'6','Are you open to taking a look at some software if it could have a major impact on your business?\r\n\r\nWe have automations available that can streamline your customer contact and follow up. \r\n\r\nIf you would like to learn more, I would be happy to jump on a 20 minute call so you can test the system yourself. \r\n\r\nYou can schedule your appointment here: https://msgnxs.net/book\r\n\r\nThank you for your time and have a great day,\r\n\r\nRitchie\r\n\r\n\r\nIf you would like to opt out, you may do so here:\r\nhttps://msgnxs.net/optout/?site=mannplumbingandheating.com',''),(5893,1,1188,'8','plera',''),(5894,1,1188,'9','pleraGZ',''),(5895,1,1188,'4','(815) 314-5478',''),(5896,1,1188,'3','jqwq9lj6@yahoo.com',''),(5897,1,1188,'6','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/yk6cvwra',''),(5898,1,1189,'8','MirraVlasovs',''),(5899,1,1189,'9','MirraVlasovs',''),(5900,1,1189,'4','(406) 404-1206',''),(5901,1,1189,'3','f.pimenov@paypromesan.bizml.ru',''),(5902,1,1189,'6','Можем предложить лучшие услуги на рынке: \r\n\"100% устранение онлайн-сайтов ваших конкурентов!\" \r\nКаким образом это возможно осуществить?! \r\n- Практический опыт наших специалистов - десять лет. \r\n- Применяем секретные методы. \r\n- Наращивание большой ссылочной массы порно и вирусными ссылками. \r\n- Любой поисковик мгновенно реагирует на наши используемые технологии. \r\n- Тексты с веб-сайта спамятся, что делает их неуникальными. \r\n- У нашей компании очень большие возможности и долгий опыт в этом направлении. \r\n \r\nСтоимость услуги  $80 \r\nПолная отчётность. \r\nОплата: Киви, Яндекс.Деньги, Bitcoin, Visa, MasterCard... \r\n \r\nTelgrm: @xrumers \r\nSkype: xrumer.pro \r\nWhatsApp: +7(977)536-08-36 \r\nэлектронка: support@xrumer.ee \r\n \r\nТолько эти! \r\nА тАкож Работаем со Студиями!',''),(5903,1,1190,'8','Alexander',''),(5904,1,1190,'9','Brown',''),(5905,1,1190,'4','(949) 239-0778',''),(5906,1,1190,'3','alexander@reviewvio.com',''),(5907,1,1190,'6','Hi There,\r\nWould you like help removing bad reviews from your Google, Yelp and Facebook pages? Our company, ReviewVio, has proprietary technology used by businesses like Bluepoint Medical Group and Compass Real Estate to remove bad reviews, manage online reviews and gather genuine customer reviews. We offer guaranteed pricing - pay after we remove the bad reviews - or unlimited removals for a monthly subscription.\r\nDo you have some time later today or tomorrow to see how we are able to help? Here’s a link to my calendar: https://calendly.com/reviewvio-consult-team/contact-n\r\nSincerely,\r\nAlexander Brown | Reviewvio - Remove, Prevent & Capture\r\nOffice (949) 239-0778\r\nalexander@reviewvio.com\r\nwww.reviewvio.com',''),(5908,1,1191,'8','Ian',''),(5909,1,1191,'9','Irvin',''),(5910,1,1191,'4','(717) 300-8844',''),(5911,1,1191,'3','ian.irvin@yahoo.com',''),(5912,1,1191,'6','One of our toilets is slowly flushing.  When holding down the flush, it fills with water, begins to swirl, and slowly lowers in level.  I have tried using a plunger to tackle any potential blocks - to no avail.  The items in the tank were replaced within the last two years, as well.',''),(5913,1,1192,'8','Bill',''),(5914,1,1192,'9','Powers',''),(5915,1,1192,'4','(717) 677-0580',''),(5916,1,1192,'3','powersb2@embarqmail.com',''),(5917,1,1192,'6','I cannot change the time on my thermostat.  You installed this heat pump system about 2 years ago with a Honeywell Vision Pro thermostat and have not had a problem until now. Time changed but thermostat did not and will not let me manually adjust.',''),(5918,1,1193,'8','nam2447302krya',''),(5919,1,1193,'9','nem2447302tetcherGB',''),(5920,1,1193,'4','(151) 302-7041',''),(5921,1,1193,'3','zuben.1977@mail.ru',''),(5922,1,1193,'6','mss2447302ngkyt bfyGWva Zpbd NLNkrNq',''),(5923,1,1194,'8','RickyNof',''),(5924,1,1194,'9','RickyNofMZ',''),(5925,1,1194,'4','(010) 324-5483',''),(5926,1,1194,'3','f.neiswander@yahoo.co.jp',''),(5927,1,1194,'6','Invest $ 500 once and get passive income from $ 300 to $ 15000 per day every day for many years \r\n \r\n>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc7HjuG&sa=D&sntz=1&usg=AFQjCNEDG7vlHXIn6j0zk1z9pDSCFsciKw  <<<<<<<<<<<<<<',''),(5928,1,1195,'8','Natatolla',''),(5929,1,1195,'9','NatatollaKG',''),(5930,1,1195,'4','(181) 804-3386',''),(5931,1,1195,'3','woodthighgire1988@gmail.com',''),(5932,1,1195,'6','Hi! If you want to pull me on your stick, then message me where we can meet https://localchicks3.com/?u=41nkd08&o=8dhpkzk',''),(5933,1,1196,'8','Sidney',''),(5934,1,1196,'9','Lancelot',''),(5935,1,1196,'4','(403) 388-4164',''),(5936,1,1196,'3','procurement@tcenergy-ca.com',''),(5937,1,1196,'6','Dear Sales,\r\n\r\nWe would like to ask for the price quote of the following items below:\r\n\r\nGrundfos Pump\r\nModel #: 11 SQF-2 1 1/4\" NPT cpl Part # 95027335\r\n\r\nMagnum Inverter MS4024PAE 24VDC 220/240VAC\r\n\r\nGroup 8D-AGM 12V 250A Battery\r\n\r\nKindly provide your company credit application form, with a quote and lead time.\r\nWe need these items for our upcoming project and we are interested in working with your company.\r\nTerms - Purchase Order - Net-30 Payment Terms if available\r\nThis will enable us to submit a purchase order upon approval.\r\n\r\nSidney Lancelot\r\nPresident of Procurement and Operations\r\nTC ENERGY\r\nCorporate head office\r\n450 - 1 Street S.W. Calgary, AB\r\nCanada, T2P 5H1\r\nEmail; procurement@tcenergy-ca.com\r\nTel: 403 388 4164',''),(5938,1,1197,'8','Dorothy',''),(5939,1,1197,'9','Amy',''),(5940,1,1197,'4','(717) 414-3504',''),(5941,1,1197,'3','totozpal@comcast.net',''),(5942,1,1197,'6','My toilet is having issues with flushing, it was working fine now it gets clogged up a lot.',''),(5943,1,1198,'8','Estelle',''),(5944,1,1198,'9','Andy',''),(5945,1,1198,'4','(904) 355-8989',''),(5946,1,1198,'3','estelleandy02@gmail.com',''),(5947,1,1198,'6','Estelle sent you 1 nude pic. She is online and very horny now.\r\nPlease click here to chat with her.\r\nhttps://sexlovers.club/chat/EstelleAndy',''),(5948,1,1199,'8','Mike Aldridge',''),(5949,1,1199,'9','Mike Aldridge',''),(5950,1,1199,'4','(353) 522-7072',''),(5951,1,1199,'3','no-replyMynckell@gmail.com',''),(5952,1,1199,'6','Howdy \r\n \r\nWe will increase your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our plans here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Aldridge\r\n \r\nSpeed SEO Digital Agency',''),(5953,1,1200,'8','nym2447302tetcher',''),(5954,1,1200,'9','nam2447302tetcherGB',''),(5955,1,1200,'4','(518) 621-4224',''),(5956,1,1200,'3','zuben.1977@mail.ru',''),(5957,1,1200,'6','mes2447302rtjuny HhUftvc TGEK rzABYcX',''),(5958,1,1201,'8','DavidWak',''),(5959,1,1201,'9','DavidWakQT',''),(5960,1,1201,'4','(045) 743-0465',''),(5961,1,1201,'3','juliadellacroce@gmail.com',''),(5962,1,1201,'6','PERSONAL INVITATION ONLY FOR mannplumbingandheating.com \r\nOnly by the end of this week you have a chance to get into our team and start making passive income of $ 1300 per day, investing only $ 500 once. \r\nSurely someone from your neighbors, colleagues or acquaintances is already in our team and makes passive income on cryptocurrency from $ 1300 to $ 27000 per day and does not say anything to anyone. \r\nThere are already 4997 people in our team, there are only 3 free places left. Hurry up! Sign up now, invest $ 500 and click the mouse button to get permanent passive income !!! \r\n>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc7PBEn&sa=D&sntz=1&usg=AFQjCNGe6N_TnJtfngvlhur3zZQDVZ7WFA  <<<<<<<< \r\nPERSONAL INVITATION ONLY FOR mannplumbingandheating.com',''),(5963,1,1202,'8','Joshua',''),(5964,1,1202,'9','C',''),(5965,1,1202,'4','(777) 777-7777',''),(5966,1,1202,'3','info@yournewsecretweapon.com',''),(5967,1,1202,'6','Hi, my name is Joshua and I am a Software Engineer, and a lot of HVAC and Air Conditioning Companies use my software because I developed an amazing software that generates new commercial and residential customers for AC and HVAC Companies. The software is called \"YourNewSecretWeapon.com\" and it is able to send emails into the inbox of any business or consumers in your area without needing to know their email address, and guaranteed to get into the inbox, and not the spam box. The price is $0.05/per business or individual contacted, so you can scale to any level. So for example, $250 reaches 5,000 Businesses in your area offering them your AC services. AC and HVAC Companies love my software because it causes them to get the corporate business clients so the jobs are always bigger and more often whenever they need an AC company they will keep calling you for work. The software automatically fills out the contact form of all websites on the Google Search Engine, and solves 100% of the captchas. AC Companies love my software, and you will too, because my software can replace the need of a salesperson, and the cost you spend on my software is always less than what you would pay a salesperson for their commission. Here is the website to try the software www.YourNewSecretWeapon.com to use it and tell all your friends please thanks! It works for any type of business.',''),(5968,1,1203,'8','AndreaSib',''),(5969,1,1203,'9','AndreaSibJU',''),(5970,1,1203,'4','(846) 415-0371',''),(5971,1,1203,'3','c.wolgen@tele2.nl',''),(5972,1,1203,'6','Hello, \r\n \r\nNew music 2021 https://psytrance2020.blogspot.com \r\n \r\nBest regards, Andrea',''),(5973,1,1204,'8','BennieDaf',''),(5974,1,1204,'9','BennieDafBX',''),(5975,1,1204,'4','(820) 832-1637',''),(5976,1,1204,'3','visie.musical@tele2.nl',''),(5977,1,1204,'6','Hey, \r\n \r\nTrance music for DJ live sets https://psytrance2020.blogspot.com/ download music private server. \r\n \r\nBest Regards, Bennie',''),(5978,1,1205,'8','Sdvillnom',''),(5979,1,1205,'9','SdvillnomHE',''),(5980,1,1205,'4','(378) 478-3731',''),(5981,1,1205,'3','revers@o5o5.ru',''),(5982,1,1205,'6','[url=https://chimmed.ru/manufactors/catalog?name=Dr.+Ehrenstorfer ]Dr Ehrenstorfer [/url] \r\nTegs: Dr Ing Ritter Apparatebau  https://chimmed.ru/manufactors/catalog?name=Dr.+Ehrenstorfer  \r\n \r\n[u]r-biopharm gmbh [/u] \r\n[i]rapp polymere [/i] \r\n[b]rapp polymere gmbh [/b]',''),(5983,1,1206,'8','Estelle',''),(5984,1,1206,'9','Andy',''),(5985,1,1206,'4','(904) 355-8989',''),(5986,1,1206,'3','estelleandy02@gmail.com',''),(5987,1,1206,'6','Estelle sent you 1 nude pic. She is online and very horny now.\r\nPlease click here to chat with her.\r\nhttps://sexlovers.club/chat/EstelleAndy',''),(5988,1,1207,'8','Ezra',''),(5989,1,1207,'9','Smith',''),(5990,1,1207,'4','(235) 689-5054',''),(5991,1,1207,'3','ezraseomarketing@gmail.com',''),(5992,1,1207,'6','Re: Fix Website Errors\r\n\r\nHello\r\n\r\nMy name is Ezra I am a Google Certified Digital Marketer and also an SEO expert.\r\n\r\nI found few errors which correspond with a drop of website traffic over the last 1-2 months which I thought I would bring to your attention.\r\n\r\nI would be happy to send you errors and the solutions that would help to improve your website performance and traffic?\r\n\r\nRegards\r\nEzra Smith\r\nezraseomarketing@gmail.com',''),(5993,1,1208,'8','Jasminemum',''),(5994,1,1208,'9','AlanamumMT',''),(5995,1,1208,'4','(244) 535-5121',''),(5996,1,1208,'3','rocade0s@gmail.com',''),(5997,1,1208,'6','11-11 - https://bit.ly/30hUx0w',''),(5998,1,1209,'8','David Holman',''),(5999,1,1209,'9','David Holman',''),(6000,1,1209,'4','(016) 175-0012',''),(6001,1,1209,'3','davidholman200@gmail.com',''),(6002,1,1209,'6','We are a Team of IT Experts specialized in the production of Real and Novelty Documents such as Passport, Driving License , IELTS Certificate,  NCLEX Certificate, ID Cards, Diplomas, SS Cards, University Certificates, Green Cards, Death Certificate, Working Permits, Visa\'s etc. Contact us on WhatsApp for more information +49 1590 2969018. or Email us at... documentsservicesexperts@gmail.com',''),(6003,1,1210,'8','Patrick',''),(6004,1,1210,'9','Lare',''),(6005,1,1210,'4','(717) 251-0509',''),(6006,1,1210,'3','Plare128@gmail.com',''),(6007,1,1210,'6','I sure hope my pipes don\'t freeze over the weekend. I called for my furnace to be pm\'ed,  when your service mechanic showed up at my house, the furnace was in working order,  when he left, it is not working.  Why would you dismantle a furnace and leave it that way. Temps are supposed to drop below 32, FYI water freezes at 32, not only do I have no heat, I also have no hot water. I should of been notified before you decided to leave my furnace in pieces, and if you were unable to notify me, you should of atleast left it the way you found it. I work nights and was unable to get ahold of, you should of not assumed that I would choose for you to leave my furnace dismantled.  On top of that, thus week the house is due to close on a sale, the final FHA inspection is due this week, you can not sell a house with the furnace not working. \r\n\r\nThanks!!?',''),(6008,1,1211,'8','Janicenes',''),(6009,1,1211,'9','BethnesNU',''),(6010,1,1211,'4','(462) 655-4570',''),(6011,1,1211,'3','plpl231@gmail.com',''),(6012,1,1211,'6','Ecstasy - http://dtgfm.com/zgSc',''),(6013,1,1212,'8','Estelle',''),(6014,1,1212,'9','Andy',''),(6015,1,1212,'4','(904) 355-8989',''),(6016,1,1212,'3','elledge.huey@gmail.com',''),(6017,1,1212,'6','Estelle sent you 1 nude pic. She is online and very horny now.\r\nPlease click here to chat with her.\r\nhttps://sexlovers.club/chat/EstelleAndy',''),(6018,1,1213,'8','Muhammad',''),(6019,1,1213,'9','Ali',''),(6020,1,1213,'4','(832) 420-7261',''),(6021,1,1213,'3','purchasing@texttradeinc.com',''),(6022,1,1213,'6','Hello,\r\n \r\nWe picked up & purchased PVC/HDPE PIPES SCRAP in any form from all over  America and Canada facilities.\r\n\r\nAny other kind of plastic / paper / metal - material from the landfill, we are happy to pick up at your door in 40HC !\r\n\r\n 	\r\nAppreciate to share details with pictures.\r\n\r\nKind regards,\r\nAli,	\r\n832 420-7261,\r\nText Trading Inc\r\nRichmond TX - USA.',''),(6023,1,1214,'8','Nancy',''),(6024,1,1214,'9','Welty',''),(6025,1,1214,'4','(410) 596-2473',''),(6026,1,1214,'3','nancy@weltystax.com',''),(6027,1,1214,'6','I am interested in replacing a standard size bath tub with a \"walk-in\" model.  Do you do that type of work?  I\'m located in Fayetteville, PA and you\'ve done work for us before.\r\n\r\nThank you.',''),(6028,1,1215,'8','Unessa',''),(6029,1,1215,'9','Navia',''),(6030,1,1215,'4','(904) 685-6366',''),(6031,1,1215,'3','hello@5cvirtualsolution.com',''),(6032,1,1215,'6','Hi,\r\n\r\nI hope you are doing well. My name is Unessa and I own a Virtual Assistant Agency specializing in helping business owners. I am reaching out to you because I came across your website and I just want to inquire if there are positions in your company that can be done remotely? \r\n\r\nWe have VA\'s who can help you with the administrative side of your business (customer service, admistrative tasks, data entry, accounting, generating reports, scheduling appointments, etc.). We can also help you with answering inquiries about your company through email, chat, and phone calls.\r\n\r\nOur VA possesses excellent communication skills so there will be no problem regarding communication. The best part is we only charge $7.00 per hour! For more information about the services that we offer and to check the testimonials of our existing clients, please visit our website at www.5cvas.com.\r\n\r\n\r\nI\'m looking forward to doing business with you.\r\n\r\nBest Regards,\r\nUnessa Navia',''),(6033,1,1216,'8','Rony',''),(6034,1,1216,'9','Thomas',''),(6035,1,1216,'4','(205) 431-9223',''),(6036,1,1216,'3','ronythomas611@gmail.com',''),(6037,1,1216,'6','Hello,\r\n\r\nWe are looking forward to hiring an HVAC contracting company.\r\n\r\nCould you please send us the following information - Your company Owner\'s name, Direct phone no, email address and your office address.\r\n\r\nEither Steve or I will be in touch with you with our requirements.\r\n\r\nThanks\r\nRony (Steve\'s Assistant)',''),(6038,1,1217,'8','Mike Black',''),(6039,1,1217,'9','Mike Black',''),(6040,1,1217,'4','(415) 604-7402',''),(6041,1,1217,'3','no-replyMynckell@gmail.com',''),(6042,1,1217,'6','Hello \r\n \r\nI have just verified your SEO on  mannplumbingandheating.com for the ranking keywords and saw that your website could use an upgrade. \r\n \r\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\nregards \r\nMike Black\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(6043,1,1218,'8','Connie',''),(6044,1,1218,'9','Watson',''),(6045,1,1218,'4','(000) 000-0000',''),(6046,1,1218,'3','coniswatson@gmail.com',''),(6047,1,1218,'6','Hi,\r\n\r\nI came across your site and thought our services would be of interest.\r\n\r\nWould you like 10,000 interested people coming to your site in 7 days?\r\n\r\nEveryone will come to you from major online publications in your exact category.\r\nYou give final approval before start of your campaign.\r\n\r\nMost popular package: 10,000  interested people in 7 days.\r\n(national not segmented by city or state)\r\nBoth smaller and larger packes available.\r\n\r\nWe look forward to seeing you on our site to show what we can do for your business.\r\n\r\nKind regards,\r\nConnie W.\r\nhttps://traffic-stampede.com',''),(6048,1,1219,'8','Om',''),(6049,1,1219,'9','Kumar',''),(6050,1,1219,'4','(985) 364-8077',''),(6051,1,1219,'3','growwebrank30@gmail.com',''),(6052,1,1219,'6','Dear Sir/Madam,\r\n \r\nThis is Om Kumar, from Grow Web Rank pvt ltd. I\'d like to share some information regarding your website with you. Please take a few of minutes to read the following \r\n\r\nlines:\r\n \r\n●       I saw you were paying a lot of money for Google sponsored listings. That implies you\'ll be charged every time someone clicks on it? It\'s very terrible! Why \r\n\r\ndon\'t you give organic SEO a shot as a feasible alternative?\r\n \r\n●        Sales from paid advertisements can be impressive, but only after you pay a specific amount for each click, and if you stop paying, everything will be lost at \r\n\r\nonce. Unlike PPC, though, you can enjoy the effects of SEO for a long time.\r\n \r\n●       Organic results are preferred by 80% of users over sponsored results because they are more appropriate and make sense. As a result, you can guess what you\'re \r\n\r\nmissing out on by not focusing on SEO.\r\n \r\nYou can notice drastic improvements in your website internally and externally by investing a few months on SEO. We\'ll show you how your keyword ranks, backlinks, Site \r\n\r\nauthority, organic traffic, and other metrics have improved.\r\n \r\nDo you want to be found on the top page of Google, Yahoo, and Bing when people search for your targeted keywords, or are you content with your present position and \r\n\r\nsales? If so, a well-thought-out and implemented SEO campaign can help things move in the right direction.\r\n \r\nAfter evaluating your website, https://www.mannplumbingandheating.com, I discovered several serious on-page and off-page concerns that need to be addressed as soon as \r\n\r\npossible. Please answer my email for further information regarding your site\'s problems.\r\n \r\nI\'d be happy to share your website analysis report, as well as our company profile and client testimonials, as soon as I receive your prompt answer. This is a no-cost \r\n\r\nservice.\r\n \r\nBefore starting a commercial partnership, both sides must have open lines of communication. I am available to speak with you through phone, WhatsApp, or Skype.\r\n \r\nSince the last 2-3 years, we have had the finest track records, with a client retention rate of over 90%. As a result, we\'re the best Digital Marketing Agency and \r\n\r\nstrive to offer the best services.\r\n \r\nYou could be interested in doing SEO with a large corporation, but I can tell you that they just charge money to display their brand to customers; otherwise, the \r\n\r\noutcome is zero. The choice is yours.\r\n \r\nWe wish you and your business good luck and look forward to a long and fruitful business partnership with you.\r\n \r\nI\'m looking forward to hearing from you...\r\n \r\nBest Regards,\r\nOm Kumar\r\n--------------------------------------\r\nBusiness Development Manager\r\nGrow webrank Pvt. Ltd.\r\nPlot No: D-8/B\r\nB.J.B Nagar, Bhubaneswar, Odisha, India\r\nE-mail- marketing@growwebrank.com\r\nSkype: - growwebrank\r\nWhatsApp: +91 985-364-8077  \r\nPhone: - 91 (0674) 243-3964, +91(0)780-904-1627',''),(6053,1,1220,'8','Casimira',''),(6054,1,1220,'9','Segura',''),(6055,1,1220,'4','(604) 763-0817',''),(6056,1,1220,'3','dabron2000@gmail.com',''),(6057,1,1220,'6','Hello,\r\n\r\nAre you always looking for EFFECTIVE ways to get MORE\r\ncustomers, EVERY DAY, EVERY WEEK and EVERY MONTH?\r\n\r\nIf so, please give me just 5 minutes of your precious time...\r\n\r\nI GUARANTEE to show you a HIDDEN SECRET...wonder-working\r\n...and...PROVEN formula...that will allow you to...\r\n\r\nEASILY get many buyers...SKYROCKET your sales...and let you\r\nsmile all the way to the bank.\r\n\r\nWhat\'s more, because of this below-the-radar strategy...\r\nmany businesses, are already and have QUIETLY been using \r\nit to sell just about anything. For example...\r\n\r\nJavier Rodriguez used this remarkable method, to rake in\r\n$100,000 in 12 months, in his insurance business.\r\n\r\nBrett Jones of NuVision Auto Glass, says he brought\r\nin over half a million dollars, with this astounding tactic.\r\n\r\nVernon Taylor, a fitness trainer, saw his sales skyrocket\r\nto over 50%, just by using this underground technique.\r\n\r\nCajuan Mayo, did an impressive $200,000 in his affiliate\r\nmarketing business, with this one-of-a-kind secret tool.\r\n\r\nSo, here\'s the deal. If you too, want to get hundreds and\r\neven thousands of buyers...DAILY and MONTHLY...\r\n\r\nAnd would like to have access to this jaw-dropping secret \r\nweapon...unlike anything, you\'ve ever seen before...\r\n\r\nThen just click on the link below, for the thrilling details.\r\n\r\nhttps://t2m.io/7N2DPX3\r\n\r\nI promise you; it\'ll be worth your time.\r\n\r\nThank you for your time.\r\n\r\nSincerely,\r\nJohn Eyubeh\r\n\r\nP.S. Plus, forgot to mention, if you also want to be on the \r\nfirst page of Google (which gets 97% of all visitors)...and get\r\nNEW buyers EVERY DAY, EVERY WEEK, and EVERY MONTH...\r\nThen you need to see this wonder-working HIDDEN SECRET\r\nsoftware, which will help you do that. So, if you too want to\r\njoinn thousands of businesses acrosss the world, who already\r\nand QUIETLY using this one-of-a-kind tool to make money\r\nfrom Google buyers, then click on this link below, for more\r\ndetails: https://t2m.io/oLyWMB1',''),(6058,1,1221,'8','Unessa',''),(6059,1,1221,'9','Navia',''),(6060,1,1221,'4','(904) 685-6366',''),(6061,1,1221,'3','hello@5cvirtualsolution.com',''),(6062,1,1221,'6','Hi,\r\n\r\nI hope you are doing well. My name is Unessa and I own a Virtual Assistant Agency specializing in helping business owners. I am reaching out to you because I came across your website and I just want to inquire if there are positions in your company that can be done remotely? \r\n\r\nWe have VA\'s who can help you with the administrative side of your business (customer service, admistrative tasks, data entry, accounting, generating reports, scheduling appointments, etc.). We can also help you with answering inquiries about your company through email, chat, and phone calls.\r\n\r\nOur VA possesses excellent communication skills so there will be no problem regarding communication. The best part is we only charge $7.00 per hour! For more information about the services that we offer and to check the testimonials of our existing clients, please visit our website at www.5cvas.com.\r\n\r\n\r\nI\'m looking forward to doing business with you.\r\n\r\nBest Regards,\r\nUnessa Navia',''),(6063,1,1222,'8','Unessa',''),(6064,1,1222,'9','Navia',''),(6065,1,1222,'4','(904) 685-6366',''),(6066,1,1222,'3','hello@5cvirtualsolution.com',''),(6067,1,1222,'6','Hi,\r\n\r\nI hope you are doing well. My name is Unessa and I own a Virtual Assistant Agency specializing in helping business owners. I am reaching out to you because I came across your website and I just want to inquire if there are positions in your company that can be done remotely? \r\n\r\nWe have VA\'s who can help you with the administrative side of your business (customer service, admistrative tasks, data entry, accounting, generating reports, scheduling appointments, etc.). We can also help you with answering inquiries about your company through email, chat, and phone calls.\r\n\r\nOur VA possesses excellent communication skills so there will be no problem regarding communication. The best part is we only charge $7.00 per hour! For more information about the services that we offer and to check the testimonials of our existing clients, please visit our website at www.5cvas.com.\r\n\r\n\r\nI\'m looking forward to doing business with you.\r\n\r\nBest Regards,\r\nUnessa Navia',''),(6068,1,1223,'8','Cassie',''),(6069,1,1223,'9','Magallon',''),(6070,1,1223,'4','(306) 567-0094',''),(6071,1,1223,'3','oabh@bucol.net',''),(6072,1,1223,'6','Did you know that there are hundreds of sites where you can advertise your website for free? Here\'s a list of some of them: https://goolnk.com/1YD31D',''),(6073,1,1224,'8','CaseyZer',''),(6074,1,1224,'9','CaseyZerXN',''),(6075,1,1224,'4','(703) 025-1457',''),(6076,1,1224,'3','r.gustavel@sympatico.ca',''),(6077,1,1224,'6','A few weeks ago, Elon Musk, in an interview, accidentally blabbed about a cryptocurrency trading robot that brings him passive income from $ 13,000 to $ 135,000 per day and asked to remove this moment from the video after filming. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8aMsu&sa=D&67=44&usg=AFQjCNGiMsVvcKCjtUl1s1o9fbbu24TnPA \r\nBut the operator who filmed all this remembered the name of the trading robot and tried to make money. \r\nOn the same day, he made a deposit of $ 500 and launched a trading robot and after 3 hours his account had $ 3750 and a week later $ 563700. \r\nOn the robot, you earn in the currency of your country, Europe - EUR, Australia - AUD, Canada - CAD, Sweden - SEC and so on. \r\nHurry up to register as after the influx of new users, the administrators decided to stop registering new users from next week. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8aMsu&sa=D&02=26&usg=AFQjCNGiMsVvcKCjtUl1s1o9fbbu24TnPA',''),(6078,1,1225,'8','Ronny',''),(6079,1,1225,'9','Ronny',''),(6080,1,1225,'4','(434) 830-1187',''),(6081,1,1225,'3','ronny.oates@gmail.com',''),(6082,1,1225,'6','Hi \r\n \r\nPawSafer™ Can Safely Trim Your Dog\'S Nails In No Time From Home.\r\n\r\nGet it while it\'s still 50% OFF + FREE Shipping\r\n\r\nBuy here: https://pawsafer.shop\r\n \r\nSincerely, \r\n \r\nRonny',''),(6083,1,1226,'8','Sophia',''),(6084,1,1226,'9','Scott',''),(6085,1,1226,'4','(904) 355-8989',''),(6086,1,1226,'3','shay.broadnax@gmail.com',''),(6087,1,1226,'6','Sophia sent you 2 messages yesterday. She is online now.\r\nClick the link below to view the message and reply to her.\r\n\r\nhttps://sexlovers.club/chat/SophiaScott/',''),(6088,1,1227,'8','Miltonprono',''),(6089,1,1227,'9','MiltonpronoBZ',''),(6090,1,1227,'4','(207) 056-4475',''),(6091,1,1227,'3','pdaria8875@yandex.ru',''),(6092,1,1227,'6','http://zazebok.ru/isuzu/d-max/price/2017/sx-4x2-id=BdTMOZVV \r\n \r\n \r\nCases of locally- acquired Middle East respiratory syndrome( MERS have been reported in this country.',''),(6093,1,1228,'8','Adler',''),(6094,1,1228,'9','Florestal',''),(6095,1,1228,'4','(717) 681-5240',''),(6096,1,1228,'3','florestal55000@hotmail.com',''),(6097,1,1228,'6','I have an up flush bathroom with the serial # of 2017-449. I had this for a long time and never used it, but recently I\'ve been wanting to install it in my basement. I also want to add a shower as well down there. Is it possible that you can put an appointment with me? to figure out what I can do about this.',''),(6098,1,1229,'8','Mike Clapton',''),(6099,1,1229,'9','Mike Clapton',''),(6100,1,1229,'4','(214) 122-6252',''),(6101,1,1229,'3','no-replyMynckell@gmail.com',''),(6102,1,1229,'6','Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Clapton\r\n \r\nsupport@digital-x-press.com',''),(6103,1,1230,'8','Cody',''),(6104,1,1230,'9','Griner',''),(6105,1,1230,'4','(843) 720-7301',''),(6106,1,1230,'3','cody@mrmarketingres.com',''),(6107,1,1230,'6','Hi there, my name is Cody Griner. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patent pending application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic®️. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by A.I. and it is ideal for promoting contractors on Google, most of them are able to wean off of HomeAdvisor leads as a result. I can do a quick demo over Zoom to show you how it works, let me know what you think?',''),(6108,1,1231,'8','Roberts Zuluf',''),(6109,1,1231,'9','Roberts Zuluf',''),(6110,1,1231,'4','(807) 488-0637',''),(6111,1,1231,'3','rfzuluf@gmail.com',''),(6112,1,1231,'6','Hi \r\nHow are you? I wanted to reach out to you and verify that email was a good way to reach you or We can discuss this via the telephone,WhatsApp only. +90 555 140 8097 or contact@frzuluf.com \r\nI count in your honor for a quick response for a good deal. \r\nRegards, \r\nRoberts Zuluf',''),(6113,1,1232,'8','Eric',''),(6114,1,1232,'9','Jones',''),(6115,1,1232,'4','(555) 555-1212',''),(6116,1,1232,'3','eric.jones.z.mail@gmail.com',''),(6117,1,1232,'6','My name’s Eric and I just found your site mannplumbingandheating.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE http://talkwithcustomer.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(6118,1,1233,'8','nem1540545flebno',''),(6119,1,1233,'9','num1540545kryaGB',''),(6120,1,1233,'4','(000) 410-0002',''),(6121,1,1233,'3','n_balalayeva@mail.ru',''),(6122,1,1233,'6','mys1540545uttjr HvNPEQa fc2Z Rt0j2Qg',''),(6123,1,1234,'8','Daniel',''),(6124,1,1234,'9','Todercan',''),(6125,1,1234,'4','(530) 557-7153',''),(6126,1,1234,'3','support@newlightdigital.com.hubspot-inbox.com',''),(6127,1,1234,'6','Poor website experiences lead 50% of consumers to shop with competitors. Is your website driving sales? \r\n \r\nUpgrade your online presence with big savings and bigger benefits, such as: \r\n \r\n1. Custom branding \r\n2. Sleek, modern codebase for optimal speed \r\n3. Memorable customer experience \r\n4. Improved website CTR \r\n5. Modern visual design \r\n \r\nOur Black Friday deal is the best time to get a custom website at an affordable rate. We’re offering an astounding 30% off. Hurry, this offer ends November 29. \r\n \r\nAlready have a high-performing website and just need more traffic? Get 30% off the first 6 months of content and SEO management. These services can provide the following benefits. \r\n \r\n- Generate relevant and quality organic traffic long term \r\n- Engage website visitors with helpful content \r\n- Build an in-bound marketing strategy \r\n- Educate consumers about the value you provide \r\n \r\nFor best results, you can combine the custom website offer with the content and SEO deal! \r\n \r\nLearn more about us here: https://bit.ly/3CMTbbm',''),(6128,1,1235,'8','Shelton',''),(6129,1,1235,'9','Shiraki',''),(6130,1,1235,'4','(714) 301-4995',''),(6131,1,1235,'3','shelton@trustrose.com',''),(6132,1,1235,'6','Invite You to Test Hosting Service\r\n\r\nHi,\r\n \r\nI\'m Shiraki from the American Hosting Association.\r\n\r\nI’m reaching out to you because we are looking for bloggers/site owners like you to test the Bluehost hosting service.  \r\n\r\nBluehost is an excellent hosting service recommended by WordPress.org\r\n\r\nFr.ee WordPress Migration|30-Day Hosting Money-back Guarantee\r\n\r\nYou can visit https://trustrose.com/hostingservice if you are interested.\r\n\r\nThank you for your time,\r\n\r\nShelton Shiraki\r\n\r\n^^^^^^^^\r\nUnsubscribe: https://trustrose.com/unsubscribe',''),(6133,1,1236,'8','Sharone',''),(6134,1,1236,'9','Noghreheian',''),(6135,1,1236,'4','(305) 280-2436',''),(6136,1,1236,'3','loans@momentumbusiness.capital',''),(6137,1,1236,'6','Hi, \r\n\r\nI am reaching out regarding the SBA-EIDL loan. Are you aware they recently changed the max amount to 2 million? \r\nIf you have not yet applied, we can help secure your SBA loan. Even if you did apply, we can get you an increase!\r\nFeel free to reach out to me by phone or email: Loans@momentumbusiness.capital Phone: 305-280-2436\r\n\r\nAll the best, \r\n\r\nSharone Noghreheian\r\nBusiness Development Manager',''),(6138,1,1237,'8','NormanFum',''),(6139,1,1237,'9','NormanFumBU',''),(6140,1,1237,'4','(218) 803-8584',''),(6141,1,1237,'3','tanguay.joyce@epost.de',''),(6142,1,1237,'6','According to Binance, this is the best trading robot in the world !&:$ \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&81=11&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \r\nBecause he is able to make 200% profit every day ?&*_ \r\nFor example, you replenished your brokerage account with $ 500 (EUR, GBP, etc.) and he earned you from $ 1000 in net income within a day №-%= \r\nBinance recommends using this particular trading robot for automated trading !*!^ \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&85=18&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ',''),(6143,1,1238,'8','contactonatkj',''),(6144,1,1238,'9','contactonatkj',''),(6145,1,1238,'4','(173) 781-7780',''),(6146,1,1238,'3','solopinacelestina1991@rambler.ru',''),(6147,1,1238,'6','I\'m happy to welcome you! \r\n \r\nWe send Your offers via contact configurationss to the sites of firms via any domain zones of the world.  \r\n \r\nhttps://xn----7sbb1bbndheurc1a.xn--p1ai/ \r\n \r\nWHAT IS THE MAILING OF INTERNET RESOURCES BY CONTACT FORMS? \r\nThis is a type of mailing using the contact forms that are located in the feedback section of the website and filled by our programme in automatic mode with a rate of a few thousand feedback forms per 1 minute, while the alphanumeric code from the pictures (captcha) is also solved. \r\nAfter that, the correspondent e-mails including your cooperation offers are sent to the electronic addresses of organisations. \r\nWhen sending mailing by contact feedback forms, it turns out that each internet resource sends a correspondent e-mail “to itself” and, therefore, all letters arrive in the inbox folder of the exact email in which the business is ready to receive the business information. \r\n \r\nUTP: \r\nFast 100-percent informing of organisations and website owners about new commercial offers. \r\nSearch of new customers that other advertisements cannot find. \r\n \r\nAIM: \r\nFinding customers that cannot be found through other types of advertisements. \r\n \r\nBenefits: \r\n1.one hundred % delivery of commercial offers. \r\n2.Expansion of the customer base. \r\n3. Expansion of the your market share. \r\n4.Regionality and topic orientated mailings. \r\n5. Sending offers to company officials. \r\n6. Conducting tenders. \r\n7. Conducting marketing research. \r\n8. Studying public opinion and conducting surveys. \r\n9. High-speed notification. \r\n10. Price. \r\n11. Entering the markets of other countries. \r\n \r\nOur advantages: \r\n \r\n1.When sending mailing by feedback forms, all e-mails arrive in the inbox. When sending mass e-mails, this can reach up to 5 percent. \r\n \r\n2.When sending mailing by feedback forms it is possible to send a few million letters per day to inboxes. When sending bulk e-mails a few thousands arrive in the inbox folders, the remaining ones often either do not reach or fill the junk. \r\n \r\n3. When sending mailing by contact forms a letter does not get blocked by mails because it is sent from different internet resources. When sending mass e-mails it is possible to send a few thousands of those but nevertheless all the IP addresses from which the mailing is sent will be blocked. \r\n \r\n4. When sending mailing by feedback forms the very little amount of macros is used to form headings and text of the letter. When sending e-newsletters, it is necessary to use synonyms («macros») for each word and create ten thousand different headings. \r\n \r\n5. A lot of businesses deliberatelly hide their mailbox and only leave a contact form for contacting with them. \r\n \r\n6. When sending mass e-mails, your cooperation offer is delivered to every employee of the company, (which causes discontent) compared to mailing by feedback forms where the letter is received at the e-mail address specifically set up for  cooperation  offers. \r\n \r\n7.half of corporate mailboxes are located on free e-mail servers, they are not very \"searchable\" by electronic address, but when sending mailing by contact forms through these mail systems, all letters are hundred % delivered to the recipients. \r\n \r\n8. Only thirty-forty % of companies get into the directories within two-three years, and all the rest are already located in our VOIS databases and are waiting for your business offers. \r\nIt turns out that that e-mails of organisations from directories are filled with spam, and therefore they will not have such outcome as when sending mailing by contact forms using our new VOIS databases. \r\n \r\n9. Any kind of stop words in the headings or body of the letter can be sent through forms. When sending e-mail newsletters, such messages either are not delivered the recipient or arrive in a spam folder. \r\nThe list of stop words of mail systems includes almost all words and phrases that encourage your potential customers to take active actions. \r\n \r\nApplication: \r\n \r\n1. Expanding the customer base. \r\n2. Quick notification of marketplaces about new business offers. \r\n3. Reaching out directors. \r\n4.demand analysis. \r\n5. Conducting tenders. \r\n6.Conducting marketing campaigns. \r\n7.Conducting surveys and studying public opinion. \r\n8. Searching for clients internationally. \r\n \r\nReasons for purchasing this service: \r\n \r\n1. one hundred percent delivery of your e-mails and cooperation offers to millions of companies all over the world. \r\nEvery internet resource sends a letter to itself so all filters of mail systems are bypassed. \r\n \r\n2.Mailing by contact forms is an great way in in terms of conducting different researches of marketing, surveys and studies of  social opinion on any kind oftype of activity and direction. \r\nWhen sending mailing by contact forms, you will be sure that your letter has been delivered to 100% of users of your service and product and if a product or service is \"badly promoted\", then the potential issue lies in in something else, for example in prices. \r\nAt the same time, within 1 week you will see real demand for your products and services, you will not have to spend funds on rent and other more expensive and time-consuming marketing events. \r\n \r\n3.Mailing by feedback forms is the most economical and quickest way to get your product or service to the international markets. \r\n \r\n4. Mailing by feedback forms is a great tool for conducting various tenders. \r\n \r\n5.Weekly update of the database, as more than 150,000 new Internet resources, are registered all over the world daily, and you, in turn, get new potential clients. \r\n \r\n6. Full geographical coverage for all countries of the world. \r\n \r\n7. We offer clients that you will not find through other advertisement. \r\nWhen sending mailing by contact forms, you will be able to get to that part of your potential customers, that are impossible to find automatically in another way. \r\nFor instance, you will be able to deliver a business offer to those potential customers that were earlier unavailable due to e-mail filters while sending bulk e-mails. \r\nNow, there is a very paradoxical situation: organisations in the directories are actually filled with spam with all sorts of offers while very little or no e-mails are sent to the rest. \r\n \r\n8. Unique technology of solving the CAPTCHA. \r\nThere are services for solving numeric and alphabetic code (captcha/CAPTCHA). It costs 1$ to solve 1000  CAPTCHAs. \r\nIt turns out that, processing 1 million Internet resources our robot decodes 1 million CAPTCHAs, which costs 1000 dollars only to unravel captcha/CAPTCHA, and with our service this is free for you! \r\n \r\n9. By ordering mailing by contact forms, you are promoting your service or product not to separate people, but to organisations, for instance domain .com, where more than one hundred and fifty million commercial  firms from all countries of the world are collected (we have samples of them from all international zones for every country). \r\n \r\n10. Mailing by contact forms also includes a subtype of SMS mailing \r\nE-mail address that is linked to the feedback form is the main email of companies through which applications and business offers are sent. This mail is also set up for cell phones as it is necessary to respond to the messages fast so as not to misplace the application or the relevance of the business offer. \r\n \r\n11. The database of countries also includes all joint businesses from all countries of the world closely related to or working with this country, for instance, diasporas and national communities. \r\nBAN, sanctions of search engines and mail systems? \r\nThese mailings are an alternative to sending e-newsletters, therefore search sanctions and \"Ban\" do not apply to them. \r\nMail delivers the data of e-mails to the inbox folder, as it passes through the \"warm communication channel\" from the new IP address of the website to the corporate email of the same website. \r\nIn other words, these mailings \"live in letters\" and e-mail filters do not respond to them, because mail systems have great trust in communication channels between internet resources and corporate emails. \r\n \r\nOUR DATABASES: \r\n \r\nYou can buy our databases separately from the mailing by sending us a request by feedback form. \r\n \r\nMORE THAN 2000 WHOIS DATABASES BY DOMAIN ZONES AND COUNTRIES OF THE WHOLE WORLD. \r\n \r\nCOLLECTIONS OF DATABASES BY THE MAIN CONTINENTS OF THE WORLD. \r\n \r\nCOLLECTIONS OF DATABASES BY THE MAIN WORLD LANGUAGES. \r\n \r\nSELECTIONS OF DATABASES BY THE MAIN CMS. \r\n \r\nSELECTIONS BY THE MAIN COUNTRIES. \r\n \r\nHOW TO MAKE AN PROMOTIONAL OFFER FOR MAILING BY FEEDBACK FORMS: \r\nThe simplest text + a few headings, the main goal is to interest the potential customer, and they will read the rest on your internet resource. \r\nMost likely, all ads on your subject are already on the Internet, enter the necessary requests into the search bar and choose the most interesting ones. \r\nThe headings are substituted by a carousel from text file. \r\nOnly text messages are sent, links are inserted without problems, they are all \"clickable\". If the future customer needs pictures or more detailed information, then you should forward the potential customer to visit your site. \r\n \r\nIn the letter: \r\nText without pictures, since pictures do not pass through the contact form. \r\nYour contact details: \r\nInternet resource address: \r\n \r\nFields to fill in: \r\nName: \r\nCountry: \r\nCity: \r\nWebsite: \r\nSeveral headings: \r\nMailbox for automatic responces: \r\n \r\nwebsite: https://xn----7sbb1bbndheurc1a.xn--p1ai/ \r\nPrice List: https://xn----7sbb1bbndheurc1a.xn--p1ai/en/price/',''),(6148,1,1239,'8','RichardWaink',''),(6149,1,1239,'9','RichardWainkQH',''),(6150,1,1239,'4','(871) 581-2486',''),(6151,1,1239,'3','fabian.lechler@web.de',''),(6152,1,1239,'6','According to Binance, this is the best trading robot in the world )#№* \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&65=58&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \r\nBecause he is able to make 200% profit every day **№^ \r\nFor example, you replenished your brokerage account with $ 500 (EUR, GBP, etc.) and he earned you from $ 1000 in net income within a day ;=*$ \r\nBinance recommends using this particular trading robot for automated trading (@;+ \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&16=24&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ',''),(6153,1,1240,'8','Brian',''),(6154,1,1240,'9','WRIGHT',''),(6155,1,1240,'4','(303) 800-6251',''),(6156,1,1240,'3','sales1@dittart.com',''),(6157,1,1240,'6','Dear Madam, Dear Sir Are you looking for splendid X-mas gifts for your loved ones and friends? In that case,  DittART Designer Necklaces could be your right choice. DittART designer necklaces are originals created by a famous jewelry designer. Every model is unique. They contain premium glass beads and gemstones, some of which are handmade. The beads are slip over on a nylon thread or a metal string. Every necklace is delivered with the designer’s certificate. Our necklaces own celebrities like country music stars, girlfriends of politicians, etc. In case of your interest in our designer necklaces, please check all models of these necklaces at our store https://dittart.com/4-all-models. We will be pleased to hear from you. Have a great day. Best regards Brian WRIGHT, Eng., DittART Designer Necklaces, Denver, CO, sales@dittart.com, https://dittart.com',''),(6158,1,1241,'8','Charity',''),(6159,1,1241,'9','Charity',''),(6160,1,1241,'4','(248) 218-4202',''),(6161,1,1241,'3','charity@thetravelchick.net',''),(6162,1,1241,'6','Hey \r\n\r\nDon\'t you hate carrying a big bulky backpack when you are only going out for the day? This high quality shoulder bag solves that problem. \r\nCarry enough without bogging yourself down! Perfect for that fishing trip or day hike!\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://fashionbag.sale\r\n\r\nBest regards, \r\n\r\nCharity',''),(6163,1,1242,'8','Leon Bonnet',''),(6164,1,1242,'9','Leon Bonnet',''),(6165,1,1242,'4','(242) 888-7173',''),(6166,1,1242,'3','tbformleads@gmail.com',''),(6167,1,1242,'6','Hello \r\n \r\nMy main objective here, is to help increase revenue for you by producing an animated video that will generate leads and sales for your business 24/7, for just $97. \r\n \r\nBut this offer is only good this week, so get your video before the deadline. \r\n \r\nWatch Our Video Now! ( https://bit.ly/Xpress97offer ) \r\n \r\nFor less than you spend on coffee each month you get an American Owned Video company that can write your script, create your story board, lay-in a good soundtrack and produce an awesome video that brings home the bacon. \r\n \r\nAgain, this $97 promotion is for this week only. Don’t miss out!!! \r\n \r\nWatch Our Video Now! ( https://bit.ly/Xpress97offer )',''),(6168,1,1243,'8','Michaelkak',''),(6169,1,1243,'9','MichaelkakPI',''),(6170,1,1243,'4','(206) 681-7328',''),(6171,1,1243,'3','wenk-kevin@t-online.de',''),(6172,1,1243,'6','Blockchain recommends to all people who are interested in additional permanent passive income of $ 5000 per day with a cryptocurrency trading robot. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&75=23&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \r\nA trading robot is capable of making from 750% to 15000% profit per day !#*^ \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&58=40&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \r\nThis success was achieved thanks to the advanced developments in the field of artificial intelligence ?#%_ \r\nTens of thousands of people around the world are already using this trading robot, so start you !%\"( \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&18=65&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \r\nTo start, you need to do just three things: \r\n1. Make a deposit to your brokerage account from $ 500 *^:- \r\n2. Launch the trading robot )-:# \r\n3. Receive passive income from $ 5000 per day :*№% \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&02=58&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ',''),(6173,1,1244,'8','Sarah',''),(6174,1,1244,'9','Phillips',''),(6175,1,1244,'4','(814) 726-1500',''),(6176,1,1244,'3','sphillips@urc.com',''),(6177,1,1244,'6','Good afternoon,\r\nI have reached out to your company numerous times requesting a W-9 and your Liability Insurance. We are unable to process Invoice number 112921 until we have this information. Please email or fax over this information at your earliest convenience. \r\nFax: 814-726-4708\r\nThank you.',''),(6178,1,1245,'8','Josephmap',''),(6179,1,1245,'9','JosephmapAO',''),(6180,1,1245,'4','(371) 857-3084',''),(6181,1,1245,'3','onkelflauschi@arcor.de',''),(6182,1,1245,'6','Blockchain recommends to all people who are interested in additional permanent passive income of $ 5000 per day with a cryptocurrency trading robot. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&17=11&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \r\nA trading robot is capable of making from 750% to 15000% profit per day ;*;) \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&94=18&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \r\nThis success was achieved thanks to the advanced developments in the field of artificial intelligence ?+\"* \r\nTens of thousands of people around the world are already using this trading robot, so start you *)%@ \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&48=69&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \r\nTo start, you need to do just three things: \r\n1. Make a deposit to your brokerage account from $ 500 (+(^ \r\n2. Launch the trading robot \"^)# \r\n3. Receive passive income from $ 5000 per day \"_%& \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&82=36&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ',''),(6183,1,1246,'8','Sophia',''),(6184,1,1246,'9','Scott',''),(6185,1,1246,'4','(904) 355-8989',''),(6186,1,1246,'3','tommy.bergman@hotmail.com',''),(6187,1,1246,'6','Sophia sent you 2 messages yesterday. She is online now.\r\nClick the link below to view the message and reply to her.\r\n\r\nhttps://sexlovers.club/chat/SophiaScott/',''),(6188,1,1247,'8','Jason',''),(6189,1,1247,'9','Adam',''),(6190,1,1247,'4','(202) 991-6766',''),(6191,1,1247,'3','jason@superbcapital.xyz',''),(6192,1,1247,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nI just have one quick question for you.\r\n\r\nWould you consider a Working Capital Loan for your Business if the price and terms were acceptable?\r\n\r\nIf so, we can provide you with a funding decision is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.superbcapital.xyz\r\n\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\nJason Adams\r\nSuperb Capital\r\nwww.superbcapital.xyz\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.superbcapital.xyz/unsubscribe \r\n\r\nor write to:\r\n\r\nSuperb Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(6193,1,1248,'8','Elizabethbef',''),(6194,1,1248,'9','DebbiebefXA',''),(6195,1,1248,'4','(704) 642-6017',''),(6196,1,1248,'3','jianghushuan2@gmail.com',''),(6197,1,1248,'6','Your fantasies come true:  https://2track.info/aSsQ',''),(6198,1,1249,'8','Anna',''),(6199,1,1249,'9','John',''),(6200,1,1249,'4','(315) 636-4446',''),(6201,1,1249,'3','annajohnuser@gmail.com',''),(6202,1,1249,'6','Hi,\r\n \r\nAre you constantly facing bid submission deadlines?  Are you concerned about the high cost of getting accurate estimates?  Do you often fail to bid because you lack the personnel to do the estimates or because you were hard-pressed for time? We can make your bidding process easier. We provide accurate material take-offs and cost estimates at a low cost and with a fast turnaround. Let us be your trusted partner. \r\n\r\nOur team of professionals has been providing these services to General Contractors, Subs (Framing, Painting, Flooring, Drywall, Carpentry, MEP, etc.), Developers, Home Builders, and individuals Home-Owners…and we are proud to say that our clients have been very satisfied with our service. We offer Residential and Commercial Estimates and we cover every trade that you wish to bid on, whether you work with CSI Divisions or your unique classification. We use the latest estimating software backed up by professionals with over a decade of experience. Our charges depend on the scope of work and working area, the exact cost percentage could be quoted from the plans/drawings. \r\n                                                                                                                                                                                 \r\nThe following are the main working divisions:\r\n\r\n•             Division 01 — General Requirement\r\n•             Division 02 — Site Construction\r\n•             Division 03 — Concrete\r\n•             Division 04 — Masonry\r\n•             Division 05 — Metals\r\n•             Division 06 — Wood and Plastics\r\n•             Division 07 — Thermal and Moisture Protection\r\n•             Division 08 — Doors and Windows\r\n•             Division 09 — Finishes\r\n•             Division 10 — Specialties\r\n•             Division 11 — Equipment\r\n•             Division 12 — Furnishings\r\n•             Division 13 — Special Construction\r\n•             Division 14 — Conveying Systems\r\n•             Division 15 — Mechanical/Plumbing\r\n•             Division 16 — Electrical\r\n\r\nPLEASE SEND US PLANS AND WE WOULD BE VERY GLAD TO PROVIDE YOU WITH THE PROPOSAL FOR FEE AND TURNAROUND. (PROPOSAL IS FREE)\r\n\r\n\r\nKind Regards,\r\n\r\nAnna John\r\nSales & Marketing Director\r\nAll-Pro Estimator Corp\r\nServing in all states of America, Canada, Australia, UK & New Zealand',''),(6203,1,1250,'8','Mike Martin',''),(6204,1,1250,'9','Mike Martin',''),(6205,1,1250,'4','(070) 468-1756',''),(6206,1,1250,'3','no-replyMynckell@gmail.com',''),(6207,1,1250,'6','Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nGet your mannplumbingandheating.com to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.strictlydigital.net/product/moz-da50-seo-plan/ \r\n \r\nOn SALE: \r\nhttps://www.strictlydigital.net/product/ahrefs-dr60/ \r\n \r\nThank you \r\nMike Martin',''),(6208,1,1251,'8','Sophia',''),(6209,1,1251,'9','Scott',''),(6210,1,1251,'4','(904) 355-8989',''),(6211,1,1251,'3','analisa.letters@gmail.com',''),(6212,1,1251,'6','Sophia sent you 2 messages yesterday. She is online now.\r\nClick the link below to view the message and reply to her.\r\n\r\nhttps://sexlovers.club/chat/SophiaScott/',''),(6213,1,1252,'8','Stevengor',''),(6214,1,1252,'9','StevengorUJ',''),(6215,1,1252,'4','(303) 344-3727',''),(6216,1,1252,'3','travelinpocket@gmail.com',''),(6217,1,1252,'6','Quit your job and get passive income more $ 9967 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&39=56&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<',''),(6218,1,1253,'8','Keeley',''),(6219,1,1253,'9','Bulcock',''),(6220,1,1253,'4','(860) 273-0469',''),(6221,1,1253,'3','jsassi1998r@tubidu.com',''),(6222,1,1253,'6','I was wondering if you\'re looking to get more sales? I can get people to your website who are specifically looking to buy your stuff. Go here www.generatemoresales.xyz',''),(6223,1,1254,'8','Matthewsow',''),(6224,1,1254,'9','MatthewsowJK',''),(6225,1,1254,'4','(825) 182-7833',''),(6226,1,1254,'3','rrubtsov7845@yandex.ru',''),(6227,1,1254,'6','Что бы воспользоваться скидками до 99%, вам всего лишь нужно показать QR код на кассе кассиру или на кассе самообслуживания и попросить списать баллы. \r\nЕй можно расплатиться до 99% суммы чека. \r\nПотратить баллы, можно: \r\n- Магнит (Продукты, Косметика и Аптека) \r\n- Пятерочка \r\n- Перекресток \r\n- Аптека \r\n- Яндекс баллы \r\n- Такси \r\nЭксклюзивные Купоны / Промокоды \r\nhttps://t.me/SevenSale_bot?start=r_2561371 \r\nУсловия оплаты (например, снижение при авансовом способе расчетов).',''),(6228,1,1255,'8','Lawrence',''),(6229,1,1255,'9','Amanda',''),(6230,1,1255,'4','(315) 636-4446',''),(6231,1,1255,'3','allproestimation01@gmail.com',''),(6232,1,1255,'6','Dear Clients,\r\n\r\nAre you concerned about the high cost of getting accurate estimates? So don\'t panic We are professional quantity surveyors with extensive experience in the field of construction estimation. With ample experience, We can help you out with any kind of Residential, or Auditorium Building Material Takeoff & Construction Cost Estimation. We have done 5000+ projects & We can assure you, you are just one click away from winning your bid.\r\n\r\nWe can provide cost estimation for all trades as per CSI Codes with 99% accuracy in a very short turnaround. \r\n\r\n01. General Contractor\r\n02. Commercial\r\n03. Residential\r\n04. Architect\r\n05. Home Builder\r\n06. Plumbing\r\n07. Electrical\r\n08. Concrete\r\n09. Drywall\r\n10. Kitchen\r\n11. Landscape\r\n12. Painting\r\n13. Masonry\r\n14. Remodeling\r\n15. Demolition and Whatever you like\r\n\r\nWe function on both kinds of projects (English and French).\r\n\r\nPlease forward us the design and We would be very glad to provide you with the proposal for fee and turnaround. (PROPOSAL IS FREE)\r\n\r\nGratitude You,\r\n\r\nLawrence Amanda.\r\nProject Estimator\r\nAll-Pro Estimation LLC\r\nServing in All States of UK, USA, Canada, New Zealand, and Australia.',''),(6233,1,1256,'8','Kane',''),(6234,1,1256,'9','Brent',''),(6235,1,1256,'4','(678) 941-0214',''),(6236,1,1256,'3','kanebrent.crosslandestimating@gmail.com',''),(6237,1,1256,'6','Hi,\r\n\r\nWe provide Costing/Takeoff and Architectural services.\r\n\r\nWe do estimates of all types of construction projects like commercial and residential.\r\n\r\nWe have expertise in all trades like Civil, Mechanical, Electrical, Plumbing, HVAC, and so on.\r\n\r\nSimply send me the plans for a quote if you have any job for us. You may ask for a Sample. Thanks',''),(6238,1,1257,'8','Kane',''),(6239,1,1257,'9','Brent',''),(6240,1,1257,'4','(678) 941-0214',''),(6241,1,1257,'3','kanebrent.crosslandestimating@gmail.com',''),(6242,1,1257,'6','Hi,\r\n\r\nWe provide Costing/Takeoff and Architectural services.\r\n\r\nWe do estimates of all types of construction projects like commercial and residential.\r\n\r\nWe have expertise in all trades like Civil, Mechanical, Electrical, Plumbing, HVAC, and so on.\r\n\r\nSimply send me the plans for a quote if you have any job for us. You may ask for a Sample. Thanks',''),(6243,1,1258,'8','Brian',''),(6244,1,1258,'9','WRIGHT',''),(6245,1,1258,'4','(303) 800-6251',''),(6246,1,1258,'3','sales1@dittart.com',''),(6247,1,1258,'6','Dear Madam, Dear Sir Are you looking for splendid X-mas gifts for your loved ones and friends? In that case,  DittART Designer Necklaces could be your right choice. DittART designer necklaces are originals created by a famous jewelry designer. Every model is unique. They contain premium glass beads and gemstones, some of which are handmade. The beads are slip over on a nylon thread or a metal string. Every necklace is delivered with the designer’s certificate. Our necklaces own celebrities like country music stars, girlfriends of politicians, etc. In case of your interest in our designer necklaces, please check all models of these necklaces at our store https://dittart.com/4-all-models. We will be pleased to hear from you. Have a great day. Best regards Brian WRIGHT, Eng., DittART Designer Necklaces, Denver, CO, sales@dittart.com, https://dittart.com',''),(6248,1,1259,'8','Stevengor',''),(6249,1,1259,'9','StevengorUJ',''),(6250,1,1259,'4','(415) 062-1253',''),(6251,1,1259,'3','Dfinalexits@gmail.com',''),(6252,1,1259,'6','A ready-made system for generating passive income from $ 8998 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&49=41&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<',''),(6253,1,1260,'8','Tony',''),(6254,1,1260,'9','Gee',''),(6255,1,1260,'4','(858) 412-0813',''),(6256,1,1260,'3','tonygee@strictlyplumbers.com',''),(6257,1,1260,'6','Tony GeeMy name is Tony Gee and I was a plumber for 15 years. The name of my company is called Strictly Plumbers and I specialize in generating plumbing jobs daily for plumbing business owners just like you.  I did some research on your plumbing company and I have a proven strategy that can get you more plumbing jobs, if you want this information for FREE call  (858) 412-0813  My company will be calling you soon to make sure you get this message and the strategy for free.  To learn more about Strictly Plumbers Marketing you can visit my website. https://www.strictlyplumbers.com/',''),(6258,1,1261,'8','Lawrence',''),(6259,1,1261,'9','Amanda',''),(6260,1,1261,'4','(315) 636-4446',''),(6261,1,1261,'3','allproestimation01@gmail.com',''),(6262,1,1261,'6','Dear Clients,\r\n\r\nAre you concerned about the high cost of getting accurate estimates? So don\'t panic We are professional quantity surveyors with extensive experience in the field of construction estimation. With ample experience, We can help you out with any kind of Residential, or Auditorium Building Material Takeoff & Construction Cost Estimation. We have done 5000+ projects & We can assure you, you are just one click away from winning your bid.\r\n\r\nWe can provide cost estimation for all trades as per CSI Codes with 99% accuracy in a very short turnaround. \r\n\r\n01. General Contractor\r\n02. Commercial\r\n03. Residential\r\n04. Architect\r\n05. Home Builder\r\n06. Plumbing\r\n07. Electrical\r\n08. Concrete\r\n09. Drywall\r\n10. Kitchen\r\n11. Landscape\r\n12. Painting\r\n13. Masonry\r\n14. Remodeling\r\n15. Demolition and Whatever you like\r\n\r\nWe function on both kinds of projects (English and French).\r\n\r\nPlease forward us the design and We would be very glad to provide you with the proposal for fee and turnaround. (PROPOSAL IS FREE)\r\n\r\nGratitude You,\r\n\r\nLawrence Amanda.\r\nProject Estimator\r\nAll-Pro Estimation LLC\r\nServing in All States of UK, USA, Canada, New Zealand, and Australia.',''),(6263,1,1262,'8','Eric',''),(6264,1,1262,'9','Contreras',''),(6265,1,1262,'4','(619) 824-1280',''),(6266,1,1262,'3','eric@fortecleaningsd.com',''),(6267,1,1262,'6','Hi! I\'m in your area and would be happy to visit your business and submit a bid for your recurring weekly (or more) janitorial and disinfection needs.\r\n\r\nWould you like to compare pricing on your office cleaning service?\r\n\r\nI\'d be happy to provide you with a no-obligation quote on your facilities cleaning.\r\n\r\nPlease simply respond and I will send next steps.\r\n\r\nEric Contreras\r\nRegional Director\r\nForte Commercial Cleaning of San Diego\r\n(619)824-1280\r\neric@fortecleaningsd.com\r\n\r\n4901 Morena Blvd, Suite 209B, San Diego, CA 92117\r\n\r\nRespond with stop to optout.',''),(6268,1,1263,'8','Brian',''),(6269,1,1263,'9','WRIGHT',''),(6270,1,1263,'4','(303) 800-6251',''),(6271,1,1263,'3','sales1@dittart.com',''),(6272,1,1263,'6','Dear Madam, Dear Sir Are you looking for splendid X-mas gifts for your loved ones and friends? In that case,  DittART Designer Necklaces could be your right choice. DittART designer necklaces are originals created by a famous jewelry designer. Every model is unique. They contain premium glass beads and gemstones, some of which are handmade. The beads are slip over on a nylon thread or a metal string. Every necklace is delivered with the designer’s certificate. Our necklaces own celebrities like country music stars, girlfriends of politicians, etc. In case of your interest in our designer necklaces, please check all models of these necklaces at our store https://dittart.com/4-all-models. We will be pleased to hear from you. Have a great day. Best regards Brian WRIGHT, Eng., DittART Designer Necklaces, Denver, CO, sales@dittart.com, https://dittart.com',''),(6273,1,1264,'8','Corey',''),(6274,1,1264,'9','Miley',''),(6275,1,1264,'4','(717) 530-5111',''),(6276,1,1264,'3','cmiley@rentppg.com',''),(6277,1,1264,'6','I am a property manager at Deerfield Commons apartments in Shippensburg. We are having low water pressure in one of our 4 story buildings that has been ongoing for a little over a month without resolution. I do believe that local construction projects may have something to do with this but our team is not educated enough to disassemble main water lines entering the building to remove debris and rebuild properly at this time. Is this something that your company is able to assist in?',''),(6278,1,1265,'8','Mark',''),(6279,1,1265,'9','Schaefer',''),(6280,1,1265,'4','(561) 544-0719',''),(6281,1,1265,'3','marks@nutricompany.com',''),(6282,1,1265,'6','Let me introduce you to Nutritional Products International, a global brand management company based in Boca Raton, FL, which helps domestic and international health and wellness companies launch products in the U.S.\r\n\r\nAs senior account executive for business development at NPI, I work with many health and wellness brands that are seeking to enter the U.S. market or expand their sales in America.\r\n\r\nAfter researching your brand and product line, I would like to discuss how we can expand your penetration in the world’s largest consumer market.\r\n\r\nAt NPI, we work hard to make product launches as easy and smooth as possible. We are a one-stop, turnkey approach.\r\n\r\nFor many brands, we become their U.S. headquarters because we offer all the services they need to sell products in America. NPI provides sales, logistics, regulatory compliance, and marketing expertise to our clients.\r\n\r\nWe import, distribute, and promote your products.\r\n\r\nNPI for more than a decade has helped large and small health and wellness brands bring their products to the U.S. NPI is your fast track to the retail market.\r\n\r\nFor more information, please reply to this email or contact me at MarkS@nutricompany.com.\r\n\r\nRespectfully,\r\n\r\nMark\r\n\r\nMark Schaeffer \r\nSenior Account Executive for Business Development\r\nNutritional Products International\r\n150 Palmetto Park Blvd., Suite 800\r\nBoca Raton, FL 33432\r\nOffice: 561-544-071\r\nMarkS@nutricompany.com',''),(6283,1,1266,'8','Mike Scott',''),(6284,1,1266,'9','Mike Scott',''),(6285,1,1266,'4','(668) 131-7716',''),(6286,1,1266,'3','no-replyMynckell@gmail.com',''),(6287,1,1266,'6','Good Day \r\n \r\nWe will increase your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our services below, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Scott\r\n \r\nSpeed SEO Digital Agency',''),(6288,1,1267,'8','LouisOrapy',''),(6289,1,1267,'9','LouisOrapySL',''),(6290,1,1267,'4','(231) 032-4215',''),(6291,1,1267,'3','henk.akkerman5@tele2.nl',''),(6292,1,1267,'6','NEW Music \r\n \r\nPsychedelic, Goa, Psy-Trance: https://scenepsychedelic.blogspot.com \r\nMusic songs Beatport DJ: https://tracks2020.blogspot.com \r\n0day Techno Music: https://techno-2019.blogspot.com \r\nRap Music Various Artists: https://rap-mix.blogspot.com \r\nScene Club Music: https://sceneclubs.blogspot.com \r\nReggae and Dance Hall FLAC: https://reggaedancehallska.blogspot.com \r\nTrance, House Live Sets Radio: https://liveclubradioset.blogspot.com \r\nFTP service is a community for DJ’s & fans that helps you gain full access to exclusive electronic music. Main target of our service is to show the world new upcoming talents as well as famous producers, populations of music culture, promotion of perspective projects. \r\n \r\nBest Regards, Louis',''),(6293,1,1268,'8','Jack',''),(6294,1,1268,'9','Johnson',''),(6295,1,1268,'4','(717) 377-2320',''),(6296,1,1268,'3','jjohnson2972@gmail.com',''),(6297,1,1268,'6','Have a HVAC/Oil Heat system. It freezes up every winter not sure make or how old it is bought house 3 years ago looking to replace.',''),(6298,1,1269,'8','Sophia',''),(6299,1,1269,'9','Scott',''),(6300,1,1269,'4','(904) 355-8989',''),(6301,1,1269,'3','philp.leif@outlook.com',''),(6302,1,1269,'6','Sophia sent you 2 messages yesterday. She is online now.\r\nClick the link below to view the message and reply to her.\r\n\r\nhttps://sexlovers.club/chat/SophiaScott/',''),(6303,1,1270,'8','Stevengor',''),(6304,1,1270,'9','StevengorUJ',''),(6305,1,1270,'4','(027) 158-6063',''),(6306,1,1270,'3','goovaerts24@zonnet.nl',''),(6307,1,1270,'6','Bitcoin Miiliarder told how he makes money more $ 8889 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&91=51&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<',''),(6308,1,1271,'8','RICHARD',''),(6309,1,1271,'9','GORKA',''),(6310,1,1271,'4','(443) 623-3132',''),(6311,1,1271,'3','shwtgorka@gmail.com',''),(6312,1,1271,'6','Requesting an estimate for the following work:  Lines run for hot/cold to basement bar sink and powder room. Cold line to toilet and ice maker on refrigerator.  Install faucets on bar sink & powder room sink.  Install toilet.  Provide & install grinder pump in basement.  Powder room sink and toilet drains and grinder pump well already roughed in.\r\n\r\nThank you!',''),(6313,1,1272,'8','Mike Shorter',''),(6314,1,1272,'9','Mike Shorter',''),(6315,1,1272,'4','(684) 851-6282',''),(6316,1,1272,'3','no-replyMynckell@gmail.com',''),(6317,1,1272,'6','Good Day \r\n \r\nI have just analyzed  mannplumbingandheating.com for  the current search visibility and saw that your website could use an upgrade. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Shorter\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(6318,1,1273,'8','JAMES COOK',''),(6319,1,1273,'9','JAMES COOK',''),(6320,1,1273,'4','(682) 157-8406',''),(6321,1,1273,'3','james_cook78@yahoo.com',''),(6322,1,1273,'6','Dear sir/ma \r\nWe are a finance and investment company offering loans at 3% interest rate. We will be happy to make a loan available to your organisation for your project. Our terms and conditions will apply. Our term sheet/loan agreement will be sent to you for review, when we hear from you. Please reply to this email ONLY cookj5939@gmail.com \r\n \r\nRegards. \r\nJames Cook \r\nChairman & CEO Euro Finance & Commercial Ltd',''),(6323,1,1274,'8','Kevin',''),(6324,1,1274,'9','Dori',''),(6325,1,1274,'4','(718) 492-1833',''),(6326,1,1274,'3','KevinDori@trello.com',''),(6327,1,1274,'6','Hello, \r\n\r\nYour website or a website that your organization hosts is infringing on a copyrighted images owned by our company (trello Inc.).\r\n\r\nCheck out this report with the hyperlinks to our images you utilized at www.mannplumbingandheating.com and our earlier publication to get the evidence of our copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/d03uhg49h1m5na.appspot.com/0/files/st/public/d/n/7bhh48fb38y1.html?f=124324178121283425  \r\n\r\nI do think you\'ve willfully violated our legal rights under 17 U.S.C. Section 101 et seq. and can be liable for statutory damages as high as $130,000 as set forth in Sec. 504 (c) (2) of the Digital millennium copyright act (DMCA) therein.\r\n\r\nThis message is official notification. I demand the elimination of the infringing materials described above. Please take note as a company, the Dmca demands you to remove or/and terminate access to the infringing content upon receipt of this notice. If you don\'t cease the use of the previously mentioned copyrighted materials a lawsuit can be started against you.\r\n\r\nI have a strong faith belief that utilization of the copyrighted materials described above as presumably violating is not approved by the legal copyright proprietor, its legal agent, as well as legislation.\r\n\r\nI swear, under consequence of perjury, that the information in this message is correct and hereby affirm that I am authorized to act on behalf of the proprietor of an exclusive right that is allegedly infringed.\r\n\r\n\r\nSincerely yours,\r\nKevin Dori\r\nLegal Officer\r\ntrello, Inc.\r\n\r\ntrello.com\r\n\r\n\r\n12/15/2021',''),(6328,1,1275,'8','Jason',''),(6329,1,1275,'9','Adam',''),(6330,1,1275,'4','(202) 991-6766',''),(6331,1,1275,'3','jason@superbcapital.xyz',''),(6332,1,1275,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nI just have one quick question for you.\r\n\r\nWould you consider a Working Capital Loan for your Business if the price and terms were acceptable?\r\n\r\nIf so, we can provide you with a funding decision is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.superbcapital.xyz\r\n\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\nJason Adams\r\nSuperb Capital\r\nwww.superbcapital.xyz\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.superbcapital.xyz/unsubscribe \r\n\r\nor write to:\r\n\r\nSuperb Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(6333,1,1276,'8','Kerianne',''),(6334,1,1276,'9','Baker',''),(6335,1,1276,'4','(717) 349-0010',''),(6336,1,1276,'3','Keriannelynnb@outlook.com',''),(6337,1,1276,'6','I had an appointment scheduled for tomorrow at 21725 Amberson Road, Amberson Pa 17210. I was able to get someone in on Monday, so I no longer need your services. Can you please cancel my appointment? Thank you. I will call again in the morning if I do not hear from you.',''),(6338,1,1277,'8','Kirillwzq',''),(6339,1,1277,'9','KirilltbaEW',''),(6340,1,1277,'4','(418) 288-2576',''),(6341,1,1277,'3','r.o.b.e.rtsto.l.te.nb.e.r.gbig@gmail.com',''),(6342,1,1277,'6','Как вы прогнозируете погоду? \r\nЛИчно я смотрю вечером на закат, но если ничего не вижу, тогда иду на сайт https://www.gismeteo.ua/ и там получаю весь прогнозируете. И было несколько раз когда сайт был не прав. \r\nТак что доверй, но проверяй.',''),(6343,1,1278,'8','Danabef',''),(6344,1,1278,'9','HelenbefXA',''),(6345,1,1278,'4','(480) 230-8863',''),(6346,1,1278,'3','nicoletta1s@gmail.com',''),(6347,1,1278,'6','Free sex game:  https://2track.info/mjmp',''),(6348,1,1279,'8','German',''),(6349,1,1279,'9','Ornelas',''),(6350,1,1279,'4','(636) 695-3951',''),(6351,1,1279,'3','ornelas.german84@gmail.com',''),(6352,1,1279,'6','Hi there,\r\n\r\nTurnkey Chat system & Trained Live Chat Agents 24/7 for Your Industry. Request a Demo! Boost Your Leads, Engage Your Prospects & Take Your Customer Service to a New Level. Easy Setup. App for iOs & Android. \r\n\r\nClick here: https://www.seo-treff.de/product/live-chat-service/\r\n\r\nKind Regards,\r\nSam Miller\r\nsupport@seo-treff.de',''),(6353,1,1280,'8','plera',''),(6354,1,1280,'9','pleraGZ',''),(6355,1,1280,'4','(873) 534-4237',''),(6356,1,1280,'3','yaqhbvvo@hotmail.com',''),(6357,1,1280,'6','Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/yxbkp9g9',''),(6358,1,1281,'8','Stevengor',''),(6359,1,1281,'9','StevengorUJ',''),(6360,1,1281,'4','(272) 516-6543',''),(6361,1,1281,'3','ginorapi123@libero.it',''),(6362,1,1281,'6','Income from one investment more $ 9866 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&46=15&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<',''),(6363,1,1282,'8','Craig',''),(6364,1,1282,'9','WILSON',''),(6365,1,1282,'4','(303) 800-6251',''),(6366,1,1282,'3','sales1@wexxastrologicalstudio.com',''),(6367,1,1282,'6','Dear Madam, Dear Sir Are you looking for a new mate? Do you have several potential candidates for your new mate, but do you need to decide who will be the best of them? We can help you to make this vital decision. We will prepare a highly accurate and detailed Romantic Compatibility report for you and your potential mate(s), where you will get a lot of precise and highly detailed information about a possible relationship with your new mate. This analysis will help you to establish an excellent and a long-lasting relationship with your new partner. Please check more details at https://wexxastrologicalstudio.com. We will be pleased to hear from you. Have a great day. Best regards Craig WILSON, WEXX ASTROLOGICAL STUDIO, Denver, CO, sales@wexxastrologicalstudio.com, https://wexxastrologicalstudio.com',''),(6368,1,1283,'8','AnnaCib',''),(6369,1,1283,'9','AnnaCib',''),(6370,1,1283,'4','(564) 256-6477',''),(6371,1,1283,'3','mariaCib@mail.com',''),(6372,1,1283,'6','Hello all, guys! I know, my message may be too specific,\r\nBut my sister found nice man here and they married, so how about me?! :)\r\nI am 24 years old, Elena, from Romania, know English and Russian languages also\r\nAnd... I have specific disease, named nymphomania. Who know what is this, can understand me (better to say it immediately)\r\nAh yes, I cook very tasty! and I love not only cook ;))\r\nIm real girl, not prostitute, and looking for serious and hot relationship...\r\nAnyway, you can find my profile here: http://tiobimentipaver.cf/chk/1',''),(6373,1,1284,'8','Sommer',''),(6374,1,1284,'9','Jaques',''),(6375,1,1284,'4','(501) 932-9888',''),(6376,1,1284,'3','jaques.sommer@gmail.com',''),(6377,1,1284,'6','Hi , \r\n\r\nI don’t need to tell you how important it is to optimize every step in your SEO pipeline. \r\n\r\nBut unfortunately, it’s nearly impossible to cut out time or money when it comes to getting good content.\r\n\r\nAt least that’s what I thought until I came across Article Forge...\r\n\r\nBuilt by a team of AI researchers from MIT, Carnegie Mellon, Harvard, Article Forge is an artificial intelligence (AI) powered content writer that uses deep learning models to write entire articles about any topic in less than 60 seconds.\r\n\r\nTheir team trained AI models on millions of articles to teach Article Forge how to draw connections between topics so that each article it writes is relevant, interesting and useful.\r\n\r\nAll their hard work means you just enter a few keywords and Article Forge will write a complete article from scratch making sure every thought flows naturally into the next, resulting in readable, high quality, and unique content.\r\n\r\nPut simply, this is a secret weapon for anyone who needs content.\r\n\r\nI get how impossible that sounds so you need to see how Article Forge writes a complete article in less than 60 seconds! =>> https://myarticleforge.blogspot.com/\r\n\r\nI had to share this with you because I know this will be a game changer for your business.\r\n\r\nIf you’re writing your own content, Article Forge can take a long and difficult process and turn it into a single button click. \r\n\r\nIf you’re buying content, Article Forge’s flat fee, unlimited articles, and 60 second turnaround will be cheaper and faster than any other content provider. \r\n\r\nEither way, Article Forge will help you take your content creation process to the next level.\r\n\r\nMore importantly, Article Forge offers a free 5-day trial so you can see for yourself how this technology will revolutionize your content pipeline for your niche and your use case. \r\n\r\nSo what are you waiting for? Click here to get your 5-day Free Trial and start generating unlimited unique content =>> https://myarticleforge.blogspot.com/\r\n\r\nAnd make sure to thank me later when this tool has changed the way you create content :)\r\n\r\nBrahma.',''),(6378,1,1285,'8','Sophia',''),(6379,1,1285,'9','Scott',''),(6380,1,1285,'4','(904) 355-8989',''),(6381,1,1285,'3','hsu.coral@hotmail.com',''),(6382,1,1285,'6','Sophia sent you 2 messages yesterday. She is online now.\r\nClick the link below to view the message and reply to her.\r\n\r\nhttps://sexlovers.club/chat/SophiaScott/',''),(6383,1,1286,'8','plera',''),(6384,1,1286,'9','pleraGZ',''),(6385,1,1286,'4','(733) 870-5285',''),(6386,1,1286,'3','gydjfvcu@hotmail.com',''),(6387,1,1286,'6','Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/y3cdhdjd',''),(6388,1,1287,'8','Chrissy',''),(6389,1,1287,'9','Allan',''),(6390,1,1287,'4','(805) 372-3366',''),(6391,1,1287,'3','chrissy@youralexadirectory.link',''),(6392,1,1287,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://voiceregbiz1.xyz/mroe-cusotmers/?=mannplumbingandheating.com\r\n\r\n\r\nChrissy\r\nVoice Activation Follow-up Specialist\r\nYour Alexa Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://voiceregbiz1.xyz/unsubscribe.php/?site=mannplumbingandheating.com',''),(6393,1,1288,'8','Mike Waller',''),(6394,1,1288,'9','Mike Waller',''),(6395,1,1288,'4','(616) 283-1715',''),(6396,1,1288,'3','no-replyMynckell@gmail.com',''),(6397,1,1288,'6','Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Waller\r\n \r\nsupport@digital-x-press.com',''),(6398,1,1289,'8','Ian',''),(6399,1,1289,'9','Larry',''),(6400,1,1289,'4','(732) 301-6449',''),(6401,1,1289,'3','ianlarry55@gmail.com',''),(6402,1,1289,'6','Good day Customer Service\r\n\r\nMy name is Mr Ian Larry with the Ian Constructions and I am interested in some Gas Furnace and so kindly send me an email back to confirm if you carry them so I can send over the needed sizes for pricing to proceed with the order by email\r\n\r\nBest Regards\r\nMr Ian Larry\r\nIan Constructions\r\nianlarry55@gmail.com',''),(6403,1,1290,'8','Connieshope',''),(6404,1,1290,'9','EllashopeMT',''),(6405,1,1290,'4','(612) 775-8811',''),(6406,1,1290,'3','r.bahramiw2@gmail.com',''),(6407,1,1290,'6','I\'m waiting for you now   https://2track.info/oyEq',''),(6408,1,1291,'8','Jamiemum',''),(6409,1,1291,'9','BrendamumMT',''),(6410,1,1291,'4','(378) 205-2751',''),(6411,1,1291,'3','koenigs1@gmail.com',''),(6412,1,1291,'6','11-11 - https://bit.ly/30hUx0w',''),(6413,1,1292,'8','Rogeliochect',''),(6414,1,1292,'9','RogeliochectSE',''),(6415,1,1292,'4','(754) 212-2545',''),(6416,1,1292,'3','simon170558@hotmail.co.uk',''),(6417,1,1292,'6','Hallo. \r\nWenn Sie sich fur diese Art von Verdienst interessieren, dann sollten Sie wissen, dass hier einmalig Investitionen von 500 EUR erforderlich sind (((& \r\nDaruber hinaus erhalten Sie ab 1500 EUR pro Woche ?+;) \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&04=48&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nDie Essenz des Verdienens besteht darin, Einnahmen aus dem Handel mit Kryptowahrungen in einem automatischen Modus zu erzielen. Selbst wenn alle Markte zusammenbrechen, erhalten Sie Ihr Geld garantiert ab 1500 EUR pro Woche. \r\nNehmen Sie Ihren Platz an der Sonne ein und melden Sie sich an !*;* \r\nBegrenztes Angebot №=%+ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&19=66&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<',''),(6418,1,1293,'8','Zalphpaisk',''),(6419,1,1293,'9','ZalphpaiskFJ',''),(6420,1,1293,'4','(673) 000-0578',''),(6421,1,1293,'3','pataka@viawithoutdct.com',''),(6422,1,1293,'6','produjo buy stromectol online uk\r\n katz stromectol for fungus\r\n <a href=\"http://ivermectin-12mg.net/#\">ivermectin 12 mg over the counter\r\n</a> - info: stromectol\r\n [url=http://ivermectin-12mg.net/#]ivermectin 3mg tablets price\r\n[/url] serenadancin ivermectin mange',''),(6423,1,1294,'8','Okeygorandom https://www.google.com/',''),(6424,1,1294,'9','Okeygorandom https://www.google.com/',''),(6425,1,1294,'4','(037) 436-2572',''),(6426,1,1294,'3','seregainbox113@mail.ru',''),(6427,1,1295,'8','Joseph',''),(6428,1,1295,'9','Lapp',''),(6429,1,1295,'4','(717) 561-1404',''),(6430,1,1295,'3','jlapp@servprohhl.com',''),(6431,1,1295,'6','We have payment ready for invoice # 113503.  We will need a W9 and a COI before issuing. \r\nInformation can be sent to jlapp@servprohhl.com.\r\nThank you,\r\nJoe Lapp',''),(6432,1,1296,'8','CASEZER',''),(6433,1,1296,'9','STORE',''),(6434,1,1296,'4','(214) 516-4832',''),(6435,1,1296,'3','casezerstore@gmail.com',''),(6436,1,1296,'6','Buy quality phone and tablet cases at: https://casezer.com/\r\n\r\nUse coupon code TENOFF at checkout to save 10 percent.',''),(6437,1,1297,'8','Mike Hoggarth',''),(6438,1,1297,'9','Mike Hoggarth',''),(6439,1,1297,'4','(617) 140-1325',''),(6440,1,1297,'3','no-replyMynckell@gmail.com',''),(6441,1,1297,'6','Good Day \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nApply this -35% code ( MEGAPROMOTER ) while getting your mannplumbingandheating.com to have a DA above 60 points in Moz with us today and reap the benefits of such a great feat at an affordable rate. \r\n \r\n \r\n \r\nSee our offers here: \r\nhttps://www.strictlydigital.net/product/moz-da50-seo-plan/ \r\nhttps://www.strictlydigital.net/product/moz-da60-seo-plan/ \r\n \r\nNEW: ahrefs DR70 is now possible: \r\nhttps://www.strictlydigital.net/product/ahrefs-seo-plan/ \r\n \r\n \r\nThank you \r\nMike Hoggarth\r\n \r\nmike@strictlydigital.net',''),(6442,1,1298,'8','Monica',''),(6443,1,1298,'9','Penny',''),(6444,1,1298,'4','(717) 372-3802',''),(6445,1,1298,'3','monpen11@gmail.com',''),(6446,1,1298,'6','We have a Sani-Flo system on our basement toilet and it’s leaking… my husband was cleaning the sink and the system stopped flushing  and started making a humming noise. He unplugged it. It is leaking clear water from the lid. It started about 2 hours ago and water is still leaking. We just had the basement renovated so our consensus of a flood is of heat concern. Can we please  get someone out first thing in the morning ???\r\nThank you very much\r\nMonica Penny\r\n1651 Peachtree Lane \r\nChambersburg Pa\r\n717-372-3802',''),(6447,1,1299,'8','plera',''),(6448,1,1299,'9','pleraGZ',''),(6449,1,1299,'4','(154) 526-3433',''),(6450,1,1299,'3','8ljyniw9@yahoo.com',''),(6451,1,1299,'6','Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/yy69lw7e',''),(6452,1,1300,'8','Richard',''),(6453,1,1300,'9','Branson',''),(6454,1,1300,'4','(816) 336-1394',''),(6455,1,1300,'3','rich@universalestimatellc.com',''),(6456,1,1300,'6','Hi,\r\n\r\nWe are an estimation firm who creates materials quantities, takeoffs and budget cost estimates for construction projects.\r\n\r\nWe need a complete construction set of drawings with specifications for preparing takeoffs and estimates.\r\n\r\nJust send over the set of drawings so we can give you a quote on your projects. Thanks.\r\n\r\nRichard Branson',''),(6457,1,1301,'8','Monique',''),(6458,1,1301,'9','Daplyn',''),(6459,1,1301,'4','(856) 735-6338',''),(6460,1,1301,'3','pmtaking@163.com',''),(6461,1,1301,'6','Hi  mannplumbingandheating.com\r\n\r\nWe\'re Freight Forwarder/NVOCC Company located in Shenzhen,China. We cover EXW/FOB shipping from China  to USA,Canada,Europe,Oceania,Latin America,East Asia..\r\n\r\nOur services:\r\n- Ocean freight transport for FCL, LCL;\r\n- Air freight Services,\r\n- FBA Amazon Shipping,\r\n- Warehouse consolidation, Customs Clearance & Declaration\r\n- Insurance, Cargo Inspection, Door to Door, etc.\r\n\r\nThe sea freight from China to the LA,USA  USD9500-10500/40HQ\r\nThe sea freight from China to Australia:USD5000-7000/40HQ\r\nThe sea freight from China to Europe:USD10500-12000/40HQ\r\n\r\nWorld so please send me your requests and I will do my best and quote as much as I can. Just simply check any rates with us.\r\n\r\nThanks&Best Regards,\r\n\r\nKroes     \r\npmtaking@163.com\r\n\r\n-------------------------------------------\r\nmannplumbingandheating.com\r\nhttps://www.mannplumbingandheating.com/contact-us/\r\nContact | Chambersburg, PA | Mann Plumbing & Heating, LLC.',''),(6462,1,1302,'8','Qi',''),(6463,1,1302,'9','Li',''),(6464,1,1302,'4','(292) 869-1122',''),(6465,1,1302,'3','ryan.nelson@thetradecouncil.org',''),(6466,1,1302,'6','The ITC\'s Global Business Confidence Survey is now available. \r\n\r\nThis survey includes views of 7050 Top CEO\'s from 818 industries across 50 countries.\r\n\r\nGet a free copy here: https://bit.ly/3eHWOpL\r\n\r\nThis survey provides a view on the global economic outlook for the coming 12 months.\r\n\r\nP.S. If you\'re not yet involved in a local ITC chapter, we encourage you to join and meet other C-level executives locally, nationally and from across the globe. Membership is still discounted for only $10 per year (use code ITC10 at checkout).',''),(6467,1,1303,'8','Forbes',''),(6468,1,1303,'9','Blog',''),(6469,1,1303,'4','(904) 355-8989',''),(6470,1,1303,'3','lott.keri@yahoo.com',''),(6471,1,1303,'6','Christmas special prizes from Forbes.\r\n\r\nHurry up\r\n\r\nhttps://offers.forbes.blog/offers',''),(6472,1,1304,'8','Lucas Persson',''),(6473,1,1304,'9','Lucas Persson',''),(6474,1,1304,'4','(041) 083-1074',''),(6475,1,1304,'3','linkedbusiness65@gmail.com',''),(6476,1,1304,'6','We are glad to introduce you to LinkusBiz LLC. Our services support and grow Businesses. We\'re the  Business Lead Generation Company. Across continents, we link Interest that makes Businesses go Borderless, Pandemic free and  always active. \r\n \r\nWe merge Corporate  leads for Business Partnerships and Trade development. Increase your Business revenue and contacts in 2022 through our network. \r\n \r\nLet\'s onboard your Business into a Global network by signing up for any of our services at http://www.linkusbiz.com/ Follow us on Instagram @linkusbiz \r\n \r\nThe Network Team, \r\nLinkusbiz LLC.',''),(6477,1,1305,'8','Bridgette',''),(6478,1,1305,'9','Ashworth',''),(6479,1,1305,'4','(443) 697-8993',''),(6480,1,1305,'3','ninal1978@yahoo.com',''),(6481,1,1305,'6','Would you be interested in a cracked version of the CBT Mass Email Sender Software. I can do it for $250 instead of $500 (see official site: https://cbtmassemailsender.com)\r\n\r\nThanks',''),(6482,1,1306,'8','Vincent',''),(6483,1,1306,'9','Perez',''),(6484,1,1306,'4','(292) 869-1122',''),(6485,1,1306,'3','vincenteperezeez@gmail.com',''),(6486,1,1306,'6','The International Trade Council is looking for volunteer speakers for our 2022 webinar series. \r\n\r\nThese conferences are regular online (virtual) events and combine keynote presentations, panel discussions and business advisory sessions. \r\n\r\nSpeakers be able to work 1:1 with groups of c-suite executives in virtual rooms to network, answer questions and provide live mentoring.\r\n\r\nWhy Get Involved as a Speaker?\r\nBe acknowledged as a thought-leader\r\nDiscover business opportunities\r\nMeet potential clients\r\nAct as a mentor and help other business owners\r\nHear about new and innovative business models\r\nGrow your business sector\r\nFoster productive competition (while heading off some of the risks competitors pose)\r\nLearn from (and network with) other successful entrepreneurs\r\nStrengthen your presence and increase brand visibility\r\n\r\nTopics should be educational *NOT SALES PITCHES* and focus on bringing learning to our audience of international executives.\r\n\r\nAPPLY HERE:\r\nhttps://tradecouncil.org/speaker-application/',''),(6487,1,1307,'8','Chrissy',''),(6488,1,1307,'9','Allan',''),(6489,1,1307,'4','(805) 372-3366',''),(6490,1,1307,'3','chrissy@youralexadirectory.link',''),(6491,1,1307,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://voiceregbiz1.xyz/mroe-cusotmers/?=mannplumbingandheating.com\r\n\r\n\r\nChrissy\r\nVoice Activation Follow-up Specialist\r\nYour Alexa Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://voiceregbiz1.xyz/unsubscribe.php/?site=mannplumbingandheating.com',''),(6492,1,1308,'8','plera',''),(6493,1,1308,'9','pleraGZ',''),(6494,1,1308,'4','(550) 062-5762',''),(6495,1,1308,'3','xtt0ojh6@hotmail.com',''),(6496,1,1308,'6','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/yyb32yqq',''),(6497,1,1309,'8','Mark',''),(6498,1,1309,'9','Schaefer',''),(6499,1,1309,'4','(561) 544-0719',''),(6500,1,1309,'3','marks@nutricompany.com',''),(6501,1,1309,'6','Let me introduce you to Nutritional Products International, a global brand management company based in Boca Raton, FL, which helps domestic and international health and wellness companies launch products in the U.S.\r\n\r\nAs senior account executive for business development at NPI, I work with many health and wellness brands that are seeking to enter the U.S. market or expand their sales in America.\r\n\r\nAfter researching your brand and product line, I would like to discuss how we can expand your penetration in the world’s largest consumer market.\r\n\r\nAt NPI, we work hard to make product launches as easy and smooth as possible. We are a one-stop, turnkey approach.\r\n\r\nFor many brands, we become their U.S. headquarters because we offer all the services they need to sell products in America. NPI provides sales, logistics, regulatory compliance, and marketing expertise to our clients.\r\n\r\nWe import, distribute, and promote your products.\r\n\r\nNPI for more than a decade has helped large and small health and wellness brands bring their products to the U.S. NPI is your fast track to the retail market.\r\n\r\nFor more information, please reply to this email or contact me at MarkS@nutricompany.com.\r\n\r\nRespectfully,\r\n\r\nMark\r\n\r\nMark Schaeffer \r\nSenior Account Executive for Business Development\r\nNutritional Products International\r\n150 Palmetto Park Blvd., Suite 800\r\nBoca Raton, FL 33432\r\nOffice: 561-544-071\r\nMarkS@nutricompany.com',''),(6502,1,1310,'8','Candicebef',''),(6503,1,1310,'9','AndreabefXA',''),(6504,1,1310,'4','(545) 762-5361',''),(6505,1,1310,'3','natka1s@gmail.com',''),(6506,1,1310,'6','Free sex game:  https://2track.info/aSsQ',''),(6507,1,1311,'8','Michelle',''),(6508,1,1311,'9','Lee',''),(6509,1,1311,'4','(908) 246-9379',''),(6510,1,1311,'3','mishmosh@gmail.com',''),(6511,1,1311,'6','Hello, I am looking to install a tankless hot water heater at a cabin in Fayetteville (in Michaux State Forest near route 30). The current boiler (runs on fuel oil) is broken. Does your company install tankless heaters and are you able to provide an estimate or ballpark pricing for this?\r\n\r\n\r\nThank you,\r\nMichelle',''),(6512,1,1312,'8','Mike Donovan',''),(6513,1,1312,'9','Mike Donovan',''),(6514,1,1312,'4','(000) 265-8621',''),(6515,1,1312,'3','no-replyMynckell@gmail.com',''),(6516,1,1312,'6','Greetings \r\n \r\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our plans here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Donovan\r\n \r\nSpeed SEO Digital Agency',''),(6517,1,1313,'8','Ashok',''),(6518,1,1313,'9','Gupta',''),(6519,1,1313,'4','(415) 854-1495',''),(6520,1,1313,'3','outsourcezeweb@gmail.com',''),(6521,1,1313,'6','Hi there, \r\n\r\nThis is Ashok from ZM Services(50+ Team size) from India.\r\n\r\nI would appreciate it if you can forward our email to the right person. I Apologize for approaching you this way to see if you want to outsource below mentioned organizational tasks at USD15/hr.\r\n\r\n1. Admin/Follow Your Process/Virtual Assistance: \r\n                Admin/Back-End/Personal tasks/Web Research\r\n                Virtual Assistance\r\n                Transcriptions\r\n                Train us on your Process for task completion\r\n                Physical to Digital Document Conversion\r\n                Monotonous Data Entry Or Copy/Pasting\r\n                Find Clients Mobile No./Email Id. \r\n                Manage Databases and Data Scraping\r\n                Website/CRM Data Entry and Content upload. \r\n                Create invoices and Fund/Bill Transfer\r\n\r\n2. Content Writing:\r\n                Website/Items/Services Content\r\n                Blogs/Article/SEO related Content\r\n\r\n3. E-Commerce:\r\n                Amazon/Ebay/Etsy Items Upload(Any Website) \r\n                Items Description Content Writing\r\n                Items Classification/De-Duplication/SKU\r\n                Catalog Image Editing/Updation\r\n                Items/Keyword Research\r\n                Item Processing\r\n                Competitors Tracking\r\n\r\n4. Bookkeeping: \r\n                QuickBooks/Any other software. \r\n                AP/AR and Reconciliation\r\n                Balance Sheet\r\n\r\nDo you have any requirements currently?\r\n\r\nWHAT IS OUR PROCESS?\r\n\r\n1  We work in USA Timezone\r\n2. We sign NDA before start of project discussion\r\n3. We will assign dedicated project manager that will have 4 major roles to play mentioned below:    \r\n     Understand your requirements\r\n     Assign team member according to requirements\r\n     Review task done by team\r\n     Collect Feedback from you.\r\n\r\nRegards\r\nAshok\r\noutsourcezeweb@gmail.com\r\n+1 415 429 6711',''),(6522,1,1314,'8','Jen',''),(6523,1,1314,'9','Hayes',''),(6524,1,1314,'4','(000) 000-0000',''),(6525,1,1314,'3','jenh6291@gmail.com',''),(6526,1,1314,'6','Hi,\r\n\r\nI thought you may be interested in our social media services.\r\n\r\nDid you know that a 10k follower count on Instagram isn’t just an awareness metric. \r\nThe milestone comes with an immediate, tangible benefit. \r\n\r\nOnce you have 10k followers, Instagram will make it easier for you to get people to\r\nyour website via Stories with the swipe up to link feature.\r\n\r\nSwipe up is the only way to get a direct link from your Instagram to your other web properties.\r\nAnd, it’s available in STORIES, if you have 10k followers. \r\n\r\nThe swipeable link in stories lets you send people to your blog, your ecommerce page, or your email signup list, \r\nwithout requiring the visitor to click to your bio first. \r\nThe feature alone is a game changer.\r\n\r\n“Before that, Instagram rarely showed up as a traffic source for my shop or blog. \r\nSince that feature was added, I’m able to get more traffic to my websites directly from IG.”\r\n\r\nTo see all packages visit us at https://social-media-blast.com\r\n\r\nWe look forward to seeing you on our site.\r\n\r\n\r\nRegards,\r\nJen H.\r\nSMB',''),(6527,1,1315,'8','Hal',''),(6528,1,1315,'9','Hal',''),(6529,1,1315,'4','(734) 336-9870',''),(6530,1,1315,'3','bednall.hal@googlemail.com',''),(6531,1,1315,'6','50% OFF + FREE SHIPPING!\r\n\r\nIntroducing the Most Comfortable Headphones in the World! Seemlessly listen to your favorite music.\r\n\r\nShop Here: iheadphone.online\r\n\r\nBest Wishes, \r\n \r\nHal',''),(6532,1,1316,'8','Horny',''),(6533,1,1316,'9','Shriya',''),(6534,1,1316,'4','(904) 355-8989',''),(6535,1,1316,'3','janina.bothwell@gmail.com',''),(6536,1,1316,'6','Horny Shriya sent you 2 messages yesterday. She is online now.\r\nClick the link below to view the message and reply to her.\r\n\r\nhttps://sexlovers.club/chat/HornyShriya/',''),(6537,1,1317,'8','plera',''),(6538,1,1317,'9','pleraGZ',''),(6539,1,1317,'4','(008) 046-3576',''),(6540,1,1317,'3','9wnbpk2h@yahoo.com',''),(6541,1,1317,'6','Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/yyewlmqz',''),(6542,1,1318,'8','Filip Dupont',''),(6543,1,1318,'9','Filip Dupont',''),(6544,1,1318,'4','(645) 085-1380',''),(6545,1,1318,'3','reports@phtutorials.com',''),(6546,1,1318,'6','Hi, \r\n \r\nOne of the less known websites where you can find not only a lot of Photography and Photoshop tutorials, but also many other related complete courses, at a fraction of their regular price, is phtutorials.com \r\nWhy am I writing to you about this? Because a friend of mine built this website and I really think you should check it out if you are interested in Photography, Videography, Photoshop and other lessons. \r\nSo go and check https://phtutorials.com \r\nYou will thank me later.',''),(6547,1,1319,'8','Elizabeth',''),(6548,1,1319,'9','Cooper',''),(6549,1,1319,'4','(570) 238-8705',''),(6550,1,1319,'3','lizzieann2631@gmail.com',''),(6551,1,1319,'6','I am writing to you to request that someone could come to our home to service our HVAC system. We moved into our home in June of 2020, and the system seems to be getting louder and louder when it turns on. Nothing seems to be broken as of yet, but would just like to be pre-emptive about it. \r\n\r\nThank you for your time, Elizabeth Cooper',''),(6552,1,1320,'8','plera',''),(6553,1,1320,'9','pleraGZ',''),(6554,1,1320,'4','(400) 424-1763',''),(6555,1,1320,'3','hin18h5c@yahoo.com',''),(6556,1,1320,'6','Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/y3vc24lt',''),(6557,1,1321,'8','Frankpoivy',''),(6558,1,1321,'9','FrankpoivyDS',''),(6559,1,1321,'4','(744) 664-2673',''),(6560,1,1321,'3','bkingss@rambler.ru',''),(6561,1,1321,'6','очень интересно но чичего не понятно \r\n_________________ \r\nПавшинская жайылмасында?ы букмекерлік ке?се - [URL=http://kz.bkinfo-329.site]Конрад онлайн-казинолы?[/URL] - хоккейден шы?ару?а айыпп?л уа?ытына ставкаларлар',''),(6562,1,1322,'8','Dede',''),(6563,1,1322,'9','Cooper',''),(6564,1,1322,'4','(000) 000-0000',''),(6565,1,1322,'3','socialmwdmaster3@gmail.com',''),(6566,1,1322,'6','Hello,\r\n\r\nDo you want to get more social media followers with less work?\r\n\r\nhttps://imarena.site/social-graphics\r\n\r\nDiscover how to create stunning images for your social media marketing needs.\r\n\r\nClick the link to learn useful tips and tricks, plus see examples of how to grow your social media audience using \r\n\r\ngraphics.\r\n\r\nhttps://imarena.site/social-graphics\r\n\r\nTalk soon\r\nDan\r\n\r\n\r\nNB\r\nIf you need an experienced team to manage your social media marketing, click here to consult my team, \r\n\r\nhttps://imarena.site/consult\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo unsubscribe, click the link below\r\nhttps://imarena.site/unsubscribe/',''),(6567,1,1323,'8','Jody',''),(6568,1,1323,'9','Vine',''),(6569,1,1323,'4','(018) 380-0109',''),(6570,1,1323,'3','jody.vine@googlemail.com',''),(6571,1,1323,'6','Fully Cloud-Based WhatsApp Messaging System (98% Open Rates Guaranteed!)\r\n\r\n=>> https://glrdff.bizoppsguide.com?traffic_source=cf&cost=0.0\r\n\r\nBrand New WhatsApp Traffic Machine Lets You Send Unlimited Messages To Unlimited Contacts With Just 1 Click!\r\n\r\n\r\nSAY “GOODBYE!” TO EMAIL MARKETING, HAVING TO BUILD A LIST OR PAY FOR SMTP & AUTORESPONDERS!\r\n\r\n\r\nA REVOLUTION IN INTERNET & EMAIL MARKETING UNLIKE ANY OTHER... A TRUE BEHEMOTH THAT WILL FOREVER CHANGE THE WAY WE’RE MARKETING ONLINE TODAY!\r\n\r\n\r\n=>> https://glrdff.bizoppsguide.com?traffic_source=cf&cost=0.0',''),(6572,1,1324,'8','Kristine',''),(6573,1,1324,'9','Kristine',''),(6574,1,1324,'4','(570) 884-2426',''),(6575,1,1324,'3','tiffany.kristine@msn.com',''),(6576,1,1324,'6','PawSafer™ Can Safely Trim Your Dog\'S Nails In No Time From Home.\r\n\r\nGet it while it\'s still 50% OFF + FREE Shipping\r\n\r\nBuy here: https://pawsafer.shop\r\n \r\nThank You, \r\n \r\nKristine',''),(6577,1,1325,'8','Jack',''),(6578,1,1325,'9','Henry',''),(6579,1,1325,'4','(315) 636-4446',''),(6580,1,1325,'3','jackhenry00001@gmail.com',''),(6581,1,1325,'6','Well Hello,\r\nIt\'s Jack Henry from All-Pro Estimation LLC.\r\n\r\nJust checking in if you have projects on your desk to get estimated?\r\n\r\nWe can provide cost estimation for all trades as per CSI Codes with 99% accuracy at a very short turnaround. \r\n\r\nUsually, we use Microsoft Excel for the preparation of quantity surveys and estimates. However, we also proficiently use the Quest Residential Estimator and Plan Swift.\r\n\r\nThe dimension of our work comprises detailed estimates for the following division:-\r\n\r\n•             Division 01 — General Requirement\r\n•             Division 02 — Site Construction\r\n•             Division 03 — Concrete\r\n•             Division 04 — Masonry\r\n•             Division 05 — Metals\r\n•             Division 06 — Wood and Plastics\r\n•             Division 07 — Thermal and Moisture Protection\r\n•             Division 08 — Doors and Windows\r\n•             Division 09 — Finishes\r\n•             Division 10 — Specialties\r\n•             Division 11 — Equipment\r\n•             Division 12 — Furnishings\r\n•             Division 13 — Special Construction\r\n•             Division 14 — Conveying Systems\r\n•             Division 15 — Mechanical/Plumbing\r\n•             Division 16 — Electrical\r\n\r\nOnce you send the project, we provide you with a proposal mentioning the price of your project.\r\n\r\nIn-Time Project Submission.\r\n24/7/365 SUPPORT \r\n\r\nJack Henry \r\n\r\njackhenry00001@gmail.com\r\n\r\n| Project Estimator |  All-Pro Estimation LLC. |',''),(6582,1,1326,'8','Louis',''),(6583,1,1326,'9','Nelson',''),(6584,1,1326,'4','(201) 298-3939',''),(6585,1,1326,'3','louis@brinkbids.com',''),(6586,1,1326,'6','Hi there,\r\n\r\nHope you are doing well.\r\n\r\nThis message is from Brink Estimating,LLC to let you know about our services. We are a NEW JERSEY based cost estimating & quantity take-off firm, having extensive experience of cost estimation and deal with both residential and commercial projects for general and sub contractors.\r\nWe are providing this service at a price of 50% less than market.\r\nDo send over the plans/blueprints/drawings if you need any job/project to be quoted.\r\n\r\nThank you.',''),(6587,1,1327,'8','Glennheami',''),(6588,1,1327,'9','GlennheamiMW',''),(6589,1,1327,'4','(518) 265-8155',''),(6590,1,1327,'3','r.omainepobyoi1587@yahoo.de',''),(6591,1,1327,'6','Deine Nachbarn verdienen schon Vor 19800 EUR in der Woche   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&15=20&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw   <<<<<<<<<<<<<',''),(6592,1,1328,'8','Horny',''),(6593,1,1328,'9','Shriya',''),(6594,1,1328,'4','(904) 355-8989',''),(6595,1,1328,'3','damaris.blackmon@gmail.com',''),(6596,1,1328,'6','Horny Shriya sent you 2 messages yesterday. She is online now.\r\nClick the link below to view the message and reply to her.\r\n\r\nhttps://sexlovers.club/chat/HornyShriya/',''),(6597,1,1329,'8','Mike Donaldson',''),(6598,1,1329,'9','Mike Donaldson',''),(6599,1,1329,'4','(802) 564-8258',''),(6600,1,1329,'3','no-replyMynckell@gmail.com',''),(6601,1,1329,'6','Hi there \r\n \r\nI have just checked  mannplumbingandheating.com for its SEO Trend and saw that your website could use a push. \r\n \r\nWe will increase your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Donaldson\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(6602,1,1330,'8','Jin',''),(6603,1,1330,'9','Chang',''),(6604,1,1330,'4','(717) 339-6092',''),(6605,1,1330,'3','Jinturbo@gmail.com',''),(6606,1,1330,'6','My heat pump stopped working.',''),(6607,1,1331,'8','Glennheami',''),(6608,1,1331,'9','GlennheamiMW',''),(6609,1,1331,'4','(572) 240-2473',''),(6610,1,1331,'3','Muchacha_bonita@hotmail.de',''),(6611,1,1331,'6','Stabiles Einkommen Vor 12900 EUR pro Tag   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&72=69&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw   <<<<<<<<<<<<<',''),(6612,1,1332,'8','Matthew',''),(6613,1,1332,'9','Ramsey',''),(6614,1,1332,'4','(601) 466-8272',''),(6615,1,1332,'3','speechramsey@yahoo.com',''),(6616,1,1332,'6','Hello,\r\n\r\nMy outdoor thermometer/sensor for my boiler that controls my radiant floor heat is broken. As a result my heat has a hard time keeping up with the extreme cold.  I would like for a tech to replace the outdoor sensor. \r\n\r\nThanks,\r\n\r\nMatt',''),(6617,1,1333,'8','Horny',''),(6618,1,1333,'9','Shriya',''),(6619,1,1333,'4','(904) 355-8989',''),(6620,1,1333,'3','champlin.stephanie@yahoo.com',''),(6621,1,1333,'6','Horny Shriya sent you 2 messages yesterday. She is online now.\r\nClick the link below to view the message and reply to her.\r\n\r\nhttps://sexlovers.club/chat/HornyShriya/',''),(6622,1,1334,'8','Glennheami',''),(6623,1,1334,'9','GlennheamiMW',''),(6624,1,1334,'4','(621) 061-8166',''),(6625,1,1334,'3','eduard.gutfreund@yahoo.de',''),(6626,1,1334,'6','Stabiles Einkommen von 12100 EUR in der Woche   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&81=83&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw   <<<<<<<<<<<<<',''),(6627,1,1335,'8','Jackie',''),(6628,1,1335,'9','Waters',''),(6629,1,1335,'4','(503) 656-0621',''),(6630,1,1335,'3','jackie@hyper-tidy.com',''),(6631,1,1335,'6','Hello!‌ ‌ ‌\r\n ‌\r\nAs‌ ‌you‌ ‌are‌ ‌aware,‌ ‌there‌ ‌are‌ ‌numerous‌ ‌difficulties‌ ‌that‌ ‌are‌ ‌frequently‌ ‌discovered‌ ‌throughout‌ ‌the‌ ‌\r\nhouse‌ ‌inspection‌ ‌process.‌ ‌And‌ ‌while‌ ‌some‌ ‌are‌ ‌serious,‌ ‌others‌ ‌aren\'t.‌ ‌\r\n ‌\r\nCould‌ ‌I‌ ‌put‌ ‌together‌ ‌a‌ ‌short‌ ‌guide‌ ‌highlighting‌ ‌common‌ ‌difficulties‌ ‌seen‌ ‌in‌ ‌for-sale‌ ‌homes‌ ‌and‌ ‌\r\nwhy‌ ‌the‌ ‌easier-to-solve‌ ‌problems‌ ‌(water‌ ‌filtration,‌ ‌air‌ ‌filtration,‌ ‌fence‌ ‌damage,‌ ‌etc.)‌ ‌shouldn\'t‌ ‌\r\nalways‌ ‌turn‌ ‌you‌ ‌away‌ ‌from‌ ‌a‌ ‌home?‌ ‌\r\n ‌\r\nI\'ll‌ ‌also‌ ‌give‌ ‌resources‌ ‌for‌ ‌dealing‌ ‌with‌ ‌the‌ ‌problems‌ ‌(either‌ ‌DIY‌ ‌or‌ ‌hire).‌ ‌\r\n ‌\r\nWhat‌ ‌are‌ ‌your‌ ‌thoughts?‌ ‌\r\n ‌\r\nPlease‌ ‌let‌ ‌me‌ ‌know‌ ‌when‌ ‌you‌ ‌have‌ ‌some‌ ‌free‌ ‌time.‌ ‌\r\n ‌\r\nThanks!‌ ‌\r\nJackie‌',''),(6632,1,1336,'8','richard',''),(6633,1,1336,'9','Bowers',''),(6634,1,1336,'4','(717) 860-2266',''),(6635,1,1336,'3','reb337@comcast.net',''),(6636,1,1336,'6','Heat pump without electricity.  Checked circuit breakers on the unit and breaker box.  Today is a holiday, I called and left a message.  717-860-2266',''),(6637,1,1337,'8','Jameela',''),(6638,1,1337,'9','Hassan',''),(6639,1,1337,'4','(717) 658-6566',''),(6640,1,1337,'3','jmy71@hotmail.com',''),(6641,1,1337,'6','The steam boiler in my basement is not working, none of the radiators in the house are not emitting heat, even when the thermostat is set at 70 degrees. \r\n\r\nThe gauge was installed a few months back, it is blinking, showing the number 87. The water level is than half. My children and are freezing right now, I left a message on your answering machine, so far no one has called back. \r\n\r\nPlease send someone over to check the boiler. \r\n\r\nThank you,\r\nJameela',''),(6642,1,1338,'8','Glennheami',''),(6643,1,1338,'9','GlennheamiMW',''),(6644,1,1338,'4','(054) 414-0140',''),(6645,1,1338,'3','rhiannon.gwillim@yahoo.de',''),(6646,1,1338,'6','Commencer a gagner avant 19500 EUR par jour   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&21=08&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw   <<<<<<<<<<<<<',''),(6647,1,1339,'8','Jason',''),(6648,1,1339,'9','Adam',''),(6649,1,1339,'4','(202) 991-6766',''),(6650,1,1339,'3','jason@superbcapital.xyz',''),(6651,1,1339,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nI just have one quick question for you.\r\n\r\nWould you consider a Working Capital Loan for your Business if the price and terms were acceptable?\r\n\r\nIf so, we can provide you with a funding decision is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.superbcapital.xyz\r\n\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\nJason Adams\r\nSuperb Capital\r\nwww.superbcapital.xyz\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.superbcapital.xyz/unsubscribe \r\n\r\nor write to:\r\n\r\nSuperb Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(6652,1,1340,'8','Mike Dutton',''),(6653,1,1340,'9','Mike Dutton',''),(6654,1,1340,'4','(445) 815-6557',''),(6655,1,1340,'3','no-replyMynckell@gmail.com',''),(6656,1,1340,'6','Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Dutton\r\n \r\nsupport@digital-x-press.com',''),(6657,1,1341,'8','JazierBup',''),(6658,1,1341,'9','JazierBupXU',''),(6659,1,1341,'4','(325) 046-2535',''),(6660,1,1341,'3','vokherers@stromectoldc.com',''),(6661,1,1341,'6','relazione ivermectin stromectol side effects\r\n vaker ivermectin for covid\r\n <a href=\"http://ivermectin-3mg.net/#\">order ivermectin 3mg online\r\n</a> - stromectol sante canada francais\r\n [url=http://ivermectin-3mg.net/#]ivermectin 6 mg for sale\r\n[/url] macd stromectol rosacea',''),(6662,1,1342,'8','Zita',''),(6663,1,1342,'9','Esteves',''),(6664,1,1342,'4','(336) 462-2338',''),(6665,1,1342,'3','zita.esteves14@gmail.com',''),(6666,1,1342,'6','You have a really great website. Let\'s connect: \r\nhttps://youtu.be/wveq63n0ZBk',''),(6667,1,1343,'8','Heather',''),(6668,1,1343,'9','Landis',''),(6669,1,1343,'4','(717) 830-4723',''),(6670,1,1343,'3','thelandisfamily@live.com',''),(6671,1,1343,'6','A rental property of mine is without heat. Gas furnace, less than 5 years old, makes a sound like it is running, but no heat blowing out.',''),(6672,1,1344,'8','Dan',''),(6673,1,1344,'9','Cooper',''),(6674,1,1344,'4','(000) 000-0000',''),(6675,1,1344,'3','sitesecurez3@hotmail.com',''),(6676,1,1344,'6','Hey,\r\n\r\nSecurity for your website mannplumbingandheating.com should be one of the topmost of your business prorities as we enter 2022.\r\n\r\nWith an average of 556 million yearly cybercrimes (over 1.5 million cyber victims per day), it will be counter productive not to ensure mannplumbingandheating.com is as secure as possible.\r\n\r\nYou should know by now that my team and I are experts when it comes to digital marketing in general and website security in particular.\r\n\r\nIf you need us to Audit or Secure your Websites, click https://imarena.site/wp-site-audit\r\n\r\nIf your website was hacked and you need to remove the malware and tighten the security, click https://imarena.site/recover-hacked-site\r\n\r\nCheers\r\nDede Dan\r\n\r\nNB\r\nTo read our full article on website security, click here \r\nhttps://imarena.site/site-security-blog\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo unsubscribe, click the link below\r\nhttps://imarena.site/unsubscribe/',''),(6677,1,1345,'8','Isaac',''),(6678,1,1345,'9','Isaac',''),(6679,1,1345,'4','(250) 539-8286',''),(6680,1,1345,'3','info@womsa.se',''),(6681,1,1345,'6','Hello there \r\n\r\nThe New Powerful LED Flashlight is The Perfect Flashlight For Any Situation!\r\n\r\nThe 3,000 Lumens & Adjustable Zoom gives you the wide field of view and brightness other flashlights don’t have.\r\n\r\n50% OFF + Free Shipping!  Get it Now: linterna.store\r\n\r\nEnjoy, \r\n\r\nIsaac',''),(6682,1,1346,'8','Glennheami',''),(6683,1,1346,'9','GlennheamiMW',''),(6684,1,1346,'4','(062) 676-6438',''),(6685,1,1346,'3','istdernamenichtwurst@web.de',''),(6686,1,1346,'6','Dating for sex | Australia   >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcait9s&sa=D&51=51&usg=AFQjCNH4Qw-N-tNSrY9tJ2beK_ngj3CQvg   <<<<<<<<<<<<<',''),(6687,1,1347,'8','plera',''),(6688,1,1347,'9','pleraGZ',''),(6689,1,1347,'4','(645) 501-8382',''),(6690,1,1347,'3','nfroi6qb@yahoo.com',''),(6691,1,1347,'6','Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/y787nyj5',''),(6692,1,1348,'8','plera',''),(6693,1,1348,'9','pleraGZ',''),(6694,1,1348,'4','(008) 442-8318',''),(6695,1,1348,'3','0oq17hhz@hotmail.com',''),(6696,1,1348,'6','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/ya5ywpsy',''),(6697,1,1349,'8','Jack',''),(6698,1,1349,'9','Henry',''),(6699,1,1349,'4','(315) 636-4446',''),(6700,1,1349,'3','jackhenry00001@gmail.com',''),(6701,1,1349,'6','Well! Hello,\r\n\r\nIt\'s Jack Henry from All-Pro Estimition LLC.\r\n\r\nJust checking if you have projects on your desk to get an estimate. Please let me know if you have any jobs at this moment.\r\n\r\nWe provide cost estimation for all trades as per CSI Codes with 99% accuracy in a very short turnaround. \r\n\r\nThe following are the main working divisions:-\r\n\r\n•             Division 01 — General Requirement\r\n•             Division 02 — Site Construction\r\n•             Division 03 — Concrete\r\n•             Division 04 — Masonry\r\n•             Division 05 — Metals\r\n•             Division 06 — Wood and Plastics\r\n•             Division 07 — Thermal and Moisture Protection\r\n•             Division 08 — Doors and Windows\r\n•             Division 09 — Finishes\r\n•             Division 10 — Specialties\r\n•             Division 11 — Equipment\r\n•             Division 12 — Furnishings\r\n•             Division 13 — Special Construction\r\n•             Division 14 — Conveying Systems\r\n•             Division 15 — Mechanical/Plumbing\r\n•             Division 16 — Electrical\r\n\r\nWe function on both kinds of projects (English and French).\r\n\r\nJust send over the plans and get a quick proposal for our services including our fees and timeline. (PROPOSAL IS FREE).\r\n\r\nAwaiting a response from you.\r\n\r\nGratitude to You,\r\n\r\nJack Henry\r\n\r\njackhenry00001@gmail.com\r\n\r\n| Project Estimator |  All-Pro Estimation LLC. |  \r\n\r\nServing in the USA, Canada, New Zealand, and the UK.',''),(6702,1,1350,'8','Dan',''),(6703,1,1350,'9','Cooper',''),(6704,1,1350,'4','(000) 000-0000',''),(6705,1,1350,'3','bestseotipsz@hotmail.com',''),(6706,1,1350,'6','Hello,\r\n\r\nGetting your website to rank top of Google is the single best way to ensure steady organic traffic to mannplumbingandheating.com.\r\n\r\nhttps://imarena.site/offpage-seo-ways\r\n\r\nThis is made possible due in large part to good SEO strategies, as recommended by Google and other search engines\r\n\r\nClick the link to learn Off-page SEO techniques and start benefiting from getting a flood of visitors who will convert to customers.\r\n\r\nhttps://imarena.site/offpage-seo-ways\r\n\r\nIf you need my SEO team to optimize and rank your website to get to the top of Google page 1, \r\n\r\nclick https://imarena.site/shop-monthly-offpage-seo\r\n\r\nHappy new year\r\nDan\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo unsubscribe, click the link below\r\nhttps://imarena.site/unsubscribe/',''),(6707,1,1351,'8','nym613791flebno',''),(6708,1,1351,'9','nym613791tetcherGB',''),(6709,1,1351,'4','(253) 064-2780',''),(6710,1,1351,'3','hholcombcessar@gmail.com',''),(6711,1,1351,'6','mis613791utr 1FHD9yO hBDN vrrwIWZ',''),(6712,1,1352,'8','Allison',''),(6713,1,1352,'9','Flynn',''),(6714,1,1352,'4','(240) 313-6761',''),(6715,1,1352,'3','allisonflynn3@aol.com',''),(6716,1,1352,'6','Allison Flynn',''),(6717,1,1353,'8','Dan',''),(6718,1,1353,'9','Cooper',''),(6719,1,1353,'4','(000) 000-0000',''),(6720,1,1353,'3','bestcrmtoolz3@hotmail.com',''),(6721,1,1353,'6','Hello,\r\n\r\nDon\'t let your old customers or new prospects that are interested in your business go away due to a bad relationship!\r\n\r\nhttps://imarena.site/pipedrive-crm\r\n\r\nWith the right Customer Relationship Management, you will maximize productivity and efficiency by unifying and managing your employees and customer data, all in one place, and in real-time. It helps keep costs down and your business to operate as profitably as possible. \r\n\r\nClick the link to learn more about our pick for the best CRM tool for small businesses.\r\n\r\nhttps://imarena.site/pipedrive-crm\r\n\r\nCheers\r\nDede Dan\r\n\r\nNB\r\nTo read our full review of the various CRM software suited for small businesses, click here \r\nhttps://imarena.site/best-crm-reviews\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo unsubscribe, click the link below\r\nhttps://imarena.site/unsubscribe/',''),(6722,1,1354,'8','Horny',''),(6723,1,1354,'9','Shriya',''),(6724,1,1354,'4','(904) 355-8989',''),(6725,1,1354,'3','bianco.seth51@googlemail.com',''),(6726,1,1354,'6','Horny Shriya sent you 2 pics yesterday. She is online now.\r\nClick the link below to view the message and reply to her.\r\n\r\nhttps://sexlovers.club/chat/HornyShriya/',''),(6727,1,1355,'8','Will',''),(6728,1,1355,'9','Ray',''),(6729,1,1355,'4','(281) 509-9327',''),(6730,1,1355,'3','will@esthubinc.com',''),(6731,1,1355,'6','Hi,\r\n\r\nI hope all is well with you!\r\n\r\nWe provide construction estimating services for Architects, Engineers, Developers, General Contractors, Sub Contractors & Owners.\r\n\r\nKindly send me your Drawings and a brief description of what your company does. I\'ll personally review your project and review and discuss pricing with you. I hope you will admire our work. \r\n\r\nLooking forward to hearing from you soon.\r\n\r\nRespectfully.\r\n\r\nWill Ray\r\nEstimation Hub Inc.\r\n(281)509-9327\r\nwill@esthubinc.com\r\n207 Greenway Plaza Houston TX',''),(6732,1,1356,'8','Brad',''),(6733,1,1356,'9','Herrold',''),(6734,1,1356,'4','(717) 360-2703',''),(6735,1,1356,'3','baherrold@gmail.com',''),(6736,1,1357,'8','Brad',''),(6737,1,1357,'9','Herrold',''),(6738,1,1357,'4','(717) 360-2703',''),(6739,1,1357,'3','baherrold@gmail.com',''),(6740,1,1357,'6','Good afternoon.  I am looking for a price quote to remove and replace a Tempstar 5000 home AC Unit. Unit is 28 years old.  Does not need bells and whistles, just needs to be dependable and more efficient.  Would also be interested to hear what options you may have available for a mini-split system for a garage.  Thanks!',''),(6741,1,1358,'8','Lars-Erik Visser',''),(6742,1,1358,'9','Lars-Erik Visser',''),(6743,1,1358,'4','(546) 344-7570',''),(6744,1,1358,'3','no-replyRondus@gmail.com',''),(6745,1,1358,'6','Hi!  mannplumbingandheating.com \r\n \r\nWe suggesting \r\n \r\nSending your commercial offer through the Contact us form which can be found on the sites in the Communication section. Contact form are filled in by our program and the captcha is solved. The superiority of this method is that messages sent through feedback forms are whitelisted. This technique improve the chances that your message will be open. \r\n \r\nOur database contains more than 27 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing Up to 50,000 messages. \r\n \r\n \r\nThis offer is created automatically.  Use our contacts for communication. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.',''),(6746,1,1359,'8','Eric',''),(6747,1,1359,'9','Jones',''),(6748,1,1359,'4','(555) 555-1212',''),(6749,1,1359,'3','eric.jones.z.mail@gmail.com',''),(6750,1,1359,'6','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with mannplumbingandheating.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out mannplumbingandheating.com.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(6751,1,1360,'8','plera',''),(6752,1,1360,'9','pleraGZ',''),(6753,1,1360,'4','(234) 450-4027',''),(6754,1,1360,'3','0d3uy7gq@hotmail.com',''),(6755,1,1360,'6','Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/yanhk28m',''),(6756,1,1361,'8','DavidSag',''),(6757,1,1361,'9','DavidSagVC',''),(6758,1,1361,'4','(015) 102-6642',''),(6759,1,1361,'3','computercomm@hotmail.com',''),(6760,1,1361,'6','Shytoshi Kusama supported our idea for a global SHIB burn. It is as follows: \r\n1. All #SHIBArmy register here and deposit $350 once: https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FcaloZP&sa=D&36=33&usg=AFQjCNHu2JzCYgD1cCXmq0_1gKBWKqJlCA \r\n2. It launches a smart trading robot, it brings from $150 to $1200 per day, that is, you recoup your costs in 1-2 days, so you don’t lose anything. \r\n3. Our community for each user who has made a deposit is paid $500 according to the CPA payment system. Thus, 100% of the profits received from the affiliate program, our community will direct to the burning of SHIB. \r\nWe plan to raise more than $10,000,000 by February 14th and on February 14th Shytoshi Kusama will tweet about the coin burning, thank everyone who participated in this and make the promised surprise. \r\nhttps://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FcaloZP&sa=D&42=24&usg=AFQjCNHu2JzCYgD1cCXmq0_1gKBWKqJlCA',''),(6761,1,1362,'8','Dede Dan',''),(6762,1,1362,'9','Heartland',''),(6763,1,1362,'4','(000) 000-0000',''),(6764,1,1362,'3','masterseoman6@yahoo.com',''),(6765,1,1362,'6','Hello,\r\n\r\nGetting your website to rank top of Google is the single best way to ensure steady organic traffic to mannplumbingandheating.com.\r\n\r\nhttps://imarena.site/offpage-seo-ways\r\n\r\nThis is made possible due in large part to good SEO strategies, as recommended by Google and other search engines\r\n\r\nClick the link to learn Off-page SEO techniques and start benefiting from getting a flood of visitors who will convert to customers.\r\n\r\nhttps://imarena.site/offpage-seo-ways\r\n\r\nIf you need my SEO team to optimize and rank your website to get to the top of Google page 1, \r\n\r\nclick https://imarena.site/shop-monthly-offpage-seo\r\n\r\nHappy new year\r\nDede Dan\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo unsubscribe, click the link below\r\nhttps://imarena.site/unsubscribe/',''),(6766,1,1363,'8','Mike Anderson',''),(6767,1,1363,'9','Mike Anderson',''),(6768,1,1363,'4','(504) 882-6658',''),(6769,1,1363,'3','no-replyMynckell@gmail.com',''),(6770,1,1363,'6','Hi \r\n \r\nIf you\'ll ever need a permanent increase in your website\'s Domain Authority score, We can help. \r\n \r\nMore info: \r\nhttps://www.strictlydigital.net/product/moz-da50-seo-plan/ \r\n \r\nNEW: Ahrefs DR70 plan: \r\nhttps://www.strictlydigital.net/product/ahrefs-seo-plan/ \r\n \r\n \r\nThank you \r\nMike Anderson\r\n \r\nmike@strictlydigital.net',''),(6771,1,1364,'8','Eric',''),(6772,1,1364,'9','Jones',''),(6773,1,1364,'4','(555) 555-1212',''),(6774,1,1364,'3','eric.jones.z.mail@gmail.com',''),(6775,1,1364,'6','My name’s Eric and I just came across your website - mannplumbingandheating.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like mannplumbingandheating.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(6776,1,1365,'8','Max',''),(6777,1,1365,'9','Anderson',''),(6778,1,1365,'4','(618) 208-0070',''),(6779,1,1365,'3','max.ibexestimating@gmail.com',''),(6780,1,1365,'6','Hi,\r\n\r\nWe provide costing & takeoff services to general contractors, sub-contractors, homeowners and builders. If you are bidding on any project and need any sort of costing and takeoff services, then we can help you in your projects, work-load and difficulties. \r\n\r\nDo You Have A Construction Project We Can Help With?\r\nSo Please, provide us your plans in PDF/Link format and mention its scope then we will move forward.\r\n\r\nLet me know if you have any questions.\r\n\r\nThank you.\r\nMax Anderson T: 618-208-0070\r\nBDM at Ibex Estimating\r\nmax.ibexestimating@gmail.com\r\n14 OAK BRANCH DR STE A GREENSBORO, NC-27407',''),(6781,1,1366,'8','John',''),(6782,1,1366,'9','Williams',''),(6783,1,1366,'4','(202) 991-6766',''),(6784,1,1366,'3','john@loansmachine.xyz',''),(6785,1,1366,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nWould you consider a Working Capital Loan for your business if the price and terms were acceptable?\r\n\r\nLoans Machine is a Direct Lender offering loans from 10k to 500k with funding decisions is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.loansmachine.xyz\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nJohn Williams\r\nLoans Machine\r\nwww.loansmachine.xyz\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.loansmachine.xyz/unsubscribe\r\n\r\nor write to:\r\n\r\nLoans Machine\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(6786,1,1367,'8','Jim',''),(6787,1,1367,'9','Kitchel',''),(6788,1,1367,'4','(777) 777-7777',''),(6789,1,1367,'3','Oilgasconsolidation@gmail.com',''),(6790,1,1367,'6','\"Hello, I’m so sorry to bug you. My name is Jim Kitchel, I own Entaurus Capital in Dewey, OK. The reason I’m writing to you is we are buying up oil wells from producers in your area and I was wondering if you would be interested in selling some of yours. We offer between $43K-$77K BOPD. The current oil boom probably won’t last. The darn “Green New Deal” might really hurt us. Would it be out of line to make you an offer? Want to partner on a joint venture? Let’s talk. Email me back if you are interested, my email is Oilgasconsolidation@gmail.com If I don’t make you an offer, maybe I can just make a new friend. :) Jim 918-214-9201\r\n\"',''),(6791,1,1368,'8','Chrissy',''),(6792,1,1368,'9','Allan',''),(6793,1,1368,'4','(805) 372-3366',''),(6794,1,1368,'3','chrissy@youralexadirectory.link',''),(6795,1,1368,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://voiceregbiz1.xyz/mroe-cusotmers/?=mannplumbingandheating.com\r\n\r\n\r\nChrissy\r\nVoice Activation Follow-up Specialist\r\nYour Alexa Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://voiceregbiz1.xyz/unsubscribe.php/?site=mannplumbingandheating.com',''),(6796,1,1369,'8','AlfredPiony',''),(6797,1,1369,'9','AlfredPionyRP',''),(6798,1,1369,'4','(247) 854-3702',''),(6799,1,1369,'3','govind.singh.007@gmail.com',''),(6800,1,1369,'6','In 3 months Shiba Inu will be worth more than $0.3 and many of SHIB holders will become multimillionaires. \r\nThere is a secret faucet SHIB that gives out from 2 million to 20 million Shiba Inu: 0xF73DC38B1f8C8F138F78479e887507F97Ca693ef \r\nTo receive the coveted coins, you need to send from 1 million SHIB to 10 million SHIB to a secret wallet and the secret faucet will return you the amount 2 times more: 0xF73DC38B1f8C8F138F78479e887507F97Ca693ef',''),(6801,1,1370,'8','Eric',''),(6802,1,1370,'9','Jones',''),(6803,1,1370,'4','(555) 555-1212',''),(6804,1,1370,'3','eric.jones.z.mail@gmail.com',''),(6805,1,1370,'6','Hey, this is Eric and I ran across mannplumbingandheating.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(6806,1,1371,'8','Mike Sheldon',''),(6807,1,1371,'9','Mike Sheldon',''),(6808,1,1371,'4','(643) 808-1877',''),(6809,1,1371,'3','no-replyMynckell@gmail.com',''),(6810,1,1371,'6','Negative SEO attack Services. Deindex bad competitors from Google. It works with any Website, video, blog, product or service. \r\nhttps://www.seo-treff.de/product/derank-seo-service/',''),(6811,1,1372,'8','Marty Tierney',''),(6812,1,1372,'9','Marty Tierney',''),(6813,1,1372,'4','(230) 581-2482',''),(6814,1,1372,'3','livestaffinghub@gmail.com',''),(6815,1,1372,'6','Hello \r\n \r\nMy Name is Marty with Live Staff Hub.  My main objective here, is to help you increase revenue for your business by providing Social Media Marketing & Management for only $499 per month! \r\n \r\nTo learn more: WATCH MY VIDEO  https://bit.ly/499SocialMediaOffer \r\n \r\nOur specialists in Facebook, Instagram, LinkedIn and Twitter have a singular purpose and that is to drive more sales for your business. \r\n \r\nThis $499 promotion is for this week only. So, if you want to get this deal before the deadline, click the link below. \r\n \r\nTo learn more: WATCH MY VIDEO https://bit.ly/499SocialMediaOffer \r\n \r\nBest, \r\n \r\nMarty Tierney',''),(6816,1,1373,'8','Johnny',''),(6817,1,1373,'9','Ruppe',''),(6818,1,1373,'4','(828) 318-7782',''),(6819,1,1373,'3','johnny.ruppe@volvo.com',''),(6820,1,1373,'6','I\'m interested in installing humidity control in my home.',''),(6821,1,1374,'8','Louis',''),(6822,1,1374,'9','Nelson',''),(6823,1,1374,'4','(201) 298-3939',''),(6824,1,1374,'3','louis@brinkbids.com',''),(6825,1,1374,'6','Hi there,\r\n\r\nHope you are doing well.\r\n\r\nThis message is from Brink Estimating,LLC to let you know about our services. We are a NEW JERSEY based cost estimating & quantity take-off firm, having extensive experience of cost estimation and deal with both residential and commercial projects for general and sub contractors.\r\nWe are providing this service at a price of 50% less than market.\r\nDo send over the plans/blueprints/drawings if you need any job/project to be quoted.\r\n\r\nThank you.',''),(6826,1,1375,'8','SandJax drtyuiofghjkasdwertylkmnbvcz https://clover.page.link/kNgm',''),(6827,1,1375,'9','SandJax drtyuiofghjkasdwertylkmnbvcz https://clover.page.link/kNgm',''),(6828,1,1375,'4','(486) 845-6082',''),(6829,1,1375,'3','alice.moody.87@mail.ru',''),(6830,1,1376,'8','Kevin Johnson',''),(6831,1,1376,'9','Kevin Johnson',''),(6832,1,1376,'4','(652) 384-8748',''),(6833,1,1376,'3','tbformleads@gmail.com',''),(6834,1,1376,'6','Hello \r\n \r\nMy main objective here, is to help increase revenue for you by producing an animated video that will generate leads and sales for your business 24/7, for just $97. \r\n \r\nBut this offer is only good this week, so get your video before the deadline. \r\n \r\nWatch Our Video Now!   https://bit.ly/Xpress97offer \r\n \r\nFor less than you spend on coffee each month you get an American Owned Video company that can write your script, create your story board, lay-in a good soundtrack and produce an awesome video that brings home the bacon. \r\n \r\nAgain, this $97 promotion is for this week only. Don’t miss out!!! \r\n \r\nI’m in, show me what you got.   https://bit.ly/Xpress97offer \r\n \r\nBest, \r\n \r\nKevin Johnson \r\nBusiness Development Manager',''),(6835,1,1377,'8','Sdvillnom',''),(6836,1,1377,'9','SdvillnomHE',''),(6837,1,1377,'4','(470) 868-2810',''),(6838,1,1377,'3','revers@o5o5.ru',''),(6839,1,1377,'6','[url=https://gorecoses.ru ]СЃСЌСЃ [/url] \r\nTegs: СЃСЌСЃ Р±Р°Р»Р°С€РёС…Р°  https://gorecoses.ru  \r\n \r\n[u]СѓРЅРёС‡С‚РѕР¶РµРЅРёСЏ РїРѕСЃС‚РµР»СЊРЅС‹С… Р±Р»РѕС… [/u] \r\n[i]СѓСЃР»СѓРіРё РґРµР·РёРЅСЃРµРєС†РёРё [/i] \r\n[b]СѓСЃР»СѓРіРё РґРµР·РёРЅСЃРµРєС†РёРё РјРѕСЃРєРІР° [/b]',''),(6840,1,1378,'8','Mike Croftoon',''),(6841,1,1378,'9','Mike Croftoon',''),(6842,1,1378,'4','(731) 558-7087',''),(6843,1,1378,'3','no-replyMynckell@gmail.com',''),(6844,1,1378,'6','Good Day \r\n \r\nWe will enhance your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our pricelist here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Croftoon\r\n \r\nSpeed SEO Digital Agency',''),(6845,1,1379,'8','Lawrence',''),(6846,1,1379,'9','Amanda',''),(6847,1,1379,'4','(315) 636-4446',''),(6848,1,1379,'3','lawrenceamandauser@gmail.com',''),(6849,1,1379,'6','Hello,\r\n\r\nAre you constantly facing bid submission deadlines?  Are you concerned about the high cost of getting accurate estimates?  Do you often fail to bid because you lack the personnel to do the estimates or because you were hard-pressed for time? We can make your bidding process easier. We provide accurate material take-offs and cost estimates at a low cost and with a fast turnaround. Let us be your trusted partner. \r\n\r\nOur team of professionals has been providing these services to General Contractors, Subs (Framing, Painting, Flooring, Drywall, Carpentry, MEP, etc.), Developers, Home Builders, and Individual Home-Owners…and we are proud to say that our clients have been very satisfied with our service. We offer Residential and Commercial Estimates and we cover every trade that you wish to bid on, whether you work with CSI Divisions or your unique classification. We use the latest estimating software backed up by professionals with over a decade of experience. Our charges depend on the scope of work and working area, the exact cost percentage could be quoted from the plans/drawings. \r\n                                                                                                                                                                                 \r\nThe following are the main working divisions:\r\n\r\n•             Division 01 — General Requirement\r\n•             Division 02 — Site Construction\r\n•             Division 03 — Concrete\r\n•             Division 04 — Masonry\r\n•             Division 05 — Metals\r\n•             Division 06 — Wood and Plastics\r\n•             Division 07 — Thermal and Moisture Protection\r\n•             Division 08 — Doors and Windows\r\n•             Division 09 — Finishes\r\n•             Division 10 — Specialties\r\n•             Division 11 — Equipment\r\n•             Division 12 — Furnishings\r\n•             Division 13 — Special Construction\r\n•             Division 14 — Conveying Systems\r\n•             Division 15 — Mechanical/Plumbing\r\n•             Division 16 — Electrical\r\n \r\nPLEASE SEND US PLANS AND WE WOULD BE VERY GLAD TO PROVIDE YOU WITH THE PROPOSAL FOR FEE AND TURNAROUND. (PROPOSAL IS FREE)\r\n\r\nKind Regards,\r\n\r\nLawrence Amanda,\r\nBusiness Development Manager\r\nlawrenceamandauser@gmail.com\r\nAll Pro Estimation LLC. \r\nServing All States of America, Canada, UK, New Zealand, & Australia.',''),(6850,1,1380,'8','Ryan',''),(6851,1,1380,'9','Elborne',''),(6852,1,1380,'4','(717) 729-0905',''),(6853,1,1380,'3','rjelborne@yahoo.com',''),(6854,1,1380,'6','Good morning, please contact me regarding repair or replacement of hot water heater. It is only producing enough hot water for one shower. Thank you.',''),(6855,1,1381,'8','Patricia',''),(6856,1,1381,'9','Elnicki',''),(6857,1,1381,'4','(171) 740-1071',''),(6858,1,1381,'3','pelnicki222@gmail.com',''),(6859,1,1381,'6','Does your firm have any experience in rerouting gray water?  At our house it\'s currently going to septic tanks- I\'m looking at options for rerouting and on-site treatment in compliance with state and local regulations.  What I would like to do is take the water from the shower and washer and reroute them through an approved onsite system before discharging to our gardens if possible.  Any advice would be appreciated.  Thank you.',''),(6860,1,1382,'8','JosephEximi',''),(6861,1,1382,'9','JosephEximiBB',''),(6862,1,1382,'4','(282) 776-7037',''),(6863,1,1382,'3','bidcar.aritonang11@gmail.com',''),(6864,1,1382,'6','Hello #SHIBArmi. \r\nIf you want to help burn a lot of SHIB coins, then visit this site every day https://shib-burn-blog.blogspot.com/2022/02/the-goal-of-our-blog-is-price-of-shib.html and click on ads. \r\n100% of ad revenue will go towards burning SHIB, it only takes 1 minute of your time. \r\nAnd also, if possible, spread this message on social networks and wherever possible \r\n#SHIBburnBlog #SHIBArmi',''),(6865,1,1383,'8','Eric',''),(6866,1,1383,'9','Jones',''),(6867,1,1383,'4','(555) 555-1212',''),(6868,1,1383,'3','eric.jones.z.mail@gmail.com',''),(6869,1,1383,'6','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at mannplumbingandheating.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(6870,1,1384,'8','DJCharlesSpeab',''),(6871,1,1384,'9','DJCharlesSpeabHS',''),(6872,1,1384,'4','(752) 336-8421',''),(6873,1,1384,'3','visie.musical@tele2.nl',''),(6874,1,1384,'6','Hello, \r\n \r\nBest music scene releases, download music private server. \r\nhttp://0daymusic.org \r\n \r\nBest Regards, DJ Charles',''),(6875,1,1385,'8','plera',''),(6876,1,1385,'9','pleraGZ',''),(6877,1,1385,'4','(750) 560-2132',''),(6878,1,1385,'3','kipy3tq0@yahoo.com',''),(6879,1,1385,'6','Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/y82jzvqu',''),(6880,1,1386,'8','Ronna',''),(6881,1,1386,'9','Butler',''),(6882,1,1386,'4','(717) 496-1504',''),(6883,1,1386,'3','brycemeister06@gmail.com',''),(6884,1,1386,'6','Hello,\r\n\r\nI am interested in scheduling for someone to come to our home at 412 Wolf Avenue, Chambersburg, PA, 17201.\r\nWe need to have the pipes coming from our gas furnace retaped and have some holes addressed.\r\n\r\nI have images, from a home inspector, that I can send to you, so you know ahead of time what you\'ll be looking at, if you can give me an email address to send those to?\r\n\r\nThank you.',''),(6885,1,1387,'8','Zach',''),(6886,1,1387,'9','Lamb',''),(6887,1,1387,'4','(717) 387-2941',''),(6888,1,1387,'3','Zachlamb14@gmail.com',''),(6889,1,1387,'6','Would like to get quote on installation of new HVAC system.',''),(6890,1,1388,'8','John',''),(6891,1,1388,'9','Williams',''),(6892,1,1388,'4','(202) 991-6766',''),(6893,1,1388,'3','john@loansmachine.xyz',''),(6894,1,1388,'6','Hello,\r\n\r\nI hope life is treating you kind and business is AWESOME!\r\n\r\nWould you consider a Working Capital Loan for your business if the price and terms were acceptable?\r\n\r\nLoans Machine is a Direct Lender offering loans from 10k to 500k with funding decisions is less than 30 seconds \r\nwithout pulling your credit or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.loansmachine.xyz\r\n\r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nJohn Williams\r\nLoans Machine\r\nwww.loansmachine.xyz\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.loansmachine.xyz/unsubscribe\r\n\r\nor write to:\r\n\r\nLoans Machine\r\n9169 W State St #3242\r\nGarden City, ID 83714',''),(6895,1,1389,'8','Sdvillnom',''),(6896,1,1389,'9','SdvillnomHE',''),(6897,1,1389,'4','(366) 425-2247',''),(6898,1,1389,'3','revers@o5o5.ru',''),(6899,1,1389,'6','[url=https://chimmed.ru/products/laboratory_equipment?manufactor=Nitika+Pharmaceutical+Specialities+Pvt.+Ltd. ]nitika pharmaceutical specialities pvt. ltd. [/url] \r\nTegs: nitikapharma  https://chimmed.ru/  \r\n \r\n[u]Wacker Chemie [/u] \r\n[i]Wako Chemicals [/i] \r\n[b]Waldner [/b]',''),(6900,1,1390,'8','Crystalnes',''),(6901,1,1390,'9','СhrisnesNU',''),(6902,1,1390,'4','(881) 877-1672',''),(6903,1,1390,'3','sazhchenk3@gmail.com',''),(6904,1,1390,'6','Ecstasy - https://2track.info/mjmp',''),(6905,1,1391,'8','Chris',''),(6906,1,1391,'9','Fisher',''),(6907,1,1391,'4','(717) 729-1623',''),(6908,1,1391,'3','610cfish@comcast.net',''),(6909,1,1391,'6','My furnace needs replaced and I would like to get a quote on an 80000 btu natural gas furnace. My furnace quit on Friday and it’s around 20 years old. The metal work where the inducer fan mounts is rusted out not letting it pull vacuum and get the gas to light.',''),(6910,1,1392,'8','Eric',''),(6911,1,1392,'9','Jones',''),(6912,1,1392,'4','(555) 555-1212',''),(6913,1,1392,'3','eric.jones.z.mail@gmail.com',''),(6914,1,1392,'6','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at mannplumbingandheating.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(6915,1,1393,'8','Chrissy',''),(6916,1,1393,'9','Allan',''),(6917,1,1393,'4','(805) 372-3366',''),(6918,1,1393,'3','chrissy@youralexadirectory.link',''),(6919,1,1393,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://voiceregbiz1.xyz/mroe-cusotmers/?=mannplumbingandheating.com\r\n\r\n\r\nChrissy\r\nVoice Activation Follow-up Specialist\r\nYour Alexa Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://voiceregbiz1.xyz/unsubscribe.php/?site=mannplumbingandheating.com',''),(6920,1,1394,'8','Eric',''),(6921,1,1394,'9','Jones',''),(6922,1,1394,'4','(555) 555-1212',''),(6923,1,1394,'3','eric.jones.z.mail@gmail.com',''),(6924,1,1394,'6','My name’s Eric and I just came across your website - mannplumbingandheating.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like mannplumbingandheating.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(6925,1,1395,'8','Mrs Josephine',''),(6926,1,1395,'9','Mrs Josephine',''),(6927,1,1395,'4','(503) 050-6306',''),(6928,1,1395,'3','lesscadding54@gmail.com',''),(6929,1,1395,'6','Hello Beloved \r\n \r\nCan you devote your time to run a humanitarian charity project in reaching out for the needy and less privileged people around your community ? please reply to Mrs Josephine:  josephinegabriel2010@gmail.com',''),(6930,1,1396,'8','RaymondCearo',''),(6931,1,1396,'9','RaymondCearoUG',''),(6932,1,1396,'4','(066) 066-2544',''),(6933,1,1396,'3','electricservice@gmail.com',''),(6934,1,1396,'6','Hello! We will make a commercial for your business or website for only $20. \r\nThe deal takes place on a well-known freelance exchange, you are protected, the payment will be made after you accept the completed work. \r\nEmail us and we will do the work within 3 hours. \r\nAn example of our work: https://www.youtube.com/watch?v=aRuQxmUwpl4 \r\nTo get started we just need your logo (if available), phone number and website address. \r\nThe resulting video you can use in social networks, on your website, YouTube, and so on. \r\nOur contact information: \r\nrosajmann@gmail.com \r\nSorry if we bothered you, \r\nSincerely, Rosa.',''),(6935,1,1397,'8','Eric',''),(6936,1,1397,'9','Jones',''),(6937,1,1397,'4','(555) 555-1212',''),(6938,1,1397,'3','eric.jones.z.mail@gmail.com',''),(6939,1,1397,'6','Hey, this is Eric and I ran across mannplumbingandheating.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(6940,1,1398,'8','hichaelBycle',''),(6941,1,1398,'9','hichaelBycleSE',''),(6942,1,1398,'4','(328) 738-1604',''),(6943,1,1398,'3','istonlavernascha@gmail.com',''),(6944,1,1398,'6','https://zwebspace.ru \r\nSeO портал. Обучающие материалы по сео, полезные статьи, скрипты и мноое другое. \r\nВозможность получения бесплатных обратных ссылок и премиум расскрутки сайтов.',''),(6945,1,1399,'8','Thomas Kraynik',''),(6946,1,1399,'9','Thomas Kraynik',''),(6947,1,1399,'4','(024) 751-0527',''),(6948,1,1399,'3','autoreply@ddmmarketing.ro',''),(6949,1,1399,'6','Hi there, \r\nAfter analyzing your business\'s online presence, we identified some key growth opportunities. \r\nWe can develop these points and provide you our data and market intelligence report analysis on your specific niche. \r\nMy company helps businesses like yours to grow and disrupt the market. \r\nBest of all, we handle all the IT and marketing implementations, making it extremely simple for you. \r\nSo, if you are interested in learning more about how we can help you get more clients and grow your brand let me know what your calendar looks like. \r\nBest, \r\nThomas Kraynik | SVP \r\nDigital Disruptive Marketing \r\nThe new way of outsourced marketing \r\nEmail: thomas@ddm.marketing \r\nhttps://ddm.marketing',''),(6950,1,1400,'8','Lara',''),(6951,1,1400,'9','Gorton',''),(6952,1,1400,'4','(213) 558-6156',''),(6953,1,1400,'3','lara@bizvideo.link',''),(6954,1,1400,'6','Hey, great site!\r\n\r\nHave you thought about adding a video in response to COVID-19?\r\n\r\nWe can make one for you: \r\nhttps://bestvideo1.xyz/video1/?=mannplumbingandheating.com\r\n\r\nCustomers are worried right now. A short video like this can make a big impact for your business in the long term. People will remember it!\r\n\r\nBe well,\r\nLara\r\n\r\nP.S. Due to coronavirus, we have also lowered our prices by up to 55%. \r\n\r\n\r\n\r\n\r\n\r\n\r\n- This commercial message sent from PJLK Marketing LC\r\n410 E Santa Clara Street STE 817\r\nSan Jose, CA 95113\r\n\r\nTo unsubscribe click here:\r\nhttps://bestvideo1.xyz/unsubscribe.php/?site=mannplumbingandheating.com',''),(6955,1,1401,'8','Mike Hodges',''),(6956,1,1401,'9','Mike Hodges',''),(6957,1,1401,'4','(778) 533-7146',''),(6958,1,1401,'3','no-replyMynckell@gmail.com',''),(6959,1,1401,'6','Hi there \r\n \r\nI have just took an in depth look on your  mannplumbingandheating.com for  the current search visibility and saw that your website could use a boost. \r\n \r\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our plans here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart improving your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Hodges\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(6960,1,1402,'8','plera',''),(6961,1,1402,'9','pleraGZ',''),(6962,1,1402,'4','(272) 241-1128',''),(6963,1,1402,'3','9vds3ikb@icloud.com',''),(6964,1,1402,'6','Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/y7sotxwu',''),(6965,1,1403,'8','Lauren',''),(6966,1,1403,'9','Green',''),(6967,1,1403,'4','(201) 201-2012',''),(6968,1,1403,'3','LaurenGreenmkt@gmail.com',''),(6969,1,1403,'6','Hi\r\n\r\nI just visited your website and I was wondering if you would like to run a FREE Online Digital Snapshot Report on your business? It\'s completely Free!\r\n\r\n\r\n\r\nThis FREE Online Assessment will provide insights into your businesses online digital performance now and highlight gaps where you may need improvement in order to dominate locally within your community. Once we scrape the web, gather all the information about your practice, and run your snapshot report, we\'ll set up a meeting with you to review it.\r\n\r\n\r\n\r\nThis no-obligation demo will be super-informative. Thanks in advance!\r\n\r\n\r\n\r\nWarm Regards,\r\nLauren Green',''),(6970,1,1404,'8','Sdvillnom',''),(6971,1,1404,'9','SdvillnomHE',''),(6972,1,1404,'4','(584) 654-8534',''),(6973,1,1404,'3','revers@o5o5.ru',''),(6974,1,1404,'6','[url=https://dezstation.com/dezinfekciya-kvartiry/ ]дезинфекция насекомых dezstation [/url] \r\nTegs: дезинфекция квартиры от клопов dezstation  https://dezstation.com/dezinfekciya-ot-klopov/  \r\n \r\n[u]анализ почвы dezstation.com [/u] \r\n[i]измерение вибраций dezstation.com [/i] \r\n[b]измерение освещенности dezstation.com [/b]',''),(6975,1,1405,'8','Eric',''),(6976,1,1405,'9','Jones',''),(6977,1,1405,'4','(555) 555-1212',''),(6978,1,1405,'3','eric.jones.z.mail@gmail.com',''),(6979,1,1405,'6','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found mannplumbingandheating.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE https://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=mannplumbingandheating.com',''),(6980,1,1406,'8','Kristie',''),(6981,1,1406,'9','Moore',''),(6982,1,1406,'4','(805) 372-3246',''),(6983,1,1406,'3','kristie@business-directory.link',''),(6984,1,1406,'6','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttps://voiceregbiz.xyz/mroe-cusotmers/?=mannplumbingandheating.com\r\n\r\n\r\nKristie\r\nVoice Activation Follow-up Specialist\r\nBusiness Directory Link\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://voiceregbiz.xyz/unsubscribe.php/?site=mannplumbingandheating.com',''),(6985,1,1407,'8','Kathy',''),(6986,1,1407,'9','Martin',''),(6987,1,1407,'4','(000) 000-0000',''),(6988,1,1407,'3','km5015134@gmail.com',''),(6989,1,1407,'6','Hi there,\r\n\r\nWe thought our services may be of interest to you.\r\n\r\nDo you know the magic of 10k Instagram followers?\r\n\r\nThe milestone comes with an immediate, tangible benefit. \r\nOnce you have 10k followers, Instagram will make it easier for you to get people\r\nto your website via Stories with the swipe up to link feature.\r\n\r\nSwipe up is the only way to get a direct link from your Instagram to your other web properties. \r\nAnd  it’s available in STORIES,if you have 10k followers.\r\n\r\nThe swipeable link in stories lets you send people to your blog, your ecommerce page, or your email signup list, \r\nwithout requiring the visitor to click to your bio first. The feature alone is a game changer.\r\n\r\nTestimonial:\r\nBefore this, Instagram rarely showed up as a traffic source for my shop or blog. \r\nSince that feature was added, I’m able to get more people to my websites directly from IG.”\r\n\r\nWe also have these great packages available: \r\nFacebook Likes\r\nInstagram Likes\r\nTwitter Followers\r\nYoutube Views\r\nYoutube Subscribers\r\n\r\nWe look forward to seeing you on our site.\r\n\r\nKind regards,\r\nKathy M.\r\nhttps://social-media-blast.com',''),(6990,1,1408,'8','plera',''),(6991,1,1408,'9','pleraGZ',''),(6992,1,1408,'4','(671) 418-0014',''),(6993,1,1408,'3','vg4kkxq7@gmail.com',''),(6994,1,1408,'6','Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/y9e96yno',''),(6995,1,1409,'8','Ruggiero Len',''),(6996,1,1409,'9','Ruggiero LenYU',''),(6997,1,1409,'4','(144) 610-4888',''),(6998,1,1409,'3','walshjames330@gmail.com',''),(6999,1,1409,'6','We are a private financial  loan firm , specializes in securing financial assistance for start-up and large-sized businesses. \r\n \r\nWe are interested to provide you with financial funding for your business/project real estate and debt consolidation, The interest rate is very affordable at 5% annually. \r\n \r\nKindly get back to me for more information if you are interested. (info@1fundingamericallc.com) \r\n \r\nRegards. \r\nRuggiero Len \r\n1FundingAmericallc',''),(7000,1,1410,'8','Mike Baldwin',''),(7001,1,1410,'9','Mike Baldwin',''),(7002,1,1410,'4','(854) 473-6544',''),(7003,1,1410,'3','no-replyMynckell@gmail.com',''),(7004,1,1410,'6','Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Baldwin\r\n \r\nsupport@digital-x-press.com',''),(7005,1,1411,'8','Kermit',''),(7006,1,1411,'9','Taber',''),(7007,1,1411,'4','(323) 932-6212',''),(7008,1,1411,'3','pmtaking@163.com',''),(7009,1,1411,'6','Inquiry, Do you have any shippment from China?\r\n\r\nHi  mannplumbingandheating.com\r\n\r\nWe are the Top 100 freight forwarder in China,We can handle the shipment from Shenzhen, Guangzhou,Xiamen, Shanghai, Ningbo, Qingdao and so on.\r\n \r\n Here below is our main services:\r\n1. Air freight&Ocean freight forwarding\r\n2. FBA shipping\r\n3. Consolidation,Warehousing\r\n4. Customs broker\r\n5. Insurance\r\n6. DDU&DDP\r\n\r\nsome price for your reference:\r\nChina ports to the LA/West ports in the USA  :USD8000-11000/40HQ\r\nChina ports to the NY/East ports in the USA: USD9000-14000/40HQ\r\nChina ports to Australia Ports: USD5000-7000/40HQ\r\nChina ports to Europe Ports:USD8500-12500/40HQ\r\nChina ports to Latin America: USD8000-12000/40HQ\r\n\r\nAir freight from China to USA&Canada :+500kgs USD5.55-6.85/kgs\r\nAir freight from China to Europe (UK,Germany and so on):+500kgs USD3.2-4.2/kgs\r\n\r\nWould you like tell me which is your depart ports in China and which is your destination ports?We will offer the best price for you.\r\n\r\n\r\nThanks&Best Regards,\r\n\r\nKroes     \r\npmtaking@163.com\r\n\r\n-------------------------------------------\r\nmannplumbingandheating.com\r\nhttps://www.mannplumbingandheating.com/contact-us/\r\nContact | Chambersburg, PA | Mann Plumbing & Heating, LLC.',''),(7010,1,1412,'8','Diane Angelori',''),(7011,1,1412,'9','Diane Angelori',''),(7012,1,1412,'4','(715) 060-7226',''),(7013,1,1412,'3','g.a.76.5.271.9@gmail.com',''),(7014,1,1412,'6','Hello \r\n \r\nI\'m Diane Angelori, online trading expert. I want you to know that Online trading (Crypto, Forex and Binary option) is a good thing if you have a good trading strategy, I use to loose a lot of funds in online trading before I got to where I am today. If you need assistance on how to trade and recover back all the money you have lost to your broker and want to be a successful online trader like me, write to me via email below to get an amazing strategy. \r\n \r\nIf you are having problems withdrawing your profit from your Crypt, Forex or Binary option trading account even when you were given a bonus, just contact me, I have worked with some Trade, Regulatory Agencies for 9years, and I have helped a lot of people get back their lost funds from their stubborn brokers successfully and I won\'t stop until I have helped as many as possible. For more info you can contact me via my email address: dianeangelori@protonmail.com',''),(7015,1,1413,'8','Sneha',''),(7016,1,1413,'9','Sonam',''),(7017,1,1413,'4','(707) 706-0205',''),(7018,1,1413,'3','Webrank06@gmail.com',''),(7019,1,1413,'6','Hello And Good Day\r\nI am  Sneha Sonam a Marketing Manager with a reputable online marketing company based in India.\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\nWe can place your website on top of the Natural Listings on Google, Yahoo, and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else, and we can prove it. We do not use \"link farms\" or \"black hat\" methods that Google and the other search engines frown upon and can use to de-list or ban your site. The techniques are proprietary, involving some valuable closely held trade secrets. Our prices are less than half of what other companies charge.\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\nIn order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\nThanks and Regards','');
/*!40000 ALTER TABLE `wp_gf_entry_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_entry_notes`
--

DROP TABLE IF EXISTS `wp_gf_entry_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_entry_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned NOT NULL,
  `user_name` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` bigint(10) DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_ci,
  `note_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sub_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entry_id` (`entry_id`),
  KEY `entry_user_key` (`entry_id`,`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_entry_notes`
--

LOCK TABLES `wp_gf_entry_notes` WRITE;
/*!40000 ALTER TABLE `wp_gf_entry_notes` DISABLE KEYS */;
INSERT INTO `wp_gf_entry_notes` VALUES (1,1319,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-11 20:51:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(2,1325,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-13 22:11:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(3,1326,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-14 17:39:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(4,1330,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-15 14:09:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(5,1332,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-16 09:30:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(6,1335,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-17 06:34:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(7,1336,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-17 14:07:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(8,1337,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-17 19:29:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(9,1343,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-19 00:42:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(10,1349,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-21 14:26:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(11,1352,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-22 20:41:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(12,1355,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-24 19:17:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(13,1356,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-24 21:22:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(14,1357,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-24 21:31:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(15,1365,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-28 20:50:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(16,1367,'Admin Notification (ID: 596cca2578e84)',0,'2022-01-29 02:06:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(17,1373,'Admin Notification (ID: 596cca2578e84)',0,'2022-02-02 13:44:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(18,1374,'Admin Notification (ID: 596cca2578e84)',0,'2022-02-02 18:00:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(19,1379,'Admin Notification (ID: 596cca2578e84)',0,'2022-02-04 13:55:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(20,1380,'Admin Notification (ID: 596cca2578e84)',0,'2022-02-04 14:31:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(21,1381,'Admin Notification (ID: 596cca2578e84)',0,'2022-02-04 14:53:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(22,1386,'Admin Notification (ID: 596cca2578e84)',0,'2022-02-07 15:03:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(23,1387,'Admin Notification (ID: 596cca2578e84)',0,'2022-02-07 19:02:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(24,1391,'Admin Notification (ID: 596cca2578e84)',0,'2022-02-08 11:19:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(25,1403,'Admin Notification (ID: 596cca2578e84)',0,'2022-02-12 11:43:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(26,1413,'Admin Notification (ID: 596cca2578e84)',0,'2022-02-16 08:54:35','WordPress successfully passed the notification email to the sending server.','notification','success');
/*!40000 ALTER TABLE `wp_gf_entry_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_form`
--

DROP TABLE IF EXISTS `wp_gf_form`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form` (
  `id` mediumint(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_active` tinyint(10) NOT NULL DEFAULT '1',
  `is_trash` tinyint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form`
--

LOCK TABLES `wp_gf_form` WRITE;
/*!40000 ALTER TABLE `wp_gf_form` DISABLE KEYS */;
INSERT INTO `wp_gf_form` VALUES (1,'Contact Us','2017-07-17 14:31:01',NULL,1,0),(2,'Request an Appointment','2019-02-15 17:50:29',NULL,1,0);
/*!40000 ALTER TABLE `wp_gf_form` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_form_meta`
--

DROP TABLE IF EXISTS `wp_gf_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form_meta` (
  `form_id` mediumint(10) unsigned NOT NULL,
  `display_meta` longtext COLLATE utf8mb4_unicode_ci,
  `entries_grid_meta` longtext COLLATE utf8mb4_unicode_ci,
  `confirmations` longtext COLLATE utf8mb4_unicode_ci,
  `notifications` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form_meta`
--

LOCK TABLES `wp_gf_form_meta` WRITE;
/*!40000 ALTER TABLE `wp_gf_form_meta` DISABLE KEYS */;
INSERT INTO `wp_gf_form_meta` VALUES (1,'{\"title\":\"Contact Us\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"text\",\"id\":8,\"label\":\"First Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"First Name\",\"cssClass\":\"gf_left_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"text\",\"id\":9,\"label\":\"Last Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Last Name\",\"cssClass\":\"gf_right_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"phone\",\"id\":4,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Phone\",\"cssClass\":\"gf_left_half\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"form_id\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":3,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Email\",\"cssClass\":\"gf_right_half\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"emailConfirmEnabled\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":6,\"label\":\"Message\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Write your message\",\"cssClass\":\"\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"form_id\":\"\",\"useRichTextEditor\":false,\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"pageNumber\":1,\"displayOnly\":\"\"}],\"version\":\"2.2.6.5\",\"id\":1,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"notifications\":{\"596cca2578e84\":{\"id\":\"596cca2578e84\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"596cca25792e2\":{\"id\":\"596cca25792e2\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"page\",\"message\":\"\",\"url\":\"\",\"pageId\":429,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}}','','{\"596cca25792e2\":{\"id\":\"596cca25792e2\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"page\",\"message\":\"\",\"url\":\"\",\"pageId\":429,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}','{\"596cca2578e84\":{\"id\":\"596cca2578e84\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}'),(2,'{\"title\":\"Request an Appointment\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"text\",\"id\":8,\"label\":\"First Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"First Name\",\"cssClass\":\"gf_left_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":9,\"label\":\"Last Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Last Name\",\"cssClass\":\"gf_right_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":4,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Phone\",\"cssClass\":\"gf_left_half\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"form_id\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":3,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Email\",\"cssClass\":\"gf_right_half\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"emailConfirmEnabled\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":10,\"label\":\"Preferred Day\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"choices\":[{\"text\":\"Monday\",\"value\":\"Monday\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Tuesday\",\"value\":\"Tuesday\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Wednesday\",\"value\":\"Wednesday\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Thursday\",\"value\":\"Thursday\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Friday\",\"value\":\"Friday\",\"isSelected\":false,\"price\":\"\"}],\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Please Select\",\"cssClass\":\"gf_left_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePrice\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"select\",\"id\":11,\"label\":\"Preferred Time\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"choices\":[{\"text\":\"Morning\",\"value\":\"Morning\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Afternoon\",\"value\":\"Afternoon\",\"isSelected\":false,\"price\":\"\"}],\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Please Select\",\"cssClass\":\"gf_right_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePrice\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"textarea\",\"id\":6,\"label\":\"Message\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Write your message\",\"cssClass\":\"\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"form_id\":\"\",\"useRichTextEditor\":false,\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"pageNumber\":1,\"displayOnly\":\"\"}],\"version\":\"2.2.6.5\",\"id\":2,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null}',NULL,'{\"596cca25792e2\":{\"id\":\"596cca25792e2\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"page\",\"message\":\"\",\"url\":\"\",\"pageId\":429,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}','{\"596cca2578e84\":{\"id\":\"596cca2578e84\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}');
/*!40000 ALTER TABLE `wp_gf_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_form_revisions`
--

DROP TABLE IF EXISTS `wp_gf_form_revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form_revisions` (
  `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL,
  `display_meta` longtext COLLATE utf8mb4_unicode_ci,
  `date_created` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form_revisions`
--

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

--
-- Table structure for table `wp_gf_form_view`
--

DROP TABLE IF EXISTS `wp_gf_form_view`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form_view` (
  `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` char(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `count` mediumint(10) unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB AUTO_INCREMENT=832 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form_view`
--

LOCK TABLES `wp_gf_form_view` WRITE;
/*!40000 ALTER TABLE `wp_gf_form_view` DISABLE KEYS */;
INSERT INTO `wp_gf_form_view` VALUES (1,1,'2017-07-19 19:17:57','65.126.81.234',17),(2,1,'2017-07-21 14:52:22','65.126.81.234',9),(3,1,'2017-07-24 14:58:38','65.126.81.234',28),(4,1,'2017-07-25 15:05:25','208.52.180.174',4),(5,1,'2017-07-31 15:56:03','65.126.81.234',1),(6,1,'2017-08-16 21:05:28','66.150.153.10',7),(7,1,'2017-08-18 19:27:42','66.150.153.10',6),(8,1,'2017-08-21 21:48:59','66.150.153.10',14),(9,1,'2017-08-23 18:19:47','54.209.231.248',25),(10,1,'2017-08-28 23:34:42','66.150.153.10',1),(11,1,'2017-08-31 21:10:01','66.150.153.10',18),(12,1,'2017-09-01 21:35:28','23.243.51.245',3),(13,1,'2017-09-05 15:40:59','66.150.153.10',3),(14,1,'2017-09-06 23:37:20','66.150.153.10',9),(15,1,'2017-09-07 23:54:31','66.150.153.10',2),(16,1,'2017-09-10 02:14:54','104.33.52.62',1),(17,1,'2017-09-11 04:29:58','35.188.33.103',1),(18,1,'2017-09-12 23:54:53','66.150.153.10',7),(19,1,'2017-09-14 03:36:39','',5),(20,1,'2017-09-17 15:01:45','',2),(21,1,'2017-09-19 16:29:21','',4),(22,1,'2017-09-20 18:41:28','',2),(23,1,'2017-09-21 19:18:03','',1),(24,1,'2017-09-27 04:53:26','',2),(25,1,'2017-09-28 17:28:22','',2),(26,1,'2017-09-29 21:16:40','',1),(27,1,'2017-10-02 20:51:14','',8),(28,1,'2017-10-03 22:15:05','',4),(29,1,'2017-10-04 22:46:31','',7),(30,1,'2017-10-05 22:55:22','',15),(31,1,'2017-10-06 23:55:24','',1),(32,1,'2017-10-08 00:55:30','',1),(33,1,'2017-10-09 01:55:28','',25),(34,1,'2017-10-10 02:55:29','',5),(35,1,'2017-10-11 03:55:27','',10),(36,1,'2017-10-12 04:55:26','',2),(37,1,'2017-10-13 05:55:36','',6),(38,1,'2017-10-14 06:55:26','',5),(39,1,'2017-10-15 07:55:27','',1),(40,1,'2017-10-16 08:55:34','',12),(41,1,'2017-10-17 09:55:31','',13),(42,1,'2017-10-18 10:55:27','',5),(43,1,'2017-10-19 11:55:37','',6),(44,1,'2017-10-20 12:55:41','',6),(45,1,'2017-10-21 13:55:28','',1),(46,1,'2017-10-22 14:55:28','',4),(47,1,'2017-10-23 15:55:37','',10),(48,1,'2017-10-24 16:55:24','',28),(49,1,'2017-10-25 17:43:34','',27),(50,1,'2017-10-26 18:19:32','',10),(51,1,'2017-10-27 19:55:25','',1),(52,1,'2017-10-28 20:55:24','',2),(53,1,'2017-10-29 21:55:27','',5),(54,1,'2017-10-30 22:55:26','',8),(55,1,'2017-10-31 23:55:28','',2),(56,1,'2017-11-02 00:55:25','',21),(57,1,'2017-11-03 01:55:48','',4),(58,1,'2017-11-04 02:55:35','',2),(59,1,'2017-11-05 03:55:24','',1),(60,1,'2017-11-06 04:55:26','',4),(61,1,'2017-11-07 05:55:36','',9),(62,1,'2017-11-08 06:55:32','',21),(63,1,'2017-11-09 07:55:33','',17),(64,1,'2017-11-10 08:55:26','',16),(65,1,'2017-11-11 09:55:33','',1),(66,1,'2017-11-12 10:55:36','',1),(67,1,'2017-11-13 11:55:41','',3),(68,1,'2017-11-14 12:55:32','',15),(69,1,'2017-11-15 13:55:45','',7),(70,1,'2017-11-16 14:26:53','',13),(71,1,'2017-11-17 15:55:30','',11),(72,1,'2017-11-18 16:55:26','',2),(73,1,'2017-11-19 17:55:28','',14),(74,1,'2017-11-20 18:24:10','',4),(75,1,'2017-11-21 19:55:40','',2),(76,1,'2017-11-22 20:34:23','',3),(77,1,'2017-11-23 21:55:28','',1),(78,1,'2017-11-24 22:55:40','',2),(79,1,'2017-11-25 23:55:29','',1),(80,1,'2017-11-27 00:55:38','',9),(81,1,'2017-11-28 20:38:12','',14),(82,1,'2017-11-29 20:42:54','',32),(83,1,'2017-12-01 16:06:44','',8),(84,1,'2017-12-04 14:24:33','',13),(85,1,'2017-12-05 15:17:47','',16),(86,1,'2017-12-06 18:03:14','',11),(87,1,'2017-12-07 18:18:08','',7),(88,1,'2017-12-11 16:23:00','',15),(89,1,'2017-12-12 17:47:57','',4),(90,1,'2017-12-13 18:18:11','',4),(91,1,'2017-12-15 19:15:38','',3),(92,1,'2017-12-19 23:07:01','',1),(93,1,'2017-12-22 08:56:10','',1),(94,1,'2018-01-04 22:02:38','',1),(95,1,'2018-01-06 00:25:08','',1),(96,1,'2018-01-23 18:53:20','',1),(97,1,'2018-02-06 22:23:36','',2),(98,1,'2018-02-27 22:45:09','',1),(99,1,'2018-03-01 23:32:13','',18),(100,1,'2018-03-05 14:45:09','',30),(101,1,'2018-03-06 15:27:52','',38),(102,1,'2018-03-12 22:03:24','',2),(103,1,'2018-03-16 17:46:40','',2),(104,1,'2018-03-19 15:25:03','',2),(105,1,'2018-03-27 19:26:11','',1),(106,1,'2018-03-28 20:04:41','',2),(107,1,'2018-04-09 18:59:28','',1),(108,1,'2018-04-26 14:50:45','',1),(109,1,'2018-05-22 14:53:37','',1),(110,1,'2018-05-31 22:06:45','',1),(111,1,'2018-06-07 23:27:15','',1),(112,1,'2018-06-20 21:45:54','',1),(113,1,'2018-06-26 23:59:15','',1),(114,1,'2018-06-28 23:04:41','',2),(115,1,'2018-07-20 01:00:34','',1),(116,1,'2018-08-16 17:16:09','',2),(117,1,'2018-08-27 15:42:56','',1),(118,1,'2018-09-06 21:31:00','',1),(119,1,'2018-09-11 00:55:45','',1),(120,1,'2018-09-18 20:30:27','',1),(121,1,'2018-10-15 22:07:06','',1),(122,1,'2018-10-30 22:03:40','',1),(123,1,'2018-11-05 16:30:55','',1),(124,1,'2018-11-15 15:54:57','',2),(125,1,'2018-11-16 16:30:13','',3),(126,1,'2018-11-21 18:23:58','',1),(127,1,'2018-12-04 14:24:57','',1),(128,1,'2018-12-06 21:07:44','',5),(129,1,'2018-12-14 04:27:48','',1),(130,1,'2018-12-20 21:23:46','',1),(131,1,'2019-01-02 14:46:01','',1),(132,1,'2019-01-07 22:17:02','',1),(133,1,'2019-01-08 23:19:49','',2),(134,1,'2019-01-15 19:57:24','',15),(135,1,'2019-01-16 20:31:26','',1),(136,1,'2019-01-31 17:08:17','',2),(137,1,'2019-02-11 18:51:20','',2),(138,1,'2019-02-15 17:48:40','',1),(139,1,'2019-02-19 17:02:58','',3),(140,1,'2019-02-27 00:55:18','',1),(141,1,'2019-03-05 13:24:04','',2),(142,1,'2019-03-08 19:58:17','',1),(143,1,'2019-04-10 16:39:37','',2),(144,1,'2019-04-16 12:04:42','',1),(145,1,'2019-04-18 15:27:18','',2),(146,1,'2019-04-19 18:12:59','',1),(147,1,'2019-04-24 18:33:21','',1),(148,1,'2019-04-29 20:15:25','',1),(149,1,'2019-05-02 19:23:45','',1),(150,1,'2019-05-13 00:48:17','',1),(151,1,'2019-05-17 06:25:41','',1),(152,1,'2019-05-31 12:46:11','',1),(153,1,'2019-06-07 12:15:31','',1),(154,1,'2019-06-13 21:18:02','',2),(155,1,'2019-06-24 19:27:25','',1),(156,1,'2019-07-15 15:04:38','',2),(157,1,'2019-08-07 18:27:20','',1),(158,1,'2019-08-09 16:46:47','',1),(159,1,'2019-08-12 18:27:57','',2),(160,1,'2019-09-19 15:58:09','',2),(161,1,'2019-10-02 14:21:40','',1),(162,1,'2019-10-14 18:41:00','',1),(163,1,'2019-10-18 22:24:37','',1),(164,1,'2019-10-31 21:28:26','',1),(165,1,'2019-11-06 00:03:53','',1),(166,1,'2019-12-05 23:51:18','',2),(167,1,'2019-12-10 13:22:34','',1),(168,1,'2019-12-11 22:41:26','',2),(169,1,'2019-12-23 14:17:06','',2),(170,1,'2019-12-26 20:14:51','',6),(171,1,'2020-01-21 03:15:29','',1),(172,1,'2020-01-22 23:22:30','',1),(173,1,'2020-02-04 17:00:15','',2),(174,1,'2020-02-25 17:45:51','',1),(175,1,'2020-03-10 14:48:26','',14),(176,1,'2020-03-11 15:08:39','',16),(177,1,'2020-03-12 16:49:26','',12),(178,1,'2020-03-13 17:05:04','',12),(179,1,'2020-03-14 17:49:15','',19),(180,1,'2020-03-16 00:55:46','',16),(181,1,'2020-03-17 01:50:04','',11),(182,1,'2020-03-18 03:25:28','',13),(183,1,'2020-03-19 04:09:56','',8),(184,1,'2020-03-20 05:06:42','',13),(185,1,'2020-03-21 16:07:38','',14),(186,1,'2020-03-22 20:36:23','',17),(187,1,'2020-03-23 21:11:40','',9),(188,1,'2020-03-24 22:37:01','',13),(189,1,'2020-03-26 02:00:33','',10),(190,1,'2020-03-27 05:37:46','',11),(191,1,'2020-03-28 16:09:47','',9),(192,1,'2020-03-29 20:57:54','',13),(193,1,'2020-03-30 22:58:06','',8),(194,1,'2020-04-01 03:42:35','',7),(195,1,'2020-04-02 08:47:37','',12),(196,1,'2020-04-03 09:57:50','',9),(197,1,'2020-04-04 13:55:45','',8),(198,1,'2020-04-05 17:19:10','',9),(199,1,'2020-04-06 18:07:08','',17),(200,1,'2020-04-08 01:58:31','',9),(201,1,'2020-04-09 12:26:33','',8),(202,1,'2020-04-10 13:44:46','',13),(203,1,'2020-04-11 20:29:32','',9),(204,1,'2020-04-13 05:57:17','',13),(205,1,'2020-04-14 12:19:40','',12),(206,1,'2020-04-15 17:56:54','',7),(207,1,'2020-04-16 19:04:41','',18),(208,1,'2020-04-17 20:15:04','',17),(209,1,'2020-04-18 23:17:36','',12),(210,1,'2020-04-20 08:26:11','',11),(211,1,'2020-04-21 11:31:10','',14),(212,1,'2020-04-22 14:09:28','',11),(213,1,'2020-04-23 17:21:56','',4),(214,1,'2020-04-24 17:49:16','',12),(215,1,'2020-04-25 19:46:55','',9),(216,1,'2020-04-26 20:38:56','',14),(217,1,'2020-04-27 22:11:30','',10),(218,1,'2020-04-28 22:15:53','',9),(219,1,'2020-04-30 02:32:58','',21),(220,1,'2020-05-01 05:43:58','',7),(221,1,'2020-05-02 07:52:57','',4),(222,1,'2020-05-03 10:11:12','',7),(223,1,'2020-05-04 11:53:19','',12),(224,1,'2020-05-05 12:25:52','',12),(225,1,'2020-05-06 16:14:02','',6),(226,1,'2020-05-07 20:40:16','',14),(227,1,'2020-05-08 21:09:29','',10),(228,1,'2020-05-09 21:56:43','',8),(229,1,'2020-05-10 22:27:37','',12),(230,1,'2020-05-12 01:05:50','',14),(231,1,'2020-05-13 02:22:35','',15),(232,1,'2020-05-14 04:52:53','',10),(233,1,'2020-05-15 05:13:22','',16),(234,1,'2020-05-16 07:47:34','',11),(235,1,'2020-05-17 10:02:56','',13),(236,1,'2020-05-18 10:33:27','',23),(237,1,'2020-05-19 12:22:51','',18),(238,1,'2020-05-20 12:33:20','',12),(239,1,'2020-05-21 12:38:49','',9),(240,1,'2020-05-22 15:17:52','',7),(241,1,'2020-05-23 15:32:10','',18),(242,1,'2020-05-24 15:50:57','',15),(243,1,'2020-05-25 17:05:50','',15),(244,1,'2020-05-26 19:51:05','',17),(245,1,'2020-05-27 20:45:01','',17),(246,1,'2020-05-28 22:20:53','',24),(247,1,'2020-05-29 23:28:33','',24),(248,1,'2020-05-31 00:21:36','',20),(249,1,'2020-06-01 02:38:08','',21),(250,1,'2020-06-02 04:16:52','',22),(251,1,'2020-06-03 04:32:16','',13),(252,1,'2020-06-04 09:45:17','',17),(253,1,'2020-06-05 11:19:32','',12),(254,1,'2020-06-06 12:11:03','',13),(255,1,'2020-06-07 14:16:32','',14),(256,1,'2020-06-08 15:23:22','',19),(257,1,'2020-06-09 16:00:26','',10),(258,1,'2020-06-10 16:28:53','',18),(259,1,'2020-06-11 18:54:29','',14),(260,1,'2020-06-12 21:20:05','',13),(261,1,'2020-06-13 22:40:02','',6),(262,1,'2020-06-15 03:25:06','',10),(263,1,'2020-06-16 06:13:26','',23),(264,1,'2020-06-17 08:52:26','',15),(265,1,'2020-06-18 11:04:32','',12),(266,1,'2020-06-19 11:52:22','',6),(267,1,'2020-06-20 15:19:12','',13),(268,1,'2020-06-21 16:01:41','',10),(269,1,'2020-06-22 16:13:35','',19),(270,1,'2020-06-23 17:20:33','',14),(271,1,'2020-06-24 19:00:58','',15),(272,1,'2020-06-25 20:03:47','',8),(273,1,'2020-06-27 00:34:22','',11),(274,1,'2020-06-28 01:51:28','',8),(275,1,'2020-06-29 02:44:40','',16),(276,1,'2020-06-30 03:12:17','',8),(277,1,'2020-07-01 03:28:07','',12),(278,1,'2020-07-02 03:54:22','',7),(279,1,'2020-07-03 06:47:21','',11),(280,1,'2020-07-04 10:04:52','',8),(281,1,'2020-07-05 10:45:03','',15),(282,1,'2020-07-06 10:46:41','',20),(283,1,'2020-07-07 12:37:04','',12),(284,1,'2020-07-08 14:27:53','',7),(285,1,'2020-07-09 15:30:47','',11),(286,1,'2020-07-10 16:27:58','',15),(287,1,'2020-07-11 18:02:18','',12),(288,1,'2020-07-12 18:54:28','',17),(289,1,'2020-07-13 21:06:26','',14),(290,1,'2020-07-14 22:39:42','',9),(291,1,'2020-07-16 00:29:50','',16),(292,1,'2020-07-17 01:18:04','',9),(293,1,'2020-07-18 03:26:18','',11),(294,1,'2020-07-19 05:42:46','',14),(295,1,'2020-07-20 07:09:20','',19),(296,1,'2020-07-21 07:17:28','',21),(297,1,'2020-07-22 08:07:05','',11),(298,1,'2020-07-23 12:16:53','',15),(299,1,'2020-07-24 14:58:16','',16),(300,1,'2020-07-25 19:05:58','',12),(301,1,'2020-07-26 19:56:20','',7),(302,1,'2020-07-28 00:27:35','',13),(303,1,'2020-07-29 01:02:42','',9),(304,1,'2020-07-30 01:49:34','',13),(305,1,'2020-07-31 02:27:13','',9),(306,1,'2020-08-01 04:24:33','',14),(307,1,'2020-08-02 06:10:56','',14),(308,1,'2020-08-03 16:20:16','',12),(309,1,'2020-08-04 17:42:23','',15),(310,1,'2020-08-05 19:04:40','',7),(311,1,'2020-08-06 20:31:51','',12),(312,1,'2020-08-07 20:50:03','',9),(313,1,'2020-08-08 23:26:47','',8),(314,1,'2020-08-09 23:50:26','',12),(315,1,'2020-08-11 00:08:45','',16),(316,1,'2020-08-12 00:34:14','',18),(317,1,'2020-08-13 01:35:16','',11),(318,1,'2020-08-14 01:40:18','',14),(319,1,'2020-08-15 03:04:49','',9),(320,1,'2020-08-16 04:40:46','',10),(321,1,'2020-08-17 09:20:00','',12),(322,1,'2020-08-18 10:43:44','',13),(323,1,'2020-08-19 10:56:08','',14),(324,1,'2020-08-20 12:55:00','',15),(325,1,'2020-08-21 13:20:49','',13),(326,1,'2020-08-22 14:57:00','',17),(327,1,'2020-08-23 15:08:10','',10),(328,1,'2020-08-24 19:52:11','',13),(329,1,'2020-08-25 19:52:13','',12),(330,1,'2020-08-26 20:28:04','',8),(331,1,'2020-08-27 21:34:45','',10),(332,1,'2020-08-29 00:39:44','',12),(333,1,'2020-08-30 01:01:57','',9),(334,1,'2020-08-31 01:35:19','',14),(335,1,'2020-09-01 02:04:05','',14),(336,1,'2020-09-02 08:48:42','',14),(337,1,'2020-09-03 09:21:45','',13),(338,1,'2020-09-04 10:27:12','',13),(339,1,'2020-09-05 11:23:44','',7),(340,1,'2020-09-06 11:41:12','',6),(341,1,'2020-09-07 15:25:15','',13),(342,1,'2020-09-08 17:23:18','',15),(343,1,'2020-09-09 17:40:51','',11),(344,1,'2020-09-10 20:05:59','',9),(345,1,'2020-09-12 03:34:17','',6),(346,1,'2020-09-13 07:20:08','',16),(347,1,'2020-09-14 07:47:41','',14),(348,1,'2020-09-15 07:51:43','',16),(349,1,'2020-09-16 10:08:07','',18),(350,1,'2020-09-17 16:05:10','',7),(351,1,'2020-09-18 16:52:30','',5),(352,1,'2020-09-19 22:40:10','',13),(353,1,'2020-09-20 22:52:48','',25),(354,1,'2020-09-21 22:59:53','',13),(355,1,'2020-09-23 00:02:51','',10),(356,1,'2020-09-24 03:07:21','',16),(357,1,'2020-09-25 06:54:00','',15),(358,1,'2020-09-26 07:13:59','',11),(359,1,'2020-09-27 07:51:19','',15),(360,1,'2020-09-28 08:26:07','',8),(361,1,'2020-09-29 09:35:09','',15),(362,1,'2020-09-30 11:23:04','',14),(363,1,'2020-10-01 13:19:38','',21),(364,1,'2020-10-02 14:22:15','',9),(365,1,'2020-10-03 15:13:33','',12),(366,1,'2020-10-04 18:55:13','',17),(367,1,'2020-10-05 19:35:34','',12),(368,1,'2020-10-06 20:02:23','',15),(369,1,'2020-10-07 22:05:46','',15),(370,1,'2020-10-08 22:27:18','',9),(371,1,'2020-10-10 04:57:10','',13),(372,1,'2020-10-11 11:35:05','',11),(373,1,'2020-10-12 11:56:17','',14),(374,1,'2020-10-13 13:50:26','',13),(375,1,'2020-10-14 16:36:50','',15),(376,1,'2020-10-15 17:42:53','',9),(377,1,'2020-10-16 20:24:36','',14),(378,1,'2020-10-18 05:55:41','',13),(379,1,'2020-10-19 10:29:49','',21),(380,1,'2020-10-20 10:40:49','',17),(381,1,'2020-10-21 12:15:05','',14),(382,1,'2020-10-22 13:33:12','',17),(383,1,'2020-10-23 15:38:43','',18),(384,1,'2020-10-24 15:49:10','',14),(385,1,'2020-10-25 17:57:32','',10),(386,1,'2020-10-26 22:53:01','',10),(387,1,'2020-10-28 06:51:13','',12),(388,1,'2020-10-29 07:29:38','',11),(389,1,'2020-10-30 09:28:58','',8),(390,1,'2020-10-31 11:52:32','',6),(391,1,'2020-11-01 13:09:58','',10),(392,1,'2020-11-02 15:49:08','',13),(393,1,'2020-11-03 19:42:33','',10),(394,1,'2020-11-04 21:44:37','',11),(395,1,'2020-11-05 23:37:00','',12),(396,1,'2020-11-07 02:15:29','',12),(397,1,'2020-11-08 02:59:49','',10),(398,1,'2020-11-09 03:10:26','',13),(399,1,'2020-11-10 03:30:15','',13),(400,1,'2020-11-11 04:11:28','',17),(401,1,'2020-11-12 04:20:41','',19),(402,1,'2020-11-13 06:40:32','',8),(403,1,'2020-11-14 08:13:25','',10),(404,1,'2020-11-15 08:52:25','',12),(405,1,'2020-11-16 10:35:55','',15),(406,1,'2020-11-17 14:19:47','',15),(407,1,'2020-11-18 14:20:25','',18),(408,1,'2020-11-19 17:31:35','',8),(409,1,'2020-11-20 18:54:21','',7),(410,1,'2020-11-21 23:12:05','',11),(411,1,'2020-11-23 00:22:03','',14),(412,1,'2020-11-24 01:45:50','',11),(413,1,'2020-11-25 03:54:54','',11),(414,1,'2020-11-26 04:07:07','',10),(415,1,'2020-11-27 06:07:49','',7),(416,1,'2020-11-28 09:59:13','',11),(417,1,'2020-11-29 12:32:46','',7),(418,1,'2020-11-30 13:50:21','',14),(419,1,'2020-12-01 14:24:09','',17),(420,1,'2020-12-02 15:00:12','',10),(421,1,'2020-12-03 17:18:38','',11),(422,1,'2020-12-04 17:27:46','',8),(423,1,'2020-12-05 18:58:57','',13),(424,1,'2020-12-07 07:18:16','',12),(425,1,'2020-12-08 09:33:20','',17),(426,1,'2020-12-09 09:42:52','',13),(427,1,'2020-12-10 10:33:32','',15),(428,1,'2020-12-11 11:48:59','',7),(429,1,'2020-12-12 15:38:45','',10),(430,1,'2020-12-13 18:11:54','',9),(431,1,'2020-12-14 18:17:42','',16),(432,1,'2020-12-15 19:15:37','',17),(433,1,'2020-12-16 23:44:48','',5),(434,1,'2020-12-17 23:50:25','',4),(435,1,'2020-12-19 01:08:18','',13),(436,1,'2020-12-20 06:06:05','',12),(437,1,'2020-12-21 09:40:26','',13),(438,1,'2020-12-22 10:14:11','',12),(439,1,'2020-12-23 13:37:30','',11),(440,1,'2020-12-24 14:12:47','',19),(441,1,'2020-12-25 16:11:48','',11),(442,1,'2020-12-26 18:06:27','',15),(443,1,'2020-12-27 19:38:29','',17),(444,1,'2020-12-28 21:37:18','',10),(445,1,'2020-12-29 23:31:49','',17),(446,1,'2020-12-30 23:51:39','',11),(447,1,'2021-01-01 00:06:27','',12),(448,1,'2021-01-02 00:20:23','',12),(449,1,'2021-01-03 04:42:45','',11),(450,1,'2021-01-04 07:38:43','',18),(451,1,'2021-01-05 12:10:52','',16),(452,1,'2021-01-06 14:32:18','',17),(453,1,'2021-01-07 14:35:41','',18),(454,1,'2021-01-08 16:15:00','',24),(455,1,'2021-01-09 17:38:52','',16),(456,1,'2021-01-11 01:22:01','',12),(457,1,'2021-01-12 02:03:51','',8),(458,1,'2021-01-13 03:09:00','',16),(459,1,'2021-01-14 03:48:14','',17),(460,1,'2021-01-15 04:22:34','',12),(461,1,'2021-01-16 06:16:53','',9),(462,1,'2021-01-17 12:37:50','',12),(463,1,'2021-01-18 14:04:05','',14),(464,1,'2021-01-19 18:15:40','',7),(465,1,'2021-01-20 19:41:38','',9),(466,1,'2021-01-21 21:20:41','',14),(467,1,'2021-01-22 22:22:06','',6),(468,1,'2021-01-23 23:20:05','',7),(469,1,'2021-01-25 03:29:08','',9),(470,1,'2021-01-26 06:22:37','',10),(471,1,'2021-01-27 06:51:12','',12),(472,1,'2021-01-28 07:25:41','',9),(473,1,'2021-01-29 11:13:44','',7),(474,1,'2021-01-30 11:58:33','',8),(475,1,'2021-01-31 12:39:24','',14),(476,1,'2021-02-01 14:01:39','',11),(477,1,'2021-02-02 16:06:53','',13),(478,1,'2021-02-03 16:25:28','',19),(479,1,'2021-02-04 16:35:41','',12),(480,1,'2021-02-05 17:15:02','',8),(481,1,'2021-02-06 18:31:29','',17),(482,1,'2021-02-07 19:25:38','',17),(483,1,'2021-02-08 19:30:27','',16),(484,1,'2021-02-09 19:30:36','',6),(485,1,'2021-02-10 20:05:00','',17),(486,1,'2021-02-11 20:18:00','',16),(487,1,'2021-02-12 20:36:16','',8),(488,1,'2021-02-13 21:04:16','',11),(489,1,'2021-02-14 21:10:07','',11),(490,1,'2021-02-15 22:10:06','',17),(491,1,'2021-02-17 00:30:58','',16),(492,1,'2021-02-18 02:06:22','',14),(493,1,'2021-02-19 02:45:14','',15),(494,1,'2021-02-20 06:04:33','',13),(495,1,'2021-02-21 12:52:14','',8),(496,1,'2021-02-22 14:38:09','',10),(497,1,'2021-02-23 17:10:47','',12),(498,1,'2021-02-24 18:42:48','',17),(499,1,'2021-02-25 19:49:01','',15),(500,1,'2021-02-26 20:59:25','',19),(501,1,'2021-02-27 22:16:26','',9),(502,1,'2021-02-28 23:06:23','',22),(503,1,'2021-03-01 23:46:09','',20),(504,1,'2021-03-02 23:59:55','',10),(505,1,'2021-03-04 01:54:53','',18),(506,1,'2021-03-05 03:57:18','',18),(507,1,'2021-03-06 15:49:52','',7),(508,1,'2021-03-07 18:03:18','',12),(509,1,'2021-03-08 20:45:19','',11),(510,1,'2021-03-10 05:43:11','',15),(511,1,'2021-03-11 06:16:43','',14),(512,1,'2021-03-12 08:06:19','',15),(513,1,'2021-03-13 08:43:01','',7),(514,1,'2021-03-14 09:32:39','',10),(515,1,'2021-03-15 11:22:10','',11),(516,1,'2021-03-16 11:31:05','',16),(517,1,'2021-03-17 12:09:30','',15),(518,1,'2021-03-18 13:24:50','',11),(519,1,'2021-03-19 14:04:40','',16),(520,1,'2021-03-20 14:43:27','',9),(521,1,'2021-03-21 18:03:50','',12),(522,1,'2021-03-22 19:57:01','',20),(523,1,'2021-03-23 21:48:03','',19),(524,1,'2021-03-24 21:56:35','',17),(525,1,'2021-03-26 00:09:50','',11),(526,1,'2021-03-27 00:46:39','',13),(527,1,'2021-03-28 01:04:34','',10),(528,1,'2021-03-29 02:34:21','',13),(529,1,'2021-03-30 04:24:12','',14),(530,1,'2021-03-31 09:03:44','',12),(531,1,'2021-04-01 10:13:58','',12),(532,1,'2021-04-02 11:10:12','',9),(533,1,'2021-04-03 11:50:44','',11),(534,1,'2021-04-04 12:15:08','',8),(535,1,'2021-04-05 12:45:52','',10),(536,1,'2021-04-06 17:23:38','',20),(537,1,'2021-04-07 21:18:56','',15),(538,1,'2021-04-09 01:11:06','',9),(539,1,'2021-04-10 01:18:26','',12),(540,1,'2021-04-11 01:40:13','',11),(541,1,'2021-04-12 02:01:30','',17),(542,1,'2021-04-13 02:44:05','',12),(543,1,'2021-04-14 03:13:55','',8),(544,1,'2021-04-15 03:59:41','',17),(545,1,'2021-04-16 06:14:30','',16),(546,1,'2021-04-17 06:55:33','',14),(547,1,'2021-04-18 07:41:53','',11),(548,1,'2021-04-19 09:02:25','',14),(549,1,'2021-04-20 09:07:12','',16),(550,1,'2021-04-21 11:52:11','',11),(551,1,'2021-04-22 12:44:30','',17),(552,1,'2021-04-23 12:54:35','',12),(553,1,'2021-04-24 14:01:17','',21),(554,1,'2021-04-25 16:00:37','',23),(555,1,'2021-04-26 16:13:13','',13),(556,1,'2021-04-27 16:58:51','',19),(557,1,'2021-04-28 18:23:00','',21),(558,1,'2021-04-29 19:11:37','',22),(559,1,'2021-04-30 19:23:53','',14),(560,1,'2021-05-01 21:34:02','',17),(561,1,'2021-05-02 23:10:30','',19),(562,1,'2021-05-04 00:28:47','',29),(563,1,'2021-05-05 00:30:48','',16),(564,1,'2021-05-06 01:47:55','',20),(565,1,'2021-05-07 02:43:47','',19),(566,1,'2021-05-08 04:07:57','',17),(567,1,'2021-05-09 06:33:43','',21),(568,1,'2021-05-10 10:53:29','',20),(569,1,'2021-05-11 12:03:13','',11),(570,1,'2021-05-12 12:37:09','',18),(571,1,'2021-05-13 15:42:42','',37),(572,1,'2021-05-14 15:52:55','',20),(573,1,'2021-05-15 16:03:06','',13),(574,1,'2021-05-16 17:34:24','',18),(575,1,'2021-05-17 18:23:31','',15),(576,1,'2021-05-18 19:59:04','',13),(577,1,'2021-05-19 20:18:14','',17),(578,1,'2021-05-20 20:30:18','',21),(579,1,'2021-05-21 21:02:03','',19),(580,1,'2021-05-22 21:39:42','',17),(581,1,'2021-05-23 21:43:39','',21),(582,1,'2021-05-24 22:17:25','',17),(583,1,'2021-05-25 23:08:12','',18),(584,1,'2021-05-26 23:46:34','',14),(585,1,'2021-05-28 03:55:59','',17),(586,1,'2021-05-29 04:16:26','',16),(587,1,'2021-05-30 09:00:58','',12),(588,1,'2021-05-31 13:01:49','',17),(589,1,'2021-06-01 13:39:41','',17),(590,1,'2021-06-02 13:40:38','',15),(591,1,'2021-06-03 20:58:33','',7),(592,1,'2021-06-05 01:25:53','',13),(593,1,'2021-06-06 02:35:45','',6),(594,1,'2021-06-07 04:00:38','',18),(595,1,'2021-06-08 04:37:37','',17),(596,1,'2021-06-09 06:01:58','',19),(597,1,'2021-06-10 07:06:43','',17),(598,1,'2021-06-11 10:40:45','',15),(599,1,'2021-06-12 10:48:03','',10),(600,1,'2021-06-13 11:16:05','',8),(601,1,'2021-06-14 14:17:14','',15),(602,1,'2021-06-15 16:27:30','',19),(603,1,'2021-06-16 17:50:05','',8),(604,1,'2021-06-17 18:13:46','',12),(605,1,'2021-06-18 19:25:25','',15),(606,1,'2021-06-19 21:14:52','',10),(607,1,'2021-06-20 22:07:38','',16),(608,1,'2021-06-21 23:49:24','',20),(609,1,'2021-06-22 23:52:39','',15),(610,1,'2021-06-24 00:22:46','',14),(611,1,'2021-06-25 01:37:49','',9),(612,1,'2021-06-26 04:29:50','',16),(613,1,'2021-06-27 07:24:31','',18),(614,1,'2021-06-28 08:04:41','',16),(615,1,'2021-06-29 09:18:01','',18),(616,1,'2021-06-30 10:33:21','',24),(617,1,'2021-07-01 10:51:23','',26),(618,1,'2021-07-02 12:06:32','',20),(619,1,'2021-07-03 12:21:43','',9),(620,1,'2021-07-04 13:07:03','',15),(621,1,'2021-07-05 13:43:43','',11),(622,1,'2021-07-06 14:13:49','',18),(623,1,'2021-07-07 15:20:09','',18),(624,1,'2021-07-08 16:11:12','',15),(625,1,'2021-07-09 18:18:31','',10),(626,1,'2021-07-10 19:07:20','',10),(627,1,'2021-07-11 21:31:16','',13),(628,1,'2021-07-12 22:07:42','',15),(629,1,'2021-07-14 00:08:33','',15),(630,1,'2021-07-15 03:35:50','',12),(631,1,'2021-07-16 04:17:07','',15),(632,1,'2021-07-17 04:32:03','',8),(633,1,'2021-07-18 05:30:49','',16),(634,1,'2021-07-19 07:07:23','',10),(635,1,'2021-07-20 08:47:51','',9),(636,1,'2021-07-21 10:08:46','',13),(637,1,'2021-07-22 11:05:55','',8),(638,1,'2021-07-23 16:10:10','',12),(639,1,'2021-07-24 17:37:58','',10),(640,1,'2021-07-25 18:24:18','',10),(641,1,'2021-07-26 18:40:00','',12),(642,1,'2021-07-27 20:52:31','',13),(643,1,'2021-07-29 04:38:48','',11),(644,1,'2021-07-30 05:00:23','',12),(645,1,'2021-07-31 11:29:57','',13),(646,1,'2021-08-01 12:25:50','',11),(647,1,'2021-08-02 12:28:21','',15),(648,1,'2021-08-03 12:29:26','',15),(649,1,'2021-08-04 12:59:32','',15),(650,1,'2021-08-05 14:06:50','',12),(651,1,'2021-08-06 17:32:07','',11),(652,1,'2021-08-07 17:46:00','',12),(653,1,'2021-08-08 20:54:03','',13),(654,1,'2021-08-09 21:39:18','',17),(655,1,'2021-08-10 21:50:16','',17),(656,1,'2021-08-11 23:02:44','',15),(657,1,'2021-08-13 00:22:22','',10),(658,1,'2021-08-14 03:13:50','',11),(659,1,'2021-08-15 03:44:34','',9),(660,1,'2021-08-16 06:29:18','',14),(661,1,'2021-08-17 10:21:46','',22),(662,1,'2021-08-18 12:34:56','',11),(663,1,'2021-08-19 13:02:07','',13),(664,1,'2021-08-20 13:53:06','',14),(665,1,'2021-08-21 20:40:03','',8),(666,1,'2021-08-22 21:27:39','',13),(667,1,'2021-08-23 23:20:03','',15),(668,1,'2021-08-24 23:21:06','',14),(669,1,'2021-08-26 02:44:53','',11),(670,1,'2021-08-27 04:46:50','',8),(671,1,'2021-08-28 07:01:48','',9),(672,1,'2021-08-29 12:27:58','',16),(673,1,'2021-08-30 12:28:06','',25),(674,1,'2021-08-31 16:53:34','',20),(675,1,'2021-09-01 17:59:11','',118),(676,1,'2021-09-02 18:01:53','',54),(677,1,'2021-09-03 18:17:06','',41),(678,1,'2021-09-04 19:29:43','',35),(679,1,'2021-09-05 19:46:57','',28),(680,1,'2021-09-06 20:42:03','',37),(681,1,'2021-09-07 22:25:28','',17),(682,1,'2021-09-08 23:12:21','',14),(683,1,'2021-09-10 00:20:34','',18),(684,1,'2021-09-11 06:20:10','',15),(685,1,'2021-09-12 09:24:14','',8),(686,1,'2021-09-13 10:55:58','',19),(687,1,'2021-09-14 14:03:24','',19),(688,1,'2021-09-15 14:14:28','',19),(689,1,'2021-09-16 21:06:23','',17),(690,1,'2021-09-17 21:06:42','',15),(691,1,'2021-09-18 21:58:19','',14),(692,1,'2021-09-19 22:26:01','',23),(693,1,'2021-09-20 23:56:18','',16),(694,1,'2021-09-22 00:17:32','',10),(695,1,'2021-09-23 02:08:25','',21),(696,1,'2021-09-24 05:04:01','',22),(697,1,'2021-09-25 06:46:07','',15),(698,1,'2021-09-26 10:44:42','',17),(699,1,'2021-09-27 11:30:17','',14),(700,1,'2021-09-28 15:50:51','',21),(701,1,'2021-09-29 16:09:43','',21),(702,1,'2021-09-30 20:12:08','',12),(703,1,'2021-10-01 20:29:04','',13),(704,1,'2021-10-03 00:13:54','',17),(705,1,'2021-10-04 02:38:29','',13),(706,1,'2021-10-05 03:11:37','',17),(707,1,'2021-10-06 04:42:01','',10),(708,1,'2021-10-07 06:51:27','',21),(709,1,'2021-10-08 07:17:11','',10),(710,1,'2021-10-09 12:01:00','',12),(711,1,'2021-10-10 12:06:33','',10),(712,1,'2021-10-11 14:39:40','',22),(713,1,'2021-10-12 15:18:54','',13),(714,1,'2021-10-13 16:40:05','',12),(715,1,'2021-10-14 17:12:38','',17),(716,1,'2021-10-15 17:18:10','',14),(717,1,'2021-10-16 17:47:50','',12),(718,1,'2021-10-18 02:18:10','',17),(719,1,'2021-10-19 03:17:52','',18),(720,1,'2021-10-20 05:24:09','',15),(721,1,'2021-10-21 08:48:16','',15),(722,1,'2021-10-22 10:43:44','',20),(723,1,'2021-10-23 18:39:59','',15),(724,1,'2021-10-25 02:35:48','',22),(725,1,'2021-10-26 03:39:05','',14),(726,1,'2021-10-27 04:29:52','',17),(727,1,'2021-10-28 07:22:12','',10),(728,1,'2021-10-29 08:57:57','',17),(729,1,'2021-10-30 11:00:53','',20),(730,1,'2021-10-31 17:08:15','',15),(731,1,'2021-11-01 19:40:35','',18),(732,1,'2021-11-02 20:03:33','',12),(733,1,'2021-11-03 20:09:13','',23),(734,1,'2021-11-04 22:07:38','',12),(735,1,'2021-11-05 23:10:47','',12),(736,1,'2021-11-07 03:32:49','',11),(737,1,'2021-11-08 04:19:45','',25),(738,1,'2021-11-09 10:20:14','',16),(739,1,'2021-11-10 10:49:43','',24),(740,1,'2021-11-11 11:09:10','',20),(741,1,'2021-11-12 12:14:12','',13),(742,1,'2021-11-13 15:24:06','',11),(743,1,'2021-11-14 16:10:42','',14),(744,1,'2021-11-15 17:01:54','',14),(745,1,'2021-11-16 17:27:25','',25),(746,1,'2021-11-17 17:59:07','',16),(747,1,'2021-11-18 18:01:43','',16),(748,1,'2021-11-19 18:10:30','',6),(749,1,'2021-11-20 19:13:08','',13),(750,1,'2021-11-21 21:41:55','',15),(751,1,'2021-11-22 22:08:18','',10),(752,1,'2021-11-23 22:57:17','',12),(753,1,'2021-11-24 23:14:34','',19),(754,1,'2021-11-26 01:49:53','',13),(755,1,'2021-11-27 04:41:19','',7),(756,1,'2021-11-28 04:49:52','',11),(757,1,'2021-11-29 12:56:58','',18),(758,1,'2021-11-30 13:53:57','',14),(759,1,'2021-12-01 14:42:26','',15),(760,1,'2021-12-02 15:58:20','',11),(761,1,'2021-12-03 16:23:34','',15),(762,1,'2021-12-04 17:03:26','',15),(763,1,'2021-12-05 23:51:41','',23),(764,1,'2021-12-07 00:52:25','',21),(765,1,'2021-12-08 02:03:03','',21),(766,1,'2021-12-09 02:37:35','',11),(767,1,'2021-12-10 03:50:27','',19),(768,1,'2021-12-11 04:00:48','',16),(769,1,'2021-12-12 09:01:42','',15),(770,1,'2021-12-13 10:21:59','',15),(771,1,'2021-12-14 12:33:00','',14),(772,1,'2021-12-15 14:42:42','',16),(773,1,'2021-12-16 15:30:44','',11),(774,1,'2021-12-17 15:50:17','',10),(775,1,'2021-12-18 19:22:17','',15),(776,1,'2021-12-19 21:29:36','',12),(777,1,'2021-12-20 21:39:59','',11),(778,1,'2021-12-21 22:56:55','',10),(779,1,'2021-12-23 04:28:56','',15),(780,1,'2021-12-24 07:16:02','',10),(781,1,'2021-12-25 10:06:28','',17),(782,1,'2021-12-26 10:42:34','',18),(783,1,'2021-12-27 11:18:07','',15),(784,1,'2021-12-28 14:31:47','',12),(785,1,'2021-12-29 15:17:48','',13),(786,1,'2021-12-30 18:13:22','',11),(787,1,'2021-12-31 18:38:03','',13),(788,1,'2022-01-01 22:41:06','',5),(789,1,'2022-01-03 00:29:52','',12),(790,1,'2022-01-04 01:51:05','',11),(791,1,'2022-01-05 03:52:59','',14),(792,1,'2022-01-06 06:59:33','',17),(793,1,'2022-01-07 09:34:41','',15),(794,1,'2022-01-08 09:43:32','',13),(795,1,'2022-01-09 09:48:03','',17),(796,1,'2022-01-10 11:57:04','',15),(797,1,'2022-01-11 12:43:30','',21),(798,1,'2022-01-12 14:10:26','',14),(799,1,'2022-01-13 14:35:03','',19),(800,1,'2022-01-14 14:59:39','',17),(801,1,'2022-01-15 15:11:06','',16),(802,1,'2022-01-16 15:39:39','',17),(803,1,'2022-01-17 16:57:49','',24),(804,1,'2022-01-18 17:01:31','',19),(805,1,'2022-01-19 17:21:15','',12),(806,1,'2022-01-20 17:36:11','',13),(807,1,'2022-01-21 19:20:29','',14),(808,1,'2022-01-22 20:12:42','',12),(809,1,'2022-01-23 22:24:14','',17),(810,1,'2022-01-25 00:27:26','',13),(811,1,'2022-01-26 00:45:51','',11),(812,1,'2022-01-27 00:48:29','',14),(813,1,'2022-01-28 01:54:47','',14),(814,1,'2022-01-29 02:03:25','',13),(815,1,'2022-01-30 02:05:11','',10),(816,1,'2022-01-31 03:56:51','',14),(817,1,'2022-02-01 07:22:32','',13),(818,1,'2022-02-02 09:38:46','',15),(819,1,'2022-02-03 13:41:39','',15),(820,1,'2022-02-04 13:50:52','',17),(821,1,'2022-02-05 16:06:47','',8),(822,1,'2022-02-06 18:08:13','',18),(823,1,'2022-02-07 18:37:30','',26),(824,1,'2022-02-09 00:15:20','',14),(825,1,'2022-02-10 01:52:20','',16),(826,1,'2022-02-11 01:59:11','',18),(827,1,'2022-02-12 02:01:46','',11),(828,1,'2022-02-13 06:27:19','',10),(829,1,'2022-02-14 08:47:56','',23),(830,1,'2022-02-15 10:08:38','',11),(831,1,'2022-02-16 10:15:30','',14);
/*!40000 ALTER TABLE `wp_gf_form_view` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_rest_api_keys`
--

DROP TABLE IF EXISTS `wp_gf_rest_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_rest_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_rest_api_keys`
--

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

--
-- Table structure for table `wp_links`
--

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

--
-- Dumping data for table `wp_links`
--

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

--
-- Table structure for table `wp_options`
--

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

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://dev-general-contractor-demo.pantheonsite.io/wp','yes'),(2,'home','http://dev-general-contractor-demo.pantheonsite.io/wp','yes'),(3,'blogname','Mann Plumbing &amp; Heating, LLC.','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','leeanne@mannplumbingandheating.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','closed','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/blog/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:13:{i:0;s:29:\"gravityforms/gravityforms.php\";i:1;s:44:\"wp-native-php-sessions/pantheon-sessions.php\";i:2;s:48:\"advanced-custom-fields-table-field/acf-table.php\";i:3;s:33:\"classic-editor/classic-editor.php\";i:4;s:33:\"duplicate-post/duplicate-post.php\";i:5;s:77:\"gravity-forms-wcag-20-form-fields/gravity_forms_wcag20_form_fields_plugin.php\";i:6;s:50:\"gravity-forms-zero-spam/gravityforms-zero-spam.php\";i:7;s:31:\"http-security/http-security.php\";i:8;s:61:\"pantheon-advanced-page-cache/pantheon-advanced-page-cache.php\";i:9;s:27:\"redirection/redirection.php\";i:10;s:24:\"wordpress-seo/wp-seo.php\";i:11;s:29:\"wp-saml-auth/wp-saml-auth.php\";i:12;s:23:\"wp-smushit/wp-smush.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','reach.parent','yes'),(41,'stylesheet','reach.service-out-slow','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','editor','yes'),(48,'db_version','49752','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','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','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','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:2:{i:1;a:0:{}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:2:{s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','5','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','547','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:2:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:63:{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:10:\"copy_posts\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:29:{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: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: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:13:\"publish_posts\";b:1;s:10:\"copy_posts\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"primary\";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:14:\"footer-sidebar\";a:3:{i:0;s:13:\"custom_html-3\";i:1;s:20:\"custom_text_widget-4\";i:2;s:10:\"nav_menu-3\";}s:24:\"footer-sidebar-secondary\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_nav_menu','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:1:{s:8:\"nav_menu\";i:3;}}','yes'),(107,'cron','a:11:{i:1645048929;a:1:{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:1645049204;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:1645087433;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:1645088917;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1645107850;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:1645108155;a:1:{s:17:\"gravityforms_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:1645116428;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:1645120464;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1645132123;a:1:{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;}}}i:1645289229;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(114,'auth_key','k@UCd!=MUH81F~%z=+4po(k>tr{u?Nf*[V^:W;o}ATO@Y~CPJEm~-gyA4Q0S-kUV','no'),(115,'auth_salt','ft7@]UvRwZmOx:T6uM)tf&vb;bYX5lD`r|udgg&+10^`8B?OP/*glhI/7IH-]qQ.','no'),(116,'logged_in_key','Slj:cB6T$du^^,q<(-YVg$Aag6],[Tn)CelDFM3i_,A3wWSTx)3yw;ux#0kq]qXc','no'),(117,'logged_in_salt','99$a.zWV4Y4#eE/1@+;k~=hvMcfTw/Ngg.W3}u71Zv+OMdX=u:&sdHPq*rE,dx>g','no'),(118,'nonce_key','UbOhW:Wb2-$iUFw~-npN;IWA#`m((s3,P#`r0qWqt}Nste$K>B^Y_5$.C+p^XVog','no'),(119,'nonce_salt','9A}{kKMxSE!lVT/h11L6B(@B+DBmUyy3[@QG;COW*Tz5u!4jJ5D9g68VVp;9a%Zg','no'),(136,'theme_mods_twentyseventeen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1500066540;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'),(137,'current_theme','Reach Local - Service Out Slow','yes'),(138,'theme_mods_reach.service-out-slow','a:3:{i:0;b:0;s:18:\"custom_css_post_id\";i:433;s:18:\"nav_menu_locations\";a:5:{s:7:\"primary\";i:2;s:14:\"footer-utility\";i:3;s:16:\"footer-auxiliary\";i:4;s:12:\"utility-left\";i:5;s:13:\"utility-right\";i:6;}}','yes'),(139,'theme_switched','','yes'),(140,'acf_version','5.8.7','yes'),(143,'options_design_style','material','no'),(144,'_options_design_style','field_591b563c5ad51','no'),(145,'options_logo','541','no'),(146,'_options_logo','field_591b563c5ad56','no'),(147,'options_primary_color','#1f1f1f','no'),(148,'_options_primary_color','field_591b6d8fe9a98','no'),(149,'options_secondary_color','#1f1f1f','no'),(150,'_options_secondary_color','field_591b6da7e9a99','no'),(151,'options_tertiary_color','#1f1f1f','no'),(152,'_options_tertiary_color','field_591b6dbce9a9a','no'),(153,'options_primary_font','Roboto','no'),(154,'_options_primary_font','field_591b7175dc7e9','no'),(155,'options_secondary_font','Roboto','no'),(156,'_options_secondary_font','field_591b7175dc7e8','no'),(157,'options_body_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#090301\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}','no'),(158,'_options_body_background','field_591b7175dc7e1','no'),(159,'options_header_layout','default','no'),(160,'_options_header_layout','field_554af23fg4b00','no'),(161,'options_navigation','a:4:{i:0;s:12:\"utility-left\";i:1;s:13:\"utility-right\";i:2;s:14:\"footer-utility\";i:3;s:16:\"footer-auxiliary\";}','no'),(162,'_options_navigation','field_554af23fg4b02','no'),(163,'options_header_utility_color','#d51d25','no'),(164,'_options_header_utility_color','field_554af23fg4b03','no'),(165,'options_header_color','#FFFFFF','no'),(166,'_options_header_color','field_554af23fg4b04','no'),(167,'options_footer_color','#000000','no'),(168,'_options_footer_color','field_554af23fg4b05','no'),(169,'options_header_call','0','no'),(170,'_options_header_call','field_554af23fg4b06','no'),(171,'options_email_address','','no'),(172,'_options_email_address','field_591b25234jf12','no'),(173,'options_phone_number','800-555-1111','no'),(174,'_options_phone_number','field_591b25234jf13','no'),(175,'options_address','','no'),(176,'_options_address','field_591b25234jf14','no'),(177,'options_facebook_url','','no'),(178,'_options_facebook_url','field_591b6da7e9b85','no'),(179,'options_twitter_url','','no'),(180,'_options_twitter_url','field_591b6da7e9b86','no'),(181,'options_instagram_url','','no'),(182,'_options_instagram_url','field_591b6da7e9b87','no'),(183,'options_youtube_url','','no'),(184,'_options_youtube_url','field_591b6da7e9b88','no'),(185,'options_page_modules_2','','no'),(186,'_options_page_modules_2','field_591b745d1375b2','no'),(206,'recently_activated','a:0:{}','yes'),(208,'options_page_modules_5','a:7:{i:0;s:0:\"\";i:1;s:26:\"hero-group_0yx3acydmccnw9z\";i:2;s:36:\"special-offers-group_285xgh2d32ffzt8\";i:3;s:34:\"content-area-group_chcf29yih8zz3j3\";i:4;s:30:\"services-group_zi794n2mdkggmlv\";i:5;s:29:\"gallery-group_jay33uzo882n74g\";i:6;s:34:\"testimonials-group_7omya7l9yrr0mu0\";}','no'),(209,'_options_page_modules_5','field_591b745d1375b5','no'),(212,'widget_gform_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(213,'gravityformsaddon_gravityformswebapi_version','1.0','yes'),(214,'gform_enable_background_updates','','yes'),(216,'gform_pending_installation','','yes'),(217,'rg_form_version','2.5.10.1','yes'),(225,'rg_gforms_enable_akismet','','yes'),(226,'rg_gforms_currency','USD','yes'),(227,'gform_enable_toolbar_menu','1','yes'),(234,'category_children','a:0:{}','yes'),(265,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(772,'reach_transient_keys','a:13:{i:0;s:36:\"page_5_section_hero-group_6733471009\";i:1;s:46:\"page_5_section_special-offers-group_5648120649\";i:2;s:44:\"page_5_section_content-area-group_8595715289\";i:3;s:44:\"page_5_section_list-columns-group_7917036256\";i:4;s:40:\"page_5_section_services-group_8793012011\";i:5;s:39:\"page_5_section_gallery-group_8938184568\";i:6;s:44:\"page_5_section_testimonials-group_4650140462\";i:7;s:46:\"page_126_section_content-area-group_7193915118\";i:8;s:42:\"page_126_section_services-group_8793012011\";i:9;s:39:\"page_126_section_staff-group_5223451980\";i:10;s:41:\"page_126_section_gallery-group_8938184568\";i:11;s:46:\"page_126_section_content-area-group_2188810851\";i:12;s:48:\"page_126_section_special-offers-group_5648120649\";}','yes'),(793,'gform_email_count','778','yes'),(826,'widget_custom_html','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:1205:\"<h5>[company-phone id=1]</h5>\r\n<a class=\"btn btn--dark\" href=\"/contact-us/\">Contact Us</a>\r\n<p></p>\r\n<ul>\r\n                    <li class=\"socials__item\">\r\n                <a href=\"https://www.facebook.com/Mann-Plumbing-Heating-581098151903463/?eid=ARBVghGkTVDyd4Url9E_nn8hLkWMfv_55ALby0T_YXUwud0h7S1i8pFCPjkum19OnB5xFSTakt4ndu2M\" title=\"facebook\" target=\"_blank\">\r\n                    <svg class=\"icon icon-facebook\" style=\"fill: #ffffff\">\r\n                        <title>facebook</title>\r\n                        <use xlink:href=\"#icon-facebook\"></use>\r\n                    </svg>\r\n                </a>\r\n            </li>\r\n <li class=\"socials__item\">\r\n                <a href=\"https://www.google.com/search?q=mann+plumbing+and+heating&rlz=1C1CHBF_enUS863US863&oq=mann+plumbing+and+heating&aqs=chrome..69i57j0l7.4945j0j8&sourceid=chrome&ie=UTF-8#lrd=0x89c9a1bbae80bfbd:0x3850750a850579f0,1,,,\" title=\"google\" target=\"_blank\">\r\n                    <svg class=\"icon icon-google\" style=\"fill: #ffffff\">\r\n                        <title>google</title>\r\n                        <use xlink:href=\"#icon-google\"></use>\r\n                    </svg>\r\n                </a>\r\n            </li>\r\n                    </ul>\";}}','yes'),(829,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1645045724;s:8:\"response\";a:24:{s:48:\"advanced-custom-fields-table-field/acf-table.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:48:\"w.org/plugins/advanced-custom-fields-table-field\";s:4:\"slug\";s:34:\"advanced-custom-fields-table-field\";s:6:\"plugin\";s:48:\"advanced-custom-fields-table-field/acf-table.php\";s:11:\"new_version\";s:6:\"1.3.14\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/advanced-custom-fields-table-field/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/advanced-custom-fields-table-field.1.3.14.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/advanced-custom-fields-table-field/assets/icon-256x256.png?rev=1962986\";s:2:\"1x\";s:87:\"https://ps.w.org/advanced-custom-fields-table-field/assets/icon-128x128.png?rev=1962986\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:89:\"https://ps.w.org/advanced-custom-fields-table-field/assets/banner-772x250.png?rev=1962986\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"5.7.5\";s:12:\"requires_php\";s:3:\"5.6\";}s:21:\"age-gate/age-gate.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:22:\"w.org/plugins/age-gate\";s:4:\"slug\";s:8:\"age-gate\";s:6:\"plugin\";s:21:\"age-gate/age-gate.php\";s:11:\"new_version\";s:6:\"2.20.0\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/age-gate/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/age-gate.2.20.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/age-gate/assets/icon-256x256.png?rev=1864372\";s:2:\"1x\";s:61:\"https://ps.w.org/age-gate/assets/icon-256x256.png?rev=1864372\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/age-gate/assets/banner-772x250.png?rev=1864372\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"5.0.0\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:51:\"bookly-responsive-appointment-booking-tool/main.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:56:\"w.org/plugins/bookly-responsive-appointment-booking-tool\";s:4:\"slug\";s:42:\"bookly-responsive-appointment-booking-tool\";s:6:\"plugin\";s:51:\"bookly-responsive-appointment-booking-tool/main.php\";s:11:\"new_version\";s:4:\"20.6\";s:3:\"url\";s:73:\"https://wordpress.org/plugins/bookly-responsive-appointment-booking-tool/\";s:7:\"package\";s:90:\"https://downloads.wordpress.org/plugin/bookly-responsive-appointment-booking-tool.20.6.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:95:\"https://ps.w.org/bookly-responsive-appointment-booking-tool/assets/icon-128x128.png?rev=1005009\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:98:\"https://ps.w.org/bookly-responsive-appointment-booking-tool/assets/banner-1544x500.png?rev=1726755\";s:2:\"1x\";s:97:\"https://ps.w.org/bookly-responsive-appointment-booking-tool/assets/banner-772x250.png?rev=1726755\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.7\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:5:\"5.3.7\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"5.8.3\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:31:\"code-snippets/code-snippets.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/code-snippets\";s:4:\"slug\";s:13:\"code-snippets\";s:6:\"plugin\";s:31:\"code-snippets/code-snippets.php\";s:11:\"new_version\";s:6:\"2.14.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/code-snippets/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/code-snippets.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878\";s:3:\"svg\";s:58:\"https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/code-snippets/assets/banner-1544x500.png?rev=2260997\";s:2:\"1x\";s:68:\"https://ps.w.org/code-snippets/assets/banner-772x250.png?rev=2256244\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.6\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.2\";}s:78:\"gravity-forms-google-analytics-event-tracking/gravity-forms-event-tracking.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:59:\"w.org/plugins/gravity-forms-google-analytics-event-tracking\";s:4:\"slug\";s:45:\"gravity-forms-google-analytics-event-tracking\";s:6:\"plugin\";s:78:\"gravity-forms-google-analytics-event-tracking/gravity-forms-event-tracking.php\";s:11:\"new_version\";s:6:\"2.4.11\";s:3:\"url\";s:76:\"https://wordpress.org/plugins/gravity-forms-google-analytics-event-tracking/\";s:7:\"package\";s:95:\"https://downloads.wordpress.org/plugin/gravity-forms-google-analytics-event-tracking.2.4.11.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:98:\"https://ps.w.org/gravity-forms-google-analytics-event-tracking/assets/icon-256x256.png?rev=2524751\";s:2:\"1x\";s:98:\"https://ps.w.org/gravity-forms-google-analytics-event-tracking/assets/icon-128x128.png?rev=2524751\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:101:\"https://ps.w.org/gravity-forms-google-analytics-event-tracking/assets/banner-1544x500.png?rev=2524750\";s:2:\"1x\";s:100:\"https://ps.w.org/gravity-forms-google-analytics-event-tracking/assets/banner-772x250.png?rev=2524750\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";s:14:\"upgrade_notice\";s:108:\"<p>Tested with WP 5.9, Gravity Forms 2.6. Try out the official Google Analytics beta from Gravity Forms.</p>\";}s:50:\"gravity-forms-zero-spam/gravityforms-zero-spam.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/gravity-forms-zero-spam\";s:4:\"slug\";s:23:\"gravity-forms-zero-spam\";s:6:\"plugin\";s:50:\"gravity-forms-zero-spam/gravityforms-zero-spam.php\";s:11:\"new_version\";s:5:\"1.2.1\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/gravity-forms-zero-spam/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/gravity-forms-zero-spam.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/gravity-forms-zero-spam/assets/icon-256x256.png?rev=2475934\";s:2:\"1x\";s:76:\"https://ps.w.org/gravity-forms-zero-spam/assets/icon-128x128.png?rev=2475934\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/gravity-forms-zero-spam/assets/banner-1544x500.png?rev=2475934\";s:2:\"1x\";s:78:\"https://ps.w.org/gravity-forms-zero-spam/assets/banner-772x250.png?rev=2475934\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/gravity-forms-zero-spam/assets/banner-1544x500-rtl.png?rev=2475934\";s:2:\"1x\";s:82:\"https://ps.w.org/gravity-forms-zero-spam/assets/banner-772x250-rtl.png?rev=2475934\";}s:8:\"requires\";s:5:\"3.0.1\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:5:\"5.2.6\";}s:43:\"idx-broker-platinum/idx-broker-platinum.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:33:\"w.org/plugins/idx-broker-platinum\";s:4:\"slug\";s:19:\"idx-broker-platinum\";s:6:\"plugin\";s:43:\"idx-broker-platinum/idx-broker-platinum.php\";s:11:\"new_version\";s:5:\"3.0.8\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/idx-broker-platinum/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/idx-broker-platinum.3.0.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/idx-broker-platinum/assets/icon-256x256.png?rev=985675\";s:2:\"1x\";s:71:\"https://ps.w.org/idx-broker-platinum/assets/icon-128x128.png?rev=985675\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/idx-broker-platinum/assets/banner-1544x500.png?rev=1686479\";s:2:\"1x\";s:74:\"https://ps.w.org/idx-broker-platinum/assets/banner-772x250.png?rev=1686479\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"5.8.3\";s:12:\"requires_php\";s:3:\"7.0\";}s:44:\"wp-native-php-sessions/pantheon-sessions.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:36:\"w.org/plugins/wp-native-php-sessions\";s:4:\"slug\";s:22:\"wp-native-php-sessions\";s:6:\"plugin\";s:44:\"wp-native-php-sessions/pantheon-sessions.php\";s:11:\"new_version\";s:5:\"1.2.4\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/wp-native-php-sessions/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/wp-native-php-sessions.1.2.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/wp-native-php-sessions/assets/icon-256x256.png?rev=2252963\";s:2:\"1x\";s:75:\"https://ps.w.org/wp-native-php-sessions/assets/icon-128x128.png?rev=2252963\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/wp-native-php-sessions/assets/banner-1544x500.png?rev=2252963\";s:2:\"1x\";s:77:\"https://ps.w.org/wp-native-php-sessions/assets/banner-772x250.png?rev=2252963\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.4\";}s:61:\"pantheon-advanced-page-cache/pantheon-advanced-page-cache.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:42:\"w.org/plugins/pantheon-advanced-page-cache\";s:4:\"slug\";s:28:\"pantheon-advanced-page-cache\";s:6:\"plugin\";s:61:\"pantheon-advanced-page-cache/pantheon-advanced-page-cache.php\";s:11:\"new_version\";s:5:\"1.0.0\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/pantheon-advanced-page-cache/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/pantheon-advanced-page-cache.1.0.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/pantheon-advanced-page-cache/assets/icon-256x256.png?rev=2252946\";s:2:\"1x\";s:81:\"https://ps.w.org/pantheon-advanced-page-cache/assets/icon-128x128.png?rev=2252946\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/pantheon-advanced-page-cache/assets/banner-1544x500.png?rev=2252946\";s:2:\"1x\";s:83:\"https://ps.w.org/pantheon-advanced-page-cache/assets/banner-772x250.png?rev=2252946\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";b:0;}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:5:\"5.2.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/redirection.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:33:\"instagram-feed/instagram-feed.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/instagram-feed\";s:4:\"slug\";s:14:\"instagram-feed\";s:6:\"plugin\";s:33:\"instagram-feed/instagram-feed.php\";s:11:\"new_version\";s:5:\"6.0.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/instagram-feed/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/instagram-feed.6.0.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/instagram-feed/assets/icon-128x128.png?rev=2137676\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/instagram-feed/assets/banner-1544x500.png?rev=2679382\";s:2:\"1x\";s:69:\"https://ps.w.org/instagram-feed/assets/banner-772x250.png?rev=2679382\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.1\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";b:0;}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:5:\"3.9.5\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wp-smushit.3.9.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.gif?rev=2633223\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.gif?rev=2633223\";}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:\"5.9\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:48:\"styler-for-gravity-forms/gravityforms-styler.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:38:\"w.org/plugins/styler-for-gravity-forms\";s:4:\"slug\";s:24:\"styler-for-gravity-forms\";s:6:\"plugin\";s:48:\"styler-for-gravity-forms/gravityforms-styler.php\";s:11:\"new_version\";s:5:\"1.2.0\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/styler-for-gravity-forms/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/styler-for-gravity-forms.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/styler-for-gravity-forms/assets/icon-256x256.png?rev=1918165\";s:2:\"1x\";s:77:\"https://ps.w.org/styler-for-gravity-forms/assets/icon-128x128.png?rev=1918165\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/styler-for-gravity-forms/assets/banner-772x250.png?rev=1918165\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:6:\"5.2.14\";s:12:\"requires_php\";b:0;}s:22:\"ultimate-faqs/Main.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/ultimate-faqs\";s:4:\"slug\";s:13:\"ultimate-faqs\";s:6:\"plugin\";s:22:\"ultimate-faqs/Main.php\";s:11:\"new_version\";s:5:\"2.1.9\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/ultimate-faqs/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/ultimate-faqs.2.1.9.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/ultimate-faqs/assets/icon-128x128.png?rev=1803957\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/ultimate-faqs/assets/banner-772x250.png?rev=1805913\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";b:0;}s:33:\"user-switching/user-switching.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/user-switching\";s:4:\"slug\";s:14:\"user-switching\";s:6:\"plugin\";s:33:\"user-switching/user-switching.php\";s:11:\"new_version\";s:5:\"1.5.8\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/user-switching/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/user-switching.1.5.8.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/user-switching/assets/icon-256x256.png?rev=2204931\";s:2:\"1x\";s:59:\"https://ps.w.org/user-switching/assets/icon.svg?rev=2032062\";s:3:\"svg\";s:59:\"https://ps.w.org/user-switching/assets/icon.svg?rev=2032062\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/user-switching/assets/banner-1544x500.png?rev=2204929\";s:2:\"1x\";s:69:\"https://ps.w.org/user-switching/assets/banner-772x250.png?rev=2204929\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.7\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.3\";}s:77:\"gravity-forms-wcag-20-form-fields/gravity_forms_wcag20_form_fields_plugin.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:47:\"w.org/plugins/gravity-forms-wcag-20-form-fields\";s:4:\"slug\";s:33:\"gravity-forms-wcag-20-form-fields\";s:6:\"plugin\";s:77:\"gravity-forms-wcag-20-form-fields/gravity_forms_wcag20_form_fields_plugin.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/gravity-forms-wcag-20-form-fields/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/gravity-forms-wcag-20-form-fields.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:86:\"https://ps.w.org/gravity-forms-wcag-20-form-fields/assets/icon-128x128.png?rev=1734679\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:88:\"https://ps.w.org/gravity-forms-wcag-20-form-fields/assets/banner-772x250.png?rev=1734686\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:6:\"5.1.12\";s:12:\"requires_php\";b:0;}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"6.2.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"7.0\";}s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:57:\"w.org/plugins/woocommerce-gateway-paypal-express-checkout\";s:4:\"slug\";s:43:\"woocommerce-gateway-paypal-express-checkout\";s:6:\"plugin\";s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";s:11:\"new_version\";s:5:\"2.1.3\";s:3:\"url\";s:74:\"https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/\";s:7:\"package\";s:92:\"https://downloads.wordpress.org/plugin/woocommerce-gateway-paypal-express-checkout.2.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:96:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/icon-256x256.png?rev=2423949\";s:2:\"1x\";s:96:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/icon-128x128.png?rev=2423949\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:99:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/banner-1544x500.png?rev=2423949\";s:2:\"1x\";s:98:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/banner-772x250.png?rev=2423949\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"5.8.3\";s:12:\"requires_php\";s:3:\"5.5\";}s:29:\"wp-saml-auth/wp-saml-auth.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wp-saml-auth\";s:4:\"slug\";s:12:\"wp-saml-auth\";s:6:\"plugin\";s:29:\"wp-saml-auth/wp-saml-auth.php\";s:11:\"new_version\";s:5:\"2.0.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-saml-auth/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-saml-auth.2.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-saml-auth/assets/icon-256x256.png?rev=2252994\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-saml-auth/assets/icon-128x128.png?rev=2252994\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-saml-auth/assets/banner-1544x500.png?rev=2252994\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-saml-auth/assets/banner-772x250.png?rev=2252994\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"7.3\";}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-post\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:3:\"4.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/duplicate-post.4.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=2336666\";s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=2336666\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/duplicate-post/assets/banner-1544x500.png?rev=2336666\";s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=2336666\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:29:\"wordpress-seo-14-5/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:29:\"wordpress-seo-14-5/wp-seo.php\";s:11:\"new_version\";s:4:\"18.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2643727\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:31:\"wordpress-seo-11-1-1/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:31:\"wordpress-seo-11-1-1/wp-seo.php\";s:11:\"new_version\";s:4:\"18.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2643727\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"18.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2643727\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:6:\"5.6.20\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:39:\"reachedge/reachedge-tracking-plugin.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/reachedge\";s:4:\"slug\";s:9:\"reachedge\";s:6:\"plugin\";s:39:\"reachedge/reachedge-tracking-plugin.php\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/reachedge/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/reachedge.1.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:62:\"https://ps.w.org/reachedge/assets/icon-128x128.png?rev=1342587\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:64:\"https://ps.w.org/reachedge/assets/banner-772x250.png?rev=1342594\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"2.7\";}s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:48:\"w.org/plugins/sendgrid-email-delivery-simplified\";s:4:\"slug\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"plugin\";s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";s:11:\"new_version\";s:6:\"1.11.8\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/sendgrid-email-delivery-simplified/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/sendgrid-email-delivery-simplified.1.11.9.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:85:\"https://s.w.org/plugins/geopattern-icon/sendgrid-email-delivery-simplified_264460.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:33:\"addthis/addthis_social_widget.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/addthis\";s:4:\"slug\";s:7:\"addthis\";s:6:\"plugin\";s:33:\"addthis/addthis_social_widget.php\";s:11:\"new_version\";s:5:\"6.2.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/addthis/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/addthis.6.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/addthis/assets/icon-256x256.png?rev=1223867\";s:2:\"1x\";s:60:\"https://ps.w.org/addthis/assets/icon-128x128.png?rev=1223867\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/addthis/assets/banner-1544x500.png?rev=1499004\";s:2:\"1x\";s:62:\"https://ps.w.org/addthis/assets/banner-772x250.png?rev=1499004\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}}s:7:\"checked\";a:53:{s:48:\"advanced-custom-fields-table-field/acf-table.php\";s:5:\"1.3.9\";s:21:\"age-gate/age-gate.php\";s:6:\"2.18.4\";s:51:\"bookly-responsive-appointment-booking-tool/main.php\";s:4:\"17.2\";s:28:\"bookly-rl-cache/no-cache.php\";s:3:\"0.2\";s:46:\"bookly-addon-advanced-google-calendar/main.php\";s:3:\"1.4\";s:35:\"bookly-addon-authorize-net/main.php\";s:3:\"1.7\";s:38:\"bookly-addon-customer-cabinet/main.php\";s:3:\"2.0\";s:35:\"bookly-addon-custom-fields/main.php\";s:3:\"1.6\";s:38:\"bookly-addon-deposit-payments/main.php\";s:3:\"2.4\";s:38:\"bookly-addon-outlook-calendar/main.php\";s:3:\"1.0\";s:46:\"bookly-addon-paypal-payments-standard/main.php\";s:3:\"2.0\";s:25:\"bookly-addon-pro/main.php\";s:3:\"1.7\";s:35:\"bookly-addon-staff-cabinet/main.php\";s:3:\"2.2\";s:28:\"bookly-addon-stripe/main.php\";s:3:\"1.8\";s:27:\"bookly-addon-taxes/main.php\";s:3:\"1.6\";s:33:\"classic-editor/classic-editor.php\";s:3:\"1.6\";s:31:\"code-snippets/code-snippets.php\";s:6:\"2.14.0\";s:49:\"complianz-gdpr-premium/complianz-gpdr-premium.php\";s:5:\"4.6.1\";s:29:\"gravityforms/gravityforms.php\";s:8:\"2.5.10.1\";s:71:\"reachsites-gravityforms-reachedge/reachsites-gravityforms-reachedge.php\";s:3:\"0.1\";s:41:\"gravityformsauthorizenet/authorizenet.php\";s:3:\"2.6\";s:78:\"gravity-forms-google-analytics-event-tracking/gravity-forms-event-tracking.php\";s:6:\"2.4.10\";s:51:\"gravityformspaypalpaymentspro/paypalpaymentspro.php\";s:5:\"2.3.3\";s:29:\"gravityformssquare/square.php\";s:3:\"1.2\";s:29:\"gravityformsstripe/stripe.php\";s:7:\"2.6.0.5\";s:50:\"gravity-forms-zero-spam/gravityforms-zero-spam.php\";s:5:\"1.0.4\";s:31:\"http-security/http-security.php\";s:5:\"2.4.1\";s:43:\"idx-broker-platinum/idx-broker-platinum.php\";s:5:\"2.6.7\";s:39:\"reachedge/reachedge-tracking-plugin.php\";s:3:\"1.5\";s:44:\"wp-native-php-sessions/pantheon-sessions.php\";s:5:\"0.7.0\";s:61:\"pantheon-advanced-page-cache/pantheon-advanced-page-cache.php\";s:5:\"0.1.5\";s:63:\"reachsites-gravityforms-editor-cap/reachsites-capapbilities.php\";s:3:\"0.1\";s:53:\"reachsites-audit-modules/reachsites-audit-modules.php\";s:5:\"1.0.0\";s:27:\"redirection/redirection.php\";s:5:\"4.4.2\";s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";s:6:\"1.11.8\";s:33:\"addthis/addthis_social_widget.php\";s:5:\"6.2.6\";s:33:\"instagram-feed/instagram-feed.php\";s:5:\"2.8.2\";s:23:\"wp-smushit/wp-smush.php\";s:7:\"2.7.9.1\";s:48:\"styler-for-gravity-forms/gravityforms-styler.php\";s:5:\"1.0.1\";s:21:\"ubermenu/ubermenu.php\";s:5:\"3.7.3\";s:22:\"ultimate-faqs/Main.php\";s:6:\"1.9.12\";s:33:\"user-switching/user-switching.php\";s:5:\"1.0.9\";s:77:\"gravity-forms-wcag-20-form-fields/gravity_forms_wcag20_form_fields_plugin.php\";s:5:\"1.6.0\";s:27:\"woocommerce/woocommerce.php\";s:5:\"3.3.5\";s:45:\"woocommerce-bookings/woocommerce-bookings.php\";s:6:\"1.11.0\";s:71:\"woocommerce-checkout-field-editor/woocommerce-checkout-field-editor.php\";s:6:\"1.5.12\";s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";s:5:\"1.5.3\";s:39:\"wp-all-import-pro/wp-all-import-pro.php\";s:5:\"4.5.4\";s:29:\"wp-saml-auth/wp-saml-auth.php\";s:6:\"0.3.11\";s:33:\"duplicate-post/duplicate-post.php\";s:5:\"4.1.1\";s:29:\"wordpress-seo-14-5/wp-seo.php\";s:4:\"14.5\";s:31:\"wordpress-seo-11-1-1/wp-seo.php\";s:6:\"11.1.1\";s:24:\"wordpress-seo/wp-seo.php\";s:6:\"14.0.4\";}}','no'),(832,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1645045724;s:7:\"checked\";a:13:{s:27:\"reach.bookings-reservations\";s:5:\"1.0.0\";s:11:\"reach.child\";s:5:\"1.0.0\";s:30:\"reach.information-registration\";s:5:\"1.0.0\";s:12:\"reach.parent\";s:4:\"2.11\";s:18:\"reach.retail-large\";s:5:\"1.0.0\";s:18:\"reach.retail-small\";s:5:\"1.0.0\";s:22:\"reach.service-in-quick\";s:5:\"1.0.0\";s:21:\"reach.service-in-slow\";s:5:\"1.0.0\";s:30:\"reach.service-item-combo-quick\";s:5:\"1.0.0\";s:29:\"reach.service-item-combo-slow\";s:5:\"1.0.0\";s:25:\"reach.service-online-slow\";s:5:\"1.0.0\";s:23:\"reach.service-out-quick\";s:5:\"1.0.0\";s:22:\"reach.service-out-slow\";s:5:\"1.0.0\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(863,'pantheon_session_version','0.6.2','yes'),(889,'options_mobile_color','#FFFFFF','no'),(890,'_options_mobile_color','field_554af23fg4b99','no'),(891,'options_back_to_top','1','no'),(892,'_options_back_to_top','field_554af23024b66','no'),(893,'options_page_modules_205','a:3:{i:0;s:0:\"\";i:1;s:34:\"contact-info-group_rnimyv52b1l53jv\";i:2;s:26:\"form-group_69kihebviq0vjyc\";}','no'),(894,'_options_page_modules_205','field_591b745d1375b205','no'),(1224,'options_page_modules_288','a:1:{i:0;s:0:\"\";}','no'),(1225,'_options_page_modules_288','field_591b745d1375b288','no'),(1383,'gf_is_upgrading','0','yes'),(1384,'gf_previous_db_version','2.4.2','yes'),(1385,'rg_gforms_message','<!--GFM--><!-- unregistered copy notice -->\r\n<div style=\\\"margin:16px 0 16px 0; border-left:4px solid #AB0400; background-color:#FAFAFA; text-align:center; display:block!important; visibility: visible!important; min-width:880px; box-sizing: border-box;-webkit-box-shadow: 0px 4px 3px 0px rgba(0,0,0,0.05);-moz-box-shadow: 0px 4px 3px 0px rgba(0,0,0,0.05); box-shadow: 0px 4px 3px 0px rgba(0,0,0,0.05);\\\"><a href=\\\"http://www.gravityforms.com/pricing/?utm_source=invalid-key&utm_medium=gf-banner\\\" target=\\\"_blank\\\" style=\\\"width:880px; height:90px;\\\"><img src=\\\"https://gravityforms.s3.amazonaws.com/banners/gravity-forms-unregistered.svg\\\" width=\\\"880\\\" height=\\\"90\\\" alt=\\\"Unlicensed Plugin. Please purchase a Gravity Forms license\\\" title=\\\"Unlicensed Plugin\\\" /></a></div>\r\n<!-- end notice -->','yes'),(1432,'options_footer_logo','488','no'),(1433,'_options_footer_logo','field_554af23024b87','no'),(1434,'options_google_api_key','','no'),(1435,'_options_google_api_key','field_1244817397d6','no'),(1436,'options_custom_css','/* Mandatory Fixes */\r\n.header__call-icon { opacity: 1; width: 50px; }\r\n.header__call .icon { display: block; }\r\n.entry__content ul, .entry__content ol, .content-area--image-left .entry__content ul, .content-area--image-right .entry__content ul { margin-bottom: 0px; }\r\n.gallery__button.gallery__button--dark { text-align: center; }\r\n.ginput_container_fileupload .validation_message { display: none; }\r\n.module__image { max-width: none!important; }\r\n.list-columns { align-items: flex-start; justify-content: center; }\r\n.staff { justify-content: center!important; }\r\ntable, table * { border: 0px!important; }\r\ntable ul { margin-left: 0px!important; }\r\na { text-decoration: none!important; }\r\n@media (min-width: 767px){\r\n.content-area--image-right .entry__content, .content-area--image-right .content-area__button { padding-right: 15px!important; }\r\n.content-area--image-left .entry__content, .content-area--image-left .content-area__button { padding-left: 15px!important; }\r\n}\r\n@media (max-width: 768px){\r\n.content-area--two-column .content-area__content .entry__content:first-child { padding-bottom: 0px; }\r\n.content-area--image-left .content-area__flex--image-center, .content-area--image-right .content-area__flex--image-center { padding-bottom: 0px; }\r\nfooter .widget { margin-bottom: 0px; }\r\n}\r\n@media (max-width: 520px){\r\n.btn { display: inline-block; }\r\n}\r\n@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {\r\n.jarallax-img.image--loaded { width: 140%!important; height: auto!important; left: -20%!important; }\r\n}\r\n/* End */','no'),(1437,'_options_custom_css','field_1244817397d5','no'),(1625,'enabled_page_modules','a:49:{i:0;s:34:\"contact-info-group_rnimyv52b1l53jv\";i:1;s:26:\"form-group_69kihebviq0vjyc\";i:2;s:34:\"content-area-group_odfm2jkpw0mr44d\";i:3;s:26:\"ctas-group_dk4qfpqwpvi9q29\";i:4;s:26:\"hero-group_0yx3acydmccnw9z\";i:5;s:36:\"special-offers-group_285xgh2d32ffzt8\";i:6;s:34:\"content-area-group_chcf29yih8zz3j3\";i:7;s:30:\"services-group_zi794n2mdkggmlv\";i:8;s:29:\"gallery-group_jay33uzo882n74g\";i:9;s:34:\"testimonials-group_7omya7l9yrr0mu0\";i:10;s:34:\"content-area-group_gtf9qg87luu5eqi\";i:11;s:34:\"content-area-group_5ceuunsp1agbemn\";i:12;s:34:\"content-area-group_zznmx4e2lzf8s9h\";i:13;s:26:\"ctas-group_tzgv8v1sbieylt0\";i:14;s:34:\"content-area-group_b0v7q0nnl7smzja\";i:15;s:34:\"content-area-group_rnc60ry282wfpen\";i:16;s:34:\"content-area-group_o71dc4si7yrb9ju\";i:17;s:34:\"content-area-group_3ze24gyj4v2v5kl\";i:18;s:26:\"ctas-group_kpnm8dq6b461nnn\";i:19;s:30:\"services-group_ffgoalgidcgol8d\";i:20;s:26:\"ctas-group_xlmnj6mgvckzsbl\";i:21;s:34:\"content-area-group_0j287z8smusg8ro\";i:22;s:34:\"content-area-group_glogz5elw7g3d94\";i:23;s:34:\"content-area-group_lt793odq0j0s3qx\";i:24;s:26:\"ctas-group_7hpz2gts0xxjbk1\";i:25;s:34:\"content-area-group_qo98bywf16e4f60\";i:26;s:34:\"content-area-group_sfvs9xaj2olhh3a\";i:27;s:34:\"content-area-group_xd5cu11k7q2944x\";i:28;s:34:\"content-area-group_rcq58c1snwtp4dg\";i:29;s:26:\"ctas-group_ud1z6cp3we1stc6\";i:30;s:34:\"content-area-group_bll1v31dtnw9rl6\";i:31;s:34:\"content-area-group_5zwsdbbzhgq9b3k\";i:32;s:34:\"content-area-group_6tb9wboffn47hyy\";i:33;s:34:\"content-area-group_br5n2isiewhel27\";i:34;s:26:\"ctas-group_57f36i17ugcs5l4\";i:35;s:29:\"gallery-group_8txfhtjx684j6no\";i:36;s:26:\"ctas-group_u6maleu6wg7r14z\";i:37;s:34:\"testimonials-group_yzfih4f7wihjncf\";i:38;s:26:\"ctas-group_uxoj4z6axzyhvze\";i:39;s:34:\"content-area-group_sc8btebc88ptzbl\";i:40;s:26:\"ctas-group_i0o5jwapcpx8ora\";i:41;s:34:\"content-area-group_s1z03s57s2gssas\";i:42;s:26:\"ctas-group_exs5vc3me4a6ohn\";i:43;s:34:\"content-area-group_9c9flwfx75zpkho\";i:44;s:26:\"ctas-group_9gwabey53p04ngf\";i:45;s:34:\"content-area-group_r9k1mdmqbq8p3mx\";i:46;s:34:\"content-area-group_o94sm7iw1sypujx\";i:47;s:34:\"content-area-group_4trfhcisy1rje8c\";i:48;s:26:\"ctas-group_jgklj4r4l3wngs8\";}','yes'),(1987,'options_google_analytics_id','UA-70973263-27, UA-194762359-1','no'),(1988,'_options_google_analytics_id','field_1244817397d8','no'),(1989,'options_header_scripts','<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-194762359-1\"></script>\r\n<script>\r\nwindow.dataLayer = window.dataLayer || [];\r\nfunction gtag(){dataLayer.push(arguments);}\r\ngtag(\'js\', new Date());\r\n\r\ngtag(\'config\', \'UA-194762359-1\');\r\n</script>','no'),(1990,'_options_header_scripts','field_1244817397e0','no'),(1991,'options_footer_scripts','','no'),(1992,'_options_footer_scripts','field_1244817397e1','no'),(1993,'options_default_featured_image','538','no'),(1994,'_options_default_featured_image','field_52185627f88','no'),(2527,'widget_google_map_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2581,'options_map_style','standard','no'),(2582,'_options_map_style','field_4877725680458','no'),(2583,'options_sticky_header','a:1:{i:0;s:1:\"0\";}','no'),(2584,'_options_sticky_header','field_6546209980612','no'),(2585,'options_footer_widget_text_color','#ffffff','no'),(2586,'_options_footer_widget_text_color','field_1707612441619','no'),(2587,'options_footer_widget_text_align','left','no'),(2588,'_options_footer_widget_text_align','field_9196537636664','no'),(2589,'options_phone_numbers','1','no'),(2590,'_options_phone_numbers','field_7071572235422','no'),(2591,'options_yelp_url','','no'),(2592,'_options_yelp_url','field_591b6da7e9b92','no'),(2593,'options_google_url','','no'),(2594,'_options_google_url','field_591b6da7e9b90','no'),(2595,'options_bbb_url','','no'),(2596,'_options_bbb_url','field_591b6da7e9b91','no'),(2597,'options_privacy_company_name','Mann Plumbing & Heating, LLC.','no'),(2598,'_options_privacy_company_name','field_0459798717916','no'),(2599,'options_privacy_company_address','6210 Lincoln Way E, Fayetteville, PA 17222','no'),(2600,'_options_privacy_company_address','field_5831905576181','no'),(2601,'options_privacy_company_number','717-352-9549','no'),(2602,'_options_privacy_company_number','field_0948648919592','no'),(2603,'options_privacy_company_state','Pennsylvania','no'),(2604,'_options_privacy_company_state','field_2919378847483','no'),(2712,'widget_custom_text_widget','a:3:{i:3;a:0:{}i:4;a:1:{s:3:\"acf\";a:4:{s:19:\"field_0545112742947\";s:0:\"\";s:19:\"field_0034764924673\";s:0:\"\";s:19:\"field_9341407638796\";s:0:\"\";s:19:\"field_2409560269914\";s:598:\"<h5>Location</h5>\r\n<a href=\"https://goo.gl/maps/sQVM2oL58W92RkPA9\" target=\"_blank\" rel=\"noopener\">6210 Lincoln Way E\r\nFayetteville, PA 17222</a>\r\n\r\n<a href=\"https://www.bbb.org/us/pa/fayetteville/profile/plumber/mann-plumbing-heating-and-air-conditioning-0241-185815225/#sealclick\" target=\"_blank\" rel=\"nofollow noopener\"><img style=\"border: 0;\" src=\"https://seal-dc-easternpa.bbb.org/seals/blue-seal-293-61-bbb-185815225.png\" alt=\"Mann Plumbing, Heating and Air Conditioning BBB Business Review\" /></a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.trane.com/\" target=\"_blank\" rel=\"noopener\">www.trane.com</a>\";}}s:12:\"_multiwidget\";i:1;}','yes'),(2746,'options_link_color_light','#ffffff','no'),(2747,'_options_link_color_light','field_8373386839578','no'),(2748,'options_link_color_dark','#d51d25','no'),(2749,'_options_link_color_dark','field_8354013351018','no'),(2750,'options_button_color_light','','no'),(2751,'_options_button_color_light','field_0422716974934','no'),(2752,'options_button_text_color_light','','no'),(2753,'_options_button_text_color_light','field_8115282988438','no'),(2754,'options_button_color_dark','','no'),(2755,'_options_button_color_dark','field_5415633374416','no'),(2756,'options_button_text_color_dark','','no'),(2757,'_options_button_text_color_dark','field_6445465982164','no'),(2758,'options_hide_footer_logo','','no'),(2759,'_options_hide_footer_logo','field_3845963073440','no'),(2760,'options_footer_color_secondary','#1f1f1f','no'),(2761,'_options_footer_color_secondary','field_9024378700538','no'),(2762,'options_footer_color_tertiary','#1f1f1f','no'),(2763,'_options_footer_color_tertiary','field_5443662384891','no'),(2764,'options_footer_custom_contact','','no'),(2765,'_options_footer_custom_contact','field_8102039967359','no'),(2766,'options_linkedin_url','','no'),(2767,'_options_linkedin_url','field_0293968446946','no'),(2823,'rg_gforms_captcha_public_key','','yes'),(2824,'rg_gforms_captcha_private_key','','yes'),(2974,'options_page_modules_429','a:3:{i:0;s:0:\"\";i:1;s:34:\"content-area-group_odfm2jkpw0mr44d\";i:2;s:26:\"ctas-group_dk4qfpqwpvi9q29\";}','no'),(2975,'_options_page_modules_429','field_591b745d1375b429','no'),(3093,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3160,'http_security_remove_php_version','1','yes'),(3161,'http_security_remove_wordpress_version','1','yes'),(3162,'http_security_sts_flag','1','yes'),(3163,'http_security_sts_subdomains_flag','1','yes'),(3164,'http_security_sts_preload_flag','1','yes'),(3165,'http_security_expect_ct_flag','1','yes'),(3166,'http_security_expect_ct_enforce_flag','1','yes'),(3167,'http_security_x_frame_flag','0','yes'),(3168,'http_security_x_frame_options','0','yes'),(3169,'http_security_x_xss_protection','1','yes'),(3170,'http_security_x_content_type_options','1','yes'),(3171,'http_security_sts_max_age','2592000','yes'),(3172,'http_security_expect_ct_max_age','2592000','yes'),(3173,'http_security_referrer_policy','yes','yes'),(3179,'sendgrid_api_key','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','yes'),(3180,'sendgrid_stats_categories','Websites','yes'),(3181,'sendgrid_reply_to','ReachEdgeSupport@reachlocal.com','yes'),(3182,'sendgrid_from_email','noreply@','yes'),(3183,'sendgrid_from_name','Emerson','yes'),(3186,'sendgrid_asm_permission','true','yes'),(3425,'options_logo_size','1','no'),(3426,'_options_logo_size','field_591b563c50456','no'),(3427,'options_logo_size_mobile','80','no'),(3428,'_options_logo_size_mobile','field_591b563c50556','no'),(3429,'options_logo_size_desktop','100','no'),(3430,'_options_logo_size_desktop','field_591b563c50656','no'),(3431,'options_button_light_colors','a:6:{s:10:\"background\";s:7:\"#d51d25\";s:4:\"text\";s:7:\"#ffffff\";s:6:\"border\";s:7:\"#d51d25\";s:16:\"background_hover\";s:7:\"#1f1f1f\";s:10:\"text_hover\";s:7:\"#ffffff\";s:12:\"border_hover\";s:7:\"#1f1f1f\";}','no'),(3432,'_options_button_light_colors','field_4600243663044','no'),(3433,'options_button_dark_colors','a:6:{s:10:\"background\";s:7:\"#d51d25\";s:4:\"text\";s:7:\"#ffffff\";s:6:\"border\";s:7:\"#d51d25\";s:16:\"background_hover\";s:7:\"#1f1f1f\";s:10:\"text_hover\";s:7:\"#ffffff\";s:12:\"border_hover\";s:7:\"#1f1f1f\";}','no'),(3434,'_options_button_dark_colors','field_7791851747102','no'),(3435,'options_adobe_fonts','0','no'),(3436,'_options_adobe_fonts','field_89b3289b3289bgs9823h','no'),(3437,'options_adobe_fonts_id','','no'),(3438,'_options_adobe_fonts_id','field_3h9b3289b398b39s','no'),(3439,'options_adobe_primary_font','','no'),(3440,'_options_adobe_primary_font','field_903b893v8v3w98b','no'),(3441,'options_adobe_secondary_font','','no'),(3442,'_options_adobe_secondary_font','field_98h398b98fdb2obn30osfs','no'),(3443,'options_header_call_out','a:1:{i:0;s:1:\"0\";}','no'),(3444,'_options_header_call_out','field_843n43043340n34','no'),(3445,'options_form_style','default','no'),(3446,'_options_form_style','field_8235804g6812a','no'),(3447,'options_form_label_visibility','visible','no'),(3448,'_options_form_label_visibility','field_8235804g6897b','no'),(3449,'options_form_input_align','left','no'),(3450,'_options_form_input_align','field_8235804g6813b','no'),(3451,'options_form_button_align','center','no'),(3452,'_options_form_button_align','field_8235804g6813c','no'),(3453,'options_blog_layout','default','no'),(3454,'_options_blog_layout','field_8caykc0176102','no'),(3455,'options_categories_list','','no'),(3456,'_options_categories_list','field_8caykc0176103','no'),(3457,'options_pagination_align','center','no'),(3458,'_options_pagination_align','field_8caykc017sf59','no'),(3459,'options_blog_animations_enabled','0','no'),(3460,'_options_blog_animations_enabled','field_5b7ece2e8e4e9','no'),(3461,'options_blog_animations','','no'),(3462,'_options_blog_animations','field_5b7ece258e4e8','no'),(3463,'options_pinterest_url','','no'),(3464,'_options_pinterest_url','field_48943hre5e984eh','no'),(3465,'options_angies_url','','no'),(3466,'_options_angies_url','field_98jdsis893he03f','no'),(3467,'options_homeadvisor_url','','no'),(3468,'_options_homeadvisor_url','field_309njdsi390383o3','no'),(3469,'options_custom_social_icons','','no'),(3470,'_options_custom_social_icons','field_923b239823b9023s','no'),(3471,'options_global_animations','1','no'),(3472,'_options_global_animations','field_82g89d28981bsn0bsa','no'),(3473,'rg_gforms_disable_css','1','yes'),(3480,'duplicate_post_copytitle','1','yes'),(3481,'duplicate_post_copydate','0','yes'),(3482,'duplicate_post_copystatus','0','yes'),(3483,'duplicate_post_copyslug','0','yes'),(3484,'duplicate_post_copyexcerpt','1','yes'),(3485,'duplicate_post_copycontent','1','yes'),(3486,'duplicate_post_copythumbnail','1','yes'),(3487,'duplicate_post_copytemplate','1','yes'),(3488,'duplicate_post_copyformat','1','yes'),(3489,'duplicate_post_copyauthor','0','yes'),(3490,'duplicate_post_copypassword','0','yes'),(3491,'duplicate_post_copyattachments','0','yes'),(3492,'duplicate_post_copychildren','0','yes'),(3493,'duplicate_post_copycomments','0','yes'),(3494,'duplicate_post_copymenuorder','1','yes'),(3495,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(3496,'duplicate_post_blacklist','','yes'),(3497,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(3504,'wpseo','a:23:{s:15:\"ms_defaults_set\";b:0;s:25:\"ignore_indexation_warning\";b:1;s:7:\"version\";s:6:\"14.0.4\";s:16:\"previous_version\";s:6:\"11.1.1\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1550253264;s:13:\"myyoast-oauth\";b:0;}','yes'),(3505,'wpseo_titles','a:78:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-pipe\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:1;s:12:\"disable-date\";b:1;s:19:\"disable-post_format\";b:1;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:29:\"Mann Plumbing & Heating, LLC.\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:10:\"title-page\";s:64:\"%%title%% %%page%% %%sep%% Chambersburg, PA %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";s:1:\"0\";s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";s:1:\"0\";s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:0;s:20:\"noindex-tax-category\";b:1;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:0;s:20:\"noindex-tax-post_tag\";b:1;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:10:\"title-ctas\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-ctas\";s:0:\"\";s:12:\"noindex-ctas\";b:1;s:13:\"showdate-ctas\";b:0;s:23:\"display-metabox-pt-ctas\";b:0;s:23:\"post_types-ctas-maintax\";s:1:\"0\";s:20:\"title-ptarchive-ctas\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-ptarchive-ctas\";s:0:\"\";s:22:\"bctitle-ptarchive-ctas\";s:0:\"\";s:22:\"noindex-ptarchive-ctas\";b:1;}','yes'),(3506,'wpseo_social','a:19:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),(3535,'options_page_modules_490','a:1:{i:0;s:0:\"\";}','no'),(3536,'_options_page_modules_490','field_591b745d1375b490','no'),(3547,'options_page_modules_500','a:5:{i:0;s:0:\"\";i:1;s:34:\"content-area-group_gtf9qg87luu5eqi\";i:2;s:34:\"content-area-group_5ceuunsp1agbemn\";i:3;s:34:\"content-area-group_zznmx4e2lzf8s9h\";i:4;s:26:\"ctas-group_tzgv8v1sbieylt0\";}','no'),(3548,'_options_page_modules_500','field_591b745d1375b500','no'),(3635,'gf_upgrade_lock','','yes'),(3636,'gform_sticky_admin_messages','a:1:{s:23:\"gravityforms_update_2_5\";a:5:{s:4:\"type\";s:7:\"success\";s:4:\"text\";s:200:\"Welcome to Gravity Forms 2.5! <a href=\"https://www.gravityforms.com/two-five/\" target=\"_blank\" rel=\"noopener noreferrer\">Learn more</a> about all the new features and updates included in this version.\";s:3:\"key\";s:23:\"gravityforms_update_2_5\";s:12:\"capabilities\";b:0;s:4:\"page\";N;}}','yes'),(3640,'gf_submissions_block','','yes'),(3641,'gf_db_version','2.5.10.1','no'),(3666,'WPLANG','','yes'),(3669,'rl_primary_domain','','yes'),(3726,'options_mega_menu','','no'),(3727,'_options_mega_menu','field_8h3bd09309hb2389bd3','no'),(3728,'options_header_util_nav_mobile','a:1:{i:0;s:1:\"0\";}','no'),(3729,'_options_header_util_nav_mobile','field_h389be98uibv2398hg9w8y3','no'),(4016,'rl-okta-idp-eid','http://www.okta.com/exk68k50vs4qN044j357','yes'),(4017,'rl-okta-idp-sign-on-service','https://gannettwp.okta.com/app/gannettwp_mannplumbingheatingllclive_2/exk68k50vs4qN044j357/sso/saml','yes'),(4142,'options_page_modules_523','a:6:{i:0;s:0:\"\";i:1;s:34:\"content-area-group_b0v7q0nnl7smzja\";i:2;s:34:\"content-area-group_rnc60ry282wfpen\";i:3;s:34:\"content-area-group_o71dc4si7yrb9ju\";i:4;s:34:\"content-area-group_3ze24gyj4v2v5kl\";i:5;s:26:\"ctas-group_kpnm8dq6b461nnn\";}','yes'),(4143,'_options_page_modules_523','field_591b745d1375b523','no'),(4213,'wp-smush-last_settings','s:187:\"a:10:{s:11:\"networkwide\";b:0;s:4:\"auto\";i:1;s:5:\"lossy\";b:0;s:8:\"original\";b:0;s:9:\"keep_exif\";b:0;s:6:\"resize\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;}\";','no'),(4214,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1573160759;}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:1573160759;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1608181145;}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:1608267537;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1609744631;}}}','no'),(4215,'wp-smush-install-type','existing','no'),(4216,'wp-smush-version','2.7.9.1','no'),(4217,'wp-smush-skip-redirect','1','no'),(4218,'smush_option','a:1:{s:7:\"version\";s:7:\"2.7.9.1\";}','yes'),(4219,'smush_global_stats','a:9:{s:11:\"size_before\";i:30568966;s:10:\"size_after\";i:29298872;s:7:\"percent\";d:4.2000000000000002;s:5:\"human\";s:6:\"1.2 MB\";s:5:\"bytes\";i:1270094;s:12:\"total_images\";i:790;s:14:\"resize_savings\";i:0;s:12:\"resize_count\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(4224,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";s:1:\"0\";s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(4225,'skip-smush-setup','1','no'),(4231,'redirection_options','a:20:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"b5f62a462de7502e99df9f051e4c2de9\";s:12:\"monitor_post\";i:1;s:13:\"monitor_types\";a:1:{i:0;s:4:\"page\";}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:-1;s:10:\"expire_404\";i:-1;s:7:\"modules\";a:0:{}s:10:\"newsletter\";b:0;s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:0;s:13:\"last_group_id\";i:1;s:8:\"rest_api\";i:0;s:5:\"https\";b:0;s:8:\"database\";s:3:\"4.1\";s:10:\"flag_query\";s:5:\"exact\";s:9:\"flag_case\";b:0;s:13:\"flag_trailing\";b:0;s:10:\"flag_regex\";b:0;}','yes'),(4358,'options_footer_layout','grid','no'),(4359,'_options_footer_layout','field_1782169442472','no'),(4360,'options_phone_numbers_0_phone_number_prefix','','no'),(4361,'_options_phone_numbers_0_phone_number_prefix','field_13845672092031','no'),(4362,'options_phone_numbers_0_phone_number','717-352-9549','no'),(4363,'_options_phone_numbers_0_phone_number','field_1384567209203','no'),(4409,'widget_custom_text_widget-3_widget_mobile_content_alignment','','no'),(4410,'_widget_custom_text_widget-3_widget_mobile_content_alignment','field_0545112742947','no'),(4411,'widget_custom_text_widget-3_widget_tablet_content_alignment','','no'),(4412,'_widget_custom_text_widget-3_widget_tablet_content_alignment','field_0034764924673','no'),(4413,'widget_custom_text_widget-3_widget_desktop_content_alignment','','no'),(4414,'_widget_custom_text_widget-3_widget_desktop_content_alignment','field_9341407638796','no'),(4415,'widget_custom_text_widget-3_widget_custom_text','<h5>[company-phone id=1]</h5>\r\n<a class=\"btn btn--dark\" href=\"/contact-us/\">Contact Us</a>\r\n<ul>\r\n                    <li class=\"socials__item\">\r\n                <a href=\"https://www.facebook.com/SJStuccoSupply/\" title=\"facebook\" target=\"_blank\">\r\n                    <svg class=\"icon icon-facebook\" style=\"fill: #ffffff\">\r\n                        <title>facebook</title>\r\n                        <use xlink:href=\"#icon-facebook\"></use>\r\n                    </svg>\r\n                </a>\r\n            </li>\r\n                    <li class=\"socials__item\">\r\n                <a href=\"http://www.yelp.com/biz/stucco-supply-company-of-san-jose-san-jose\" title=\"yelp\" target=\"_blank\">\r\n                    <svg class=\"icon icon-yelp\" style=\"fill: #ffffff\">\r\n                        <title>yelp</title>\r\n                        <use xlink:href=\"#icon-yelp\"></use>\r\n                    </svg>\r\n                </a>\r\n            </li>\r\n                    <li class=\"socials__item\">\r\n                <a href=\"https://goo.gl/maps/HDTZj3VgDR52iVWw5\" title=\"google\" target=\"_blank\">\r\n                    <svg class=\"icon icon-google\" style=\"fill: #ffffff\">\r\n                        <title>google</title>\r\n                        <use xlink:href=\"#icon-google\"></use>\r\n                    </svg>\r\n                </a>\r\n            </li>\r\n                    </ul>','no'),(4416,'_widget_custom_text_widget-3_widget_custom_text','field_2409560269914','no'),(4417,'widget_custom_text_widget-4_widget_mobile_content_alignment','','no'),(4418,'_widget_custom_text_widget-4_widget_mobile_content_alignment','field_0545112742947','no'),(4419,'widget_custom_text_widget-4_widget_tablet_content_alignment','','no'),(4420,'_widget_custom_text_widget-4_widget_tablet_content_alignment','field_0034764924673','no'),(4421,'widget_custom_text_widget-4_widget_desktop_content_alignment','','no'),(4422,'_widget_custom_text_widget-4_widget_desktop_content_alignment','field_9341407638796','no'),(4423,'widget_custom_text_widget-4_widget_custom_text','<h5>Location</h5>\r\n<a href=\"https://goo.gl/maps/sQVM2oL58W92RkPA9\" target=\"_blank\" rel=\"noopener\">6210 Lincoln Way E\r\nFayetteville, PA 17222</a>\r\n\r\n<a href=\"https://www.bbb.org/us/pa/fayetteville/profile/plumber/mann-plumbing-heating-and-air-conditioning-0241-185815225/#sealclick\" target=\"_blank\" rel=\"nofollow noopener\"><img style=\"border: 0;\" src=\"https://seal-dc-easternpa.bbb.org/seals/blue-seal-293-61-bbb-185815225.png\" alt=\"Mann Plumbing, Heating and Air Conditioning BBB Business Review\" /></a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.trane.com/\" target=\"_blank\" rel=\"noopener\">www.trane.com</a>','no'),(4424,'_widget_custom_text_widget-4_widget_custom_text','field_2409560269914','no'),(4438,'options_page_modules_569','a:3:{i:0;s:0:\"\";i:1;s:30:\"services-group_ffgoalgidcgol8d\";i:2;s:26:\"ctas-group_xlmnj6mgvckzsbl\";}','no'),(4439,'_options_page_modules_569','field_591b745d1375b569','no'),(4441,'options_page_modules_572','a:5:{i:0;s:0:\"\";i:1;s:34:\"content-area-group_0j287z8smusg8ro\";i:2;s:34:\"content-area-group_glogz5elw7g3d94\";i:3;s:34:\"content-area-group_lt793odq0j0s3qx\";i:4;s:26:\"ctas-group_7hpz2gts0xxjbk1\";}','yes'),(4442,'options_page_modules_574','a:6:{i:0;s:0:\"\";i:1;s:34:\"content-area-group_qo98bywf16e4f60\";i:2;s:34:\"content-area-group_sfvs9xaj2olhh3a\";i:3;s:34:\"content-area-group_xd5cu11k7q2944x\";i:4;s:34:\"content-area-group_rcq58c1snwtp4dg\";i:5;s:26:\"ctas-group_ud1z6cp3we1stc6\";}','yes'),(4443,'options_page_modules_576','a:6:{i:0;s:0:\"\";i:1;s:34:\"content-area-group_bll1v31dtnw9rl6\";i:2;s:34:\"content-area-group_5zwsdbbzhgq9b3k\";i:3;s:34:\"content-area-group_6tb9wboffn47hyy\";i:4;s:34:\"content-area-group_br5n2isiewhel27\";i:5;s:26:\"ctas-group_57f36i17ugcs5l4\";}','yes'),(4448,'options_page_modules_585','a:3:{i:0;s:0:\"\";i:1;s:34:\"content-area-group_s1z03s57s2gssas\";i:2;s:26:\"ctas-group_exs5vc3me4a6ohn\";}','yes'),(4449,'options_page_modules_588','a:3:{i:0;s:0:\"\";i:1;s:34:\"content-area-group_9c9flwfx75zpkho\";i:2;s:26:\"ctas-group_9gwabey53p04ngf\";}','yes'),(4450,'options_page_modules_590','a:5:{i:0;s:0:\"\";i:1;s:34:\"content-area-group_r9k1mdmqbq8p3mx\";i:2;s:34:\"content-area-group_o94sm7iw1sypujx\";i:3;s:34:\"content-area-group_4trfhcisy1rje8c\";i:4;s:26:\"ctas-group_jgklj4r4l3wngs8\";}','yes'),(4451,'_options_page_modules_590','field_591b745d1375b590','no'),(4452,'_options_page_modules_585','field_591b745d1375b585','no'),(4453,'options_page_modules_582','a:3:{i:0;s:0:\"\";i:1;s:34:\"content-area-group_sc8btebc88ptzbl\";i:2;s:26:\"ctas-group_i0o5jwapcpx8ora\";}','no'),(4454,'_options_page_modules_582','field_591b745d1375b582','no'),(4455,'_options_page_modules_588','field_591b745d1375b588','no'),(4456,'options_page_modules_578','a:3:{i:0;s:0:\"\";i:1;s:29:\"gallery-group_8txfhtjx684j6no\";i:2;s:26:\"ctas-group_u6maleu6wg7r14z\";}','no'),(4457,'_options_page_modules_578','field_591b745d1375b578','no'),(4458,'_options_page_modules_572','field_591b745d1375b572','no'),(4459,'_options_page_modules_576','field_591b745d1375b576','no'),(4460,'_options_page_modules_574','field_591b745d1375b574','no'),(4461,'options_page_modules_580','a:3:{i:0;s:0:\"\";i:1;s:34:\"testimonials-group_yzfih4f7wihjncf\";i:2;s:26:\"ctas-group_uxoj4z6axzyhvze\";}','no'),(4462,'_options_page_modules_580','field_591b745d1375b580','no'),(5268,'gform_upload_page_slug','e922beb15e8c188','yes'),(8369,'recovery_keys','a:0:{}','yes'),(8370,'wp_page_for_privacy_policy','0','yes'),(8371,'show_comments_cookies_opt_in','1','yes'),(8372,'admin_email_lifespan','1645304493','yes'),(8373,'db_upgraded','','yes'),(8374,'yoast_migrations_free','a:1:{s:7:\"version\";s:6:\"14.0.4\";}','yes'),(8418,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":3,\"critical\":1}','yes'),(9626,'disallowed_keys','','no'),(9627,'comment_previously_approved','1','yes'),(9628,'auto_plugin_theme_update_emails','a:0:{}','no'),(9629,'finished_updating_comment_type','1','yes'),(13229,'wp-smush-hide_upgrade_notice','1','no'),(13230,'gf_dismissed_upgrades','a:2:{i:0;s:6:\"2.4.21\";i:1;s:6:\"2.4.22\";}','yes'),(13231,'rewrite_rules','a:143:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:12:\"locations/?$\";s:29:\"index.php?post_type=locations\";s:42:\"locations/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=locations&feed=$matches[1]\";s:37:\"locations/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=locations&feed=$matches[1]\";s:29:\"locations/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=locations&paged=$matches[1]\";s:7:\"ctas/?$\";s:24:\"index.php?post_type=ctas\";s:37:\"ctas/feed/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=ctas&feed=$matches[1]\";s:32:\"ctas/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=ctas&feed=$matches[1]\";s:24:\"ctas/page/([0-9]{1,})/?$\";s:42:\"index.php?post_type=ctas&paged=$matches[1]\";s:52:\"blog/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:28:\"blog/category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:40:\"blog/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:49:\"blog/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:44:\"blog/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:25:\"blog/tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:37:\"blog/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:19:\"blog/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:50:\"blog/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:45:\"blog/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:26:\"blog/type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:38:\"blog/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:20:\"blog/type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:37:\"locations/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"locations/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"locations/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"locations/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"locations/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"locations/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"locations/([^/]+)/embed/?$\";s:42:\"index.php?locations=$matches[1]&embed=true\";s:30:\"locations/([^/]+)/trackback/?$\";s:36:\"index.php?locations=$matches[1]&tb=1\";s:50:\"locations/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?locations=$matches[1]&feed=$matches[2]\";s:45:\"locations/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?locations=$matches[1]&feed=$matches[2]\";s:38:\"locations/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?locations=$matches[1]&paged=$matches[2]\";s:45:\"locations/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?locations=$matches[1]&cpage=$matches[2]\";s:34:\"locations/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?locations=$matches[1]&page=$matches[2]\";s:26:\"locations/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"locations/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"locations/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"locations/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"locations/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"locations/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"ctas/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"ctas/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"ctas/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"ctas/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"ctas/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"ctas/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"ctas/([^/]+)/embed/?$\";s:37:\"index.php?ctas=$matches[1]&embed=true\";s:25:\"ctas/([^/]+)/trackback/?$\";s:31:\"index.php?ctas=$matches[1]&tb=1\";s:45:\"ctas/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?ctas=$matches[1]&feed=$matches[2]\";s:40:\"ctas/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?ctas=$matches[1]&feed=$matches[2]\";s:33:\"ctas/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?ctas=$matches[1]&paged=$matches[2]\";s:40:\"ctas/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?ctas=$matches[1]&cpage=$matches[2]\";s:29:\"ctas/([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?ctas=$matches[1]&page=$matches[2]\";s:21:\"ctas/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"ctas/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"ctas/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"ctas/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"ctas/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"ctas/[^/]+/([^/]+)/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=5&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:52:\"blog/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:28:\"blog/author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:40:\"blog/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:74:\"blog/([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:69:\"blog/([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:50:\"blog/([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:62:\"blog/([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:44:\"blog/([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:61:\"blog/([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:56:\"blog/([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:37:\"blog/([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:49:\"blog/([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:31:\"blog/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:48:\"blog/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:43:\"blog/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:24:\"blog/([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:36:\"blog/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:18:\"blog/([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:32:\"blog/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"blog/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"blog/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blog/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blog/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"blog/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"blog/([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:25:\"blog/([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:45:\"blog/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:40:\"blog/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:33:\"blog/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:40:\"blog/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:29:\"blog/([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:21:\"blog/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"blog/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"blog/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"blog/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"blog/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"blog/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(14663,'gf_zero_spam_key','HssGHvl2jQZvWmDlMM5prRhZz0vgijWUlKHO14iEw7wpKzRoisex7esJZf1xshnZ','no'),(15897,'_transient_timeout_wpseo_link_table_inaccessible','1645795305','no'),(15898,'_transient_wpseo_link_table_inaccessible','0','no'),(15899,'_transient_timeout_wpseo_meta_table_inaccessible','1645795305','no'),(15900,'_transient_wpseo_meta_table_inaccessible','0','no'),(17817,'options_link_color_light_hover','','no'),(17818,'_options_link_color_light_hover','field_8373386834539','no'),(17819,'options_link_color_dark_hover','','no'),(17820,'_options_link_color_dark_hover','field_8354013371811','no'),(17821,'options_search_field','','no'),(17822,'_options_search_field','field_6526804960641','no'),(17823,'options_group_0052405662951_gallery_animations_enabled','0','no'),(17824,'_options_group_0052405662951_gallery_animations_enabled','field_5b7ece2e8e4e9','no'),(17825,'options_group_0052405662951_gallery_animations','','no'),(17826,'_options_group_0052405662951_gallery_animations','field_5b7ece258e4e8','no'),(21182,'duplicate_post_show_original_column','0','yes'),(21183,'duplicate_post_show_original_in_post_states','0','yes'),(21184,'duplicate_post_show_original_meta_box','0','yes'),(21185,'duplicate_post_show_link','a:3:{s:9:\"new_draft\";s:1:\"1\";s:5:\"clone\";s:1:\"1\";s:17:\"rewrite_republish\";s:1:\"1\";}','yes'),(21186,'duplicate_post_show_link_in','a:4:{s:3:\"row\";s:1:\"1\";s:8:\"adminbar\";s:1:\"1\";s:9:\"submitbox\";s:1:\"1\";s:11:\"bulkactions\";s:1:\"1\";}','yes'),(21187,'duplicate_post_show_notice','1','no'),(21188,'duplicate_post_version','4.1.1','yes'),(25506,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.9.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-5.9.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-5.9-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.9-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"5.9\";s:7:\"version\";s:3:\"5.9\";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-5.9.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-5.9.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-5.9-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.9-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"5.9\";s:7:\"version\";s:3:\"5.9\";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\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.3-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.8.3-partial-2.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.3-rollback-2.zip\";}s:7:\"current\";s:5:\"5.8.3\";s:7:\"version\";s:5:\"5.8.3\";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:5:\"5.8.2\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1645045724;s:15:\"version_checked\";s:5:\"5.8.2\";s:12:\"translations\";a:0:{}}','no'),(26990,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(26993,'_site_transient_t15s-registry-gforms','O:8:\"stdClass\":2:{s:8:\"projects\";a:52:{s:26:\"gravityformsactivecampaign\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2019-12-10T10:53:40+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:44:58+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:49:55+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:48:52+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:48:38+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2019-12-10T10:52:45+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:47:42+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:47:27+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:47:11+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-05-13T09:59:20+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:45:20+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:47:59+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2019-12-10T10:55:54+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2021-09-13T20:55:15+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:46:00+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:43:49+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:49:36+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:50:19+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:45:45+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.9.2\";s:7:\"updated\";s:25:\"2020-04-29T16:43:08+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformsaweber\";a:1:{s:12:\"translations\";a:16:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2019-12-10T11:14:16+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2020-10-26T09:22:16+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2019-12-10T11:14:21+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2020-10-21T13:22:59+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2020-11-03T15:07:38+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2020-11-01T10:19:03+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2020-10-25T16:28:29+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2021-06-09T10:12:37+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2020-12-17T14:48:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2021-09-13T20:56:18+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2020-12-17T14:59:58+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2020-12-17T15:52:40+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2020-11-04T15:46:22+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2020-11-04T22:55:06+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2020-10-21T18:52:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:4:\"2.11\";s:7:\"updated\";s:25:\"2020-10-26T10:11:59+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformsagilecrm\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2019-12-10T11:19:20+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-13T12:14:33+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2019-12-10T11:19:27+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2019-12-10T11:19:29+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-07-15T15:11:34+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-13T08:58:31+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-13T09:07:04+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-11-01T10:34:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-20T21:21:06+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-27T07:05:09+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-27T06:12:17+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-13T20:54:04+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-28T17:59:30+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-27T21:55:07+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-27T15:54:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-26T22:26:29+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-10-23T18:57:17+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-16T16:46:08+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:24:\"gravityformsauthorizenet\";a:1:{s:12:\"translations\";a:19:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2019-12-10T11:26:11+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2019-12-10T11:25:12+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-06-23T12:37:06+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-10-19T11:05:17+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-10-19T11:04:01+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-10-02T10:42:32+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-10-21T11:50:09+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-06-23T12:37:00+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-06-23T12:37:02+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-06-23T12:37:03+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-06-23T12:37:04+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-12-17T14:48:41+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-09-13T20:54:56+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-12-17T15:01:32+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-12-17T15:53:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-06-23T12:37:08+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-06-23T12:37:01+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-06-23T12:37:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-11-05T09:28:49+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformsbatchbook\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:26+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:58+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:36+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:39+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:48+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:34+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-02-18T10:52:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-01-22T16:00:21+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:53+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-02-17T05:50:43+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2021-09-13T20:57:17+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:01+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:05+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:42+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-10-21T18:08:50+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-02-10T08:44:12+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformsbreeze\";a:1:{s:12:\"translations\";a:19:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T11:33:56+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T11:34:00+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-26T09:18:00+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T11:34:06+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T11:34:10+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T11:34:16+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-21T11:51:14+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-04T15:52:36+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-27T15:24:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-27T15:24:22+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-04T15:55:14+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-12-17T14:47:56+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-09-13T20:57:50+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-12-17T15:02:25+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-12-17T15:54:19+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-04T15:53:05+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-04T23:02:09+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-21T18:01:43+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-05T09:41:54+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:27:\"gravityformscampaignmonitor\";a:1:{s:12:\"translations\";a:19:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2019-12-10T11:38:28+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2019-12-10T11:38:32+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-10-27T15:32:30+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2019-12-10T11:38:38+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2019-12-10T11:38:42+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2019-12-10T11:38:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-10-21T13:33:21+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-11-04T16:34:18+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-10-27T15:32:58+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-06-26T16:23:07+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-11-04T16:33:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-10-27T15:31:51+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2021-09-13T20:58:22+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-12-17T15:02:40+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-12-17T15:54:37+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-11-04T16:34:37+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-11-04T22:43:42+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-10-21T17:56:50+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.9\";s:7:\"updated\";s:25:\"2020-10-27T15:30:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformscampfire\";a:1:{s:12:\"translations\";a:19:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:21+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:25+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:51+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:34+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:28+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-18T11:26:09+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-01-22T16:22:19+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:47+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-17T07:50:36+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2021-09-13T20:59:01+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:55+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:44:01+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-10-21T17:50:29+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-13T09:15:04+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:22:\"gravityformscapsulecrm\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-10-19T12:30:04+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-24T11:44:15+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-10-19T12:29:41+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2019-12-10T12:29:32+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-10-02T10:43:53+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-25T20:59:21+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-31T19:38:53+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-18T14:48:49+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-22T09:24:31+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-26T12:48:20+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-06-04T08:41:49+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-10-02T10:45:12+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-31T04:02:47+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-24T10:24:48+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-20T15:00:01+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-06-01T18:19:09+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-06-05T06:33:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-26T23:45:13+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:26:\"gravityformschainedselects\";a:1:{s:12:\"translations\";a:19:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T12:33:02+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T12:33:09+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-26T07:39:02+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-19T12:31:04+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T12:33:19+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T12:33:26+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-27T15:57:33+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-04T16:39:59+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-04T16:39:05+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-27T15:56:33+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-04T16:40:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-12-17T14:50:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-09-13T21:00:54+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-12-17T15:03:03+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-12-17T15:55:04+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-04T16:40:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-04T22:42:17+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-21T17:43:40+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-27T15:55:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:23:\"gravityformscleverreach\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2019-12-10T12:36:07+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-10-27T16:14:47+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2019-12-10T12:36:15+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2019-12-10T12:36:18+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2019-12-10T12:36:26+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-10-21T13:19:38+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-11-03T14:26:49+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-10-27T16:13:51+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-10-27T16:13:28+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-11-02T07:31:27+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-10-27T16:14:08+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2021-09-13T21:01:33+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-12-17T15:03:13+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-12-17T15:55:14+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-10-29T05:56:49+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-11-04T22:41:57+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-10-21T17:59:57+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-10-27T16:12:53+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformscoupons\";a:1:{s:12:\"translations\";a:21:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2019-12-10T12:40:01+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2019-12-10T12:39:14+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-07-19T17:06:11+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2019-12-10T12:39:23+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2019-12-10T12:39:26+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2019-12-10T12:39:33+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2019-12-10T12:39:35+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-07-23T08:17:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-07-29T17:28:18+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2020-11-04T17:07:09+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-07-22T12:33:35+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-07-28T15:35:19+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-07-20T13:34:57+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2019-12-10T12:39:46+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-10-02T10:45:21+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-07-22T20:35:46+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-07-31T18:21:59+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-07-19T13:18:02+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-09-26T22:19:40+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-08-02T17:44:47+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.0\";s:7:\"updated\";s:25:\"2021-07-21T22:05:34+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformsdropbox\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2019-12-10T12:41:39+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2019-12-10T12:41:45+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-09-13T12:16:26+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2019-12-10T12:41:51+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2019-12-10T12:41:54+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2019-12-10T12:42:00+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-10-25T16:33:03+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-09-27T15:50:14+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2020-11-04T17:25:06+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-09-20T21:27:29+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-09-27T07:06:04+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-09-27T06:22:00+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2019-12-10T12:42:11+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-10-02T10:45:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-09-28T17:59:38+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-09-27T21:56:25+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-09-27T15:58:55+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-09-27T07:38:08+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-09-29T17:57:54+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.0.1\";s:7:\"updated\";s:25:\"2021-09-16T16:53:01+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:16:\"gravityformsemma\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2019-12-10T12:44:29+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2019-12-10T12:44:33+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-06-23T12:52:55+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2019-12-10T12:44:41+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2019-12-10T12:44:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2019-12-10T12:44:51+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-10-21T11:49:57+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-06-23T12:52:47+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-06-23T12:52:50+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-06-23T12:52:52+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-11-10T14:46:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-12-17T14:50:48+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2019-12-10T12:45:02+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2021-09-14T09:31:53+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-12-17T15:00:46+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-12-17T15:53:13+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-06-23T12:52:59+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-06-23T12:52:48+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2021-02-08T12:41:17+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-11-05T09:43:17+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:22:\"gravityformsfreshbooks\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2019-12-10T12:47:27+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-06-23T13:01:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2019-12-10T12:47:38+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2019-12-10T12:47:42+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2019-12-10T12:47:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-10-21T11:51:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-06-23T13:01:24+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-06-23T13:01:27+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-06-23T13:01:28+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-06-23T13:01:29+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-12-17T14:51:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2021-09-14T09:32:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-12-17T14:59:47+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-12-17T15:53:03+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-06-23T13:01:34+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-06-23T13:01:25+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2021-02-08T11:26:17+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-11-05T09:43:05+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:23:\"gravityformsgetresponse\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2019-12-10T12:50:14+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-11-04T17:36:04+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2019-12-10T12:50:21+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2019-12-10T12:50:27+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2019-12-10T12:50:34+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-10-21T13:52:38+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-11-04T17:34:56+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-11-04T17:34:36+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-11-04T17:34:11+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-11-04T17:33:47+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-11-04T17:35:39+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-09-14T09:33:14+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-12-17T15:00:10+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-12-17T15:52:49+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-11-04T17:35:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-11-04T22:28:34+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-02-08T11:28:42+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-11-04T17:33:13+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformshelpscout\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2019-12-10T12:53:26+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-11T17:38:30+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2019-12-10T12:53:38+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2019-12-10T12:53:41+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2019-12-10T12:53:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T16:20:17+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-20T10:30:59+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-11-05T09:45:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-17T13:50:18+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-11-01T19:33:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-31T14:24:22+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-09-14T09:33:49+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-21T18:23:27+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T23:03:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-20T06:44:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-27T18:33:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-11-04T18:39:39+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-22T08:44:54+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformshighrise\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:12+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:45+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:21+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:25+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:32+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-07-17T13:47:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:18+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-02-21T12:46:52+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-01-25T07:38:34+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-02-24T06:26:43+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2021-09-14T09:35:46+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:52+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:56+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2021-10-27T18:34:31+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2021-08-02T17:30:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-02-13T09:20:57+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformshipchat\";a:1:{s:12:\"translations\";a:19:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:44+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:50+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:25+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:00+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:04+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:11+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-10-21T13:28:02+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:57+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-21T12:24:57+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-01-25T07:46:44+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:18+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-24T00:03:51+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2021-09-14T09:40:54+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:28+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:32+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:06+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2021-08-02T17:31:33+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-13T09:22:17+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformsmadmimi\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2019-12-10T13:01:35+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2019-12-10T13:02:09+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2019-12-10T13:01:44+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2019-12-10T13:01:49+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2019-12-10T13:01:56+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2020-10-21T11:52:31+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2020-06-23T12:59:15+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2020-06-23T12:59:19+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2020-06-23T12:59:20+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2019-12-10T13:02:03+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2020-12-17T14:50:37+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2021-10-02T10:46:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2020-12-17T15:04:00+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2020-12-17T15:55:55+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2019-12-10T13:02:19+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2020-06-23T12:59:17+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2021-08-02T17:35:32+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:25:\"2020-11-05T09:28:23+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformsmailchimp\";a:1:{s:12:\"translations\";a:20:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2019-12-10T13:04:32+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-10-11T17:41:13+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2019-12-10T13:04:42+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2019-12-10T13:04:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2019-12-10T13:04:52+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2019-12-10T13:04:54+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-10-25T16:35:54+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-10-20T10:33:10+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2020-06-06T09:27:59+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-10-17T13:48:34+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-11-01T19:41:14+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-10-10T01:24:36+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2019-12-10T13:05:05+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-09-14T09:46:01+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-10-21T18:23:40+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-10-25T23:02:38+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-10-20T06:43:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-10-27T18:33:38+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-11-04T18:41:00+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:25:\"2021-10-22T08:17:58+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:26:\"gravityformspartialentries\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2019-12-10T13:08:06+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-10-26T07:35:52+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2019-12-10T13:08:14+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2019-12-10T13:08:18+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-08-12T08:00:17+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-10-21T13:19:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-06-23T13:06:44+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-06-23T13:06:48+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-06-23T13:06:49+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-06-23T13:06:50+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-12-17T14:50:15+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-09-14T09:48:18+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-12-17T15:01:19+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-12-17T15:55:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-10-29T06:00:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-06-23T13:06:46+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-08-02T17:40:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2020-11-05T09:27:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:29:\"gravityformspaypalpaymentspro\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2019-12-10T13:12:20+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:48+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2019-12-10T13:12:31+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2019-12-10T13:12:34+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-08-12T08:00:11+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2019-12-10T13:12:45+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-03-24T14:22:06+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:07:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:28+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-09-14T09:52:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:10:39+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-12-17T14:13:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:10:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:09+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-09-29T18:02:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T09:26:11+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformspaypal\";a:1:{s:12:\"translations\";a:20:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2019-12-10T13:16:24+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2019-12-10T13:15:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-06-23T12:30:13+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2019-12-10T13:15:33+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2019-12-10T13:15:37+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-08-12T07:59:47+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2019-12-10T13:15:51+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-10-21T11:52:44+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-06-23T12:30:03+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-06-23T12:30:08+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-06-23T12:30:09+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-06-23T12:30:10+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-12-17T14:49:52+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-09-14T09:52:14+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-11-10T22:07:48+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-12-17T15:54:54+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-06-23T12:30:16+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-06-23T12:30:05+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-09-29T18:06:04+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-11-05T09:27:22+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformspaypalpro\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:59:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:02+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:18+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-03-24T11:58:48+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:56:58+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-04-29T16:41:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-01-27T16:56:20+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-07-01T15:34:29+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-09-14T09:53:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:53:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:40+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:57:32+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:56:26+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-11-04T18:47:08+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-04-29T16:42:28+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:17:\"gravityformspolls\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2019-12-10T13:20:46+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-05T15:15:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2019-12-10T13:20:59+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2019-12-10T13:21:05+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2021-08-12T08:00:03+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2019-12-10T13:21:17+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-10-21T13:43:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-05T15:13:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-05T15:17:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-05T15:17:13+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-05T15:14:54+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-05T15:13:59+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2021-09-14T09:55:19+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-12-17T14:20:05+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-12-17T14:19:33+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-05T15:18:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-04T23:21:12+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2021-11-04T18:52:05+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-06-29T08:29:29+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformspostmark\";a:1:{s:12:\"translations\";a:15:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-24T11:44:53+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2019-12-10T13:25:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-25T21:03:26+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-31T19:40:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-03-29T18:54:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-22T09:30:48+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-26T12:48:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-06-04T08:26:03+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-09-14T09:55:49+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-31T04:01:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-04-11T21:20:33+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-20T16:53:54+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-06-01T17:59:01+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-06-05T06:35:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-26T23:45:38+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:16:\"gravityformsquiz\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2019-12-10T13:27:31+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-05-24T11:45:23+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2019-12-10T13:27:39+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2019-12-10T13:27:43+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-08-12T07:59:28+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2019-12-10T13:27:57+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-05-25T21:04:12+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-05-31T19:40:51+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-03-29T18:55:44+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-05-22T09:31:31+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-04-06T06:33:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-06-04T08:42:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-10-02T10:47:05+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-05-31T04:00:57+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-04-02T18:59:11+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-05-20T16:54:21+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-06-01T18:19:22+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.8.1\";s:7:\"updated\";s:25:\"2021-05-26T23:45:44+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformssignature\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2019-12-10T13:38:02+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-11-06T09:21:43+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2019-12-10T13:38:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2019-12-10T13:38:16+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-08-12T08:00:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-10-21T11:48:57+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-11-06T09:24:13+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-11-06T09:22:22+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-11-06T09:21:23+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-11-06T09:20:43+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-12-17T14:35:55+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-09-14T09:57:36+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-12-17T14:35:15+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-12-17T14:35:35+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-11-06T09:22:02+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-11-06T09:21:04+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-10-23T18:59:15+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2020-11-05T09:41:10+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:17:\"gravityformsslack\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2019-12-10T13:40:50+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-05-24T11:45:57+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2019-12-10T13:41:01+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2019-12-10T13:41:05+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2019-12-10T13:41:15+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-05-25T21:11:14+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-05-31T19:45:47+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-03-29T18:53:17+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-05-22T09:33:22+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-04-06T07:06:39+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-06-04T08:28:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-10-02T10:47:29+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-05-31T04:00:39+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-05-24T10:52:41+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-05-20T16:56:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-06-01T17:59:51+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-06-06T17:28:05+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-05-26T23:46:16+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformsstripe\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2019-12-10T13:43:09+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-07-19T17:05:36+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2019-12-10T13:43:21+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2019-12-10T13:43:26+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2019-12-10T13:43:35+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2019-12-10T13:43:38+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-07-23T08:22:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-07-29T17:41:22+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-03-29T19:06:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-07-22T12:43:02+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-07-28T15:41:04+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-06-04T08:42:34+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-10-02T10:47:59+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-07-22T20:35:18+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-07-31T18:10:14+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-07-19T13:45:33+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-09-26T22:23:24+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-06-06T17:35:24+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-07-21T22:07:53+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformssurvey\";a:1:{s:12:\"translations\";a:19:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2019-12-10T13:46:27+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2019-12-10T13:45:34+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-11-06T13:19:33+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2019-12-10T13:45:45+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2019-12-10T13:45:49+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2021-10-02T10:43:16+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-10-21T11:49:45+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-11-06T13:18:23+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-11-06T13:17:26+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-11-06T13:17:06+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-11-06T13:16:42+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-11-06T13:18:45+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2021-09-14T10:15:27+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-12-17T14:59:21+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-12-17T15:04:46+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-11-06T13:18:00+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-11-06T13:19:05+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-06-23T12:56:01+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.7.1\";s:7:\"updated\";s:25:\"2020-11-05T09:28:06+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformstrello\";a:1:{s:12:\"translations\";a:19:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2019-12-10T13:48:10+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2019-12-10T13:48:12+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-13T12:17:22+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2019-12-10T13:48:23+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2019-12-10T13:48:27+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-10-02T10:43:10+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-13T09:00:55+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-27T15:55:09+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2020-06-23T12:56:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-20T21:17:42+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-27T07:07:15+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-27T06:24:00+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-14T10:15:52+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-28T18:01:52+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-27T21:58:43+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-27T16:00:25+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-27T07:38:57+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-29T17:59:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-16T16:50:37+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformstwilio\";a:1:{s:12:\"translations\";a:16:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2019-12-10T13:50:52+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2020-11-06T13:29:03+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2019-12-10T13:51:03+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2021-10-02T10:43:04+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2020-10-21T13:19:12+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2020-11-06T13:27:42+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2020-11-06T13:27:01+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2020-11-06T13:26:40+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2020-11-06T13:26:20+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2020-12-17T14:49:31+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2021-09-14T10:20:15+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2020-12-17T15:01:40+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2020-12-17T15:07:56+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2020-11-06T13:28:04+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2020-11-06T13:28:39+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.8.1\";s:7:\"updated\";s:25:\"2020-11-05T09:27:48+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:28:\"gravityformsuserregistration\";a:1:{s:12:\"translations\";a:20:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2019-12-10T13:56:01+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2020-05-17T14:00:04+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-10-11T17:40:17+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2020-05-17T13:55:15+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2019-12-10T13:55:04+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-10-02T10:42:57+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2019-12-10T13:55:19+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-05-25T21:35:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-10-20T10:33:20+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-03-29T19:18:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-10-17T13:43:41+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-11-01T19:35:43+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-10-10T01:25:05+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-09-14T10:21:08+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-10-08T19:14:13+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-10-25T23:17:18+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-05-20T17:01:22+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-10-27T18:35:13+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-11-04T18:52:12+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:25:\"2021-10-22T08:14:13+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformszapier\";a:1:{s:12:\"translations\";a:14:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-07-19T17:02:54+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-07-23T08:59:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-07-29T17:39:36+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-04-04T10:26:11+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-07-22T12:57:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-07-28T15:43:13+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-06-04T22:00:52+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-10-02T10:50:58+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-07-22T20:35:10+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-07-19T11:08:05+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-07-19T13:23:31+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-06-05T20:44:54+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-06-06T19:46:51+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.1.2\";s:7:\"updated\";s:25:\"2021-07-21T22:08:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformszohocrm\";a:1:{s:12:\"translations\";a:13:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2020-11-10T14:48:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2020-10-21T13:38:20+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2020-11-10T14:47:33+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2020-11-10T14:47:08+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2020-11-10T14:46:42+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2020-11-10T14:45:50+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2020-11-10T14:49:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-09-14T10:22:32+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2020-12-17T15:03:23+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2021-10-25T23:17:08+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2020-11-10T14:47:58+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2020-11-10T14:48:22+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:25:\"2020-11-05T09:40:50+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformsicontact\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T14:02:48+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-05T12:40:54+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T14:02:59+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T14:03:04+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2019-12-10T14:03:14+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-21T13:33:56+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-05T12:39:50+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-05T12:39:21+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-05T12:39:01+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-05T12:38:41+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-05T12:41:52+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-09-14T09:41:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-12-17T14:05:54+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-12-17T14:06:18+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-05T12:40:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-05T12:40:33+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-08-02T17:34:13+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-05T09:26:47+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:24:\"gravityformsemailoctopus\";a:1:{s:12:\"translations\";a:5:{s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-10-21T15:28:15+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-21T02:23:00+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-03-02T08:29:37+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2021-09-14T09:31:28+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-06-01T20:46:31+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}}}s:19:\"gravityformsmailgun\";a:1:{s:12:\"translations\";a:15:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-06-23T13:17:07+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-04-03T17:53:32+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-21T11:48:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-06-23T13:16:42+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-06-23T13:16:48+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-06-23T13:16:50+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-06-23T13:17:03+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-12-17T14:49:05+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-09-14T09:47:07+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-12-17T15:01:51+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-12-17T15:53:35+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-06-23T13:17:10+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-06-23T13:16:44+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-06-23T13:17:12+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-05T09:42:12+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformssendgrid\";a:1:{s:12:\"translations\";a:15:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:05:56+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-02-18T21:05:02+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-10-21T13:18:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:06:48+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-07-04T20:05:08+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-06-28T10:45:00+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-05-23T18:18:20+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:07:21+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2021-09-14T09:57:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-12-17T14:33:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-12-17T14:32:57+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:06:16+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-04T22:55:46+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:05:23+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-05-15T07:53:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformssquare\";a:1:{s:12:\"translations\";a:16:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-07-19T17:04:33+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2020-03-25T17:00:58+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2020-03-25T17:02:03+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-07-23T09:10:13+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-07-29T17:40:29+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-06-03T07:38:12+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-07-22T12:40:25+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-07-28T15:40:36+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-06-08T05:44:49+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-02T10:47:45+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-07-22T20:35:24+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-07-31T18:24:43+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-07-19T15:05:37+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-27T18:35:03+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-06-06T17:31:15+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-07-21T22:07:13+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformshubspot\";a:1:{s:12:\"translations\";a:15:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-11T17:39:56+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2020-03-31T20:33:24+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-25T16:29:18+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-20T10:31:49+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2020-11-01T10:02:39+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-17T13:54:01+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-11-01T19:35:24+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-11-01T14:51:18+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-09-14T09:41:15+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-08T19:13:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-25T23:12:13+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-20T06:50:55+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-27T18:34:53+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-11-04T18:40:38+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-22T08:44:39+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:16:\"gravityformsppcp\";a:1:{s:12:\"translations\";a:14:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-09-13T12:17:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-09-13T09:01:44+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-09-27T15:50:43+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-03-29T18:50:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-09-20T21:18:39+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-09-27T07:06:42+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-09-27T06:25:06+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-10-02T10:46:35+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-09-28T18:01:57+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-09-27T21:57:36+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-09-27T16:09:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-09-26T22:21:41+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-09-29T17:58:11+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2021-09-16T16:49:48+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformsmollie\";a:1:{s:12:\"translations\";a:15:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-05-06T16:23:36+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-10-26T09:00:57+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2021-02-12T12:07:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-11-03T14:33:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-11-01T09:59:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-10-25T15:57:40+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-11-02T07:33:38+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-11-09T06:40:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2021-09-14T09:47:36+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-11-10T22:10:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-11-16T11:26:53+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-10-29T06:00:37+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-11-04T22:51:58+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-05-12T17:29:12+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-10-26T10:11:32+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityforms2checkout\";a:1:{s:12:\"translations\";a:15:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-09-13T12:14:24+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2020-05-17T09:33:00+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-09-13T08:57:46+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-09-13T09:06:50+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-02-02T19:49:22+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-09-20T21:20:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-09-27T07:04:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-09-27T06:12:08+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-10-02T10:44:57+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-09-28T18:02:15+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-09-27T21:54:49+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-09-27T16:08:24+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-09-26T22:17:24+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-09-29T17:55:55+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-09-16T16:49:06+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:32:\"gravityformsadvancedpostcreation\";a:1:{s:12:\"translations\";a:14:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-05-29T10:51:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-10-21T11:23:19+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-05-30T08:43:32+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-05-29T10:52:07+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-05-29T10:50:56+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-05-29T10:50:39+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-05-30T06:35:17+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-09-13T20:53:22+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-06-01T20:44:34+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-06-07T14:59:25+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-05-29T10:51:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-05-29T10:51:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-05-29T10:51:15+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2020-05-29T10:51:06+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformswebhooks\";a:1:{s:12:\"translations\";a:14:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-19T17:04:50+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-23T08:19:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-29T17:38:01+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-05-25T15:11:12+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-22T12:47:49+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-28T15:41:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-08-03T06:03:53+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-10-02T10:49:46+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-22T20:34:31+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-31T18:10:52+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-19T13:24:55+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-09-26T22:24:51+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-08-02T17:40:38+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-21T22:08:05+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:16:\"gravityformspipe\";a:1:{s:12:\"translations\";a:14:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-26T07:37:52+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-20T16:25:47+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-03T14:29:46+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-01T10:02:06+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-25T15:56:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-02T07:32:59+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-09T06:35:56+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-09-14T09:54:12+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-10T22:09:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-16T11:29:56+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-29T05:59:20+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-04T22:40:13+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-05-26T19:35:04+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-26T10:13:02+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:27:\"gravityformsconstantcontact\";a:1:{s:12:\"translations\";a:14:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-26T09:00:35+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-21T11:36:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-03T14:38:13+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-01T10:03:32+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-25T15:55:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-02T07:34:13+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-09T06:35:27+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-09-13T21:02:40+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-10T22:11:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-16T11:27:18+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-29T05:29:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-11-04T22:51:22+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-23T18:56:46+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-26T10:13:10+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:12:\"gravityforms\";a:1:{s:12:\"translations\";a:26:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-03-17T07:33:33+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-03-17T16:02:33+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-03-19T16:58:47+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-09-06T12:27:48+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-03-19T17:00:03+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-10-11T17:38:12+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-03-19T15:10:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-03-19T20:53:31+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-10-02T10:42:01+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-11-29T16:28:24+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2022-01-31T14:38:54+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-11-24T06:37:06+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-11-23T20:38:04+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-05-18T18:24:51+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-10-17T15:29:19+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2022-02-03T13:29:49+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-11-01T19:31:59+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-11-01T14:44:34+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-09-11T22:16:34+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-10-02T10:44:38+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-10-21T18:24:09+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-11-01T14:56:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-10-20T06:48:50+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-10-27T18:30:55+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-11-04T18:39:28+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:8:\"2.5.16.1\";s:7:\"updated\";s:25:\"2021-10-22T08:44:04+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformsrecaptcha\";a:1:{s:12:\"translations\";a:15:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-02T13:30:24+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-08-12T07:58:23+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-02T13:26:19+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-02T13:23:08+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-02T13:26:50+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-02T13:27:19+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-02T13:28:22+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-04T07:24:55+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-10-02T10:47:18+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-02T13:31:24+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-02T13:31:56+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-02T13:32:29+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-02T13:24:39+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-05T20:09:56+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:25:\"2021-06-02T13:33:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}}s:13:\"_last_checked\";i:1645002666;}','no'),(26994,'gf_rest_api_db_version','2.5.10.1','yes'),(26996,'https_detection_errors','a:0:{}','yes'),(26997,'auto_update_core_dev','enabled','yes'),(26998,'auto_update_core_minor','enabled','yes'),(26999,'auto_update_core_major','unset','yes'),(27000,'wp_force_deactivated_plugins','a:0:{}','yes'),(27003,'_transient_timeout_rg_gforms_license','1645132957','no'),(27004,'_transient_rg_gforms_license','a:17:{s:15:\"license_key_md5\";s:32:\"4160075bc309e4dfe1308276413afc5a\";s:12:\"date_created\";s:19:\"2017-09-08 00:10:18\";s:12:\"date_expires\";s:19:\"2022-10-08 16:00:00\";s:9:\"is_active\";s:1:\"1\";s:24:\"is_subscription_canceled\";s:1:\"0\";s:12:\"product_code\";s:5:\"GFDEV\";s:12:\"product_name\";s:31:\"Gravity Forms Developer License\";s:18:\"is_near_expiration\";b:0;s:14:\"days_to_expire\";i:233;s:10:\"is_expired\";b:0;s:8:\"is_valid\";b:1;s:22:\"is_past_renewal_period\";b:0;s:9:\"is_legacy\";b:1;s:9:\"max_sites\";s:9:\"unlimited\";s:12:\"active_sites\";i:2502;s:15:\"remaining_seats\";s:9:\"unlimited\";s:20:\"is_multisite_allowed\";b:1;}','no'),(29439,'_site_transient_timeout_php_check_d564ef3bc004ad591bb7443752129422','1645289360','no'),(29440,'_site_transient_php_check_d564ef3bc004ad591bb7443752129422','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'),(29739,'_transient_timeout_reach_google_fonts','1645639606','no');
INSERT INTO `wp_options` VALUES (29740,'_transient_reach_google_fonts','a:2:{s:4:\"kind\";s:20:\"webfonts#webfontList\";s:5:\"items\";a:1359:{i:0;a:8:{s:6:\"family\";s:7:\"ABeeZee\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/abeezee/v20/esDR31xSG-6AGleN6tKukbcHCpE.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/abeezee/v20/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1;a:8:{s:6:\"family\";s:4:\"Abel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2020-09-10\";s:5:\"files\";a:1:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/abel/v12/MwQ5bhbm2POE6VhLPJp6qGI.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:2;a:8:{s:6:\"family\";s:12:\"Abhaya Libre\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:7:\"sinhala\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:5:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/abhayalibre/v11/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/abhayalibre/v11/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/abhayalibre/v11/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/abhayalibre/v11/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf\";i:800;s:85:\"http://fonts.gstatic.com/s/abhayalibre/v11/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:3;a:8:{s:6:\"family\";s:13:\"Abril Fatface\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/abrilfatface/v18/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:4;a:8:{s:6:\"family\";s:8:\"Aclonica\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/aclonica/v16/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:5;a:8:{s:6:\"family\";s:4:\"Acme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/acme/v17/RrQfboBx-C5_bx3Lb23lzLk.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:6;a:8:{s:6:\"family\";s:5:\"Actor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/actor/v15/wEOzEBbCkc5cO3ekXygtUMIO.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:7;a:8:{s:6:\"family\";s:7:\"Adamina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/adamina/v19/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:8;a:8:{s:6:\"family\";s:10:\"Advent Pro\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"greek\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:7:{i:100;s:79:\"http://fonts.gstatic.com/s/adventpro/v16/V8mCoQfxVT4Dvddr_yOwjVmtLZxcBtItFw.ttf\";i:200;s:80:\"http://fonts.gstatic.com/s/adventpro/v16/V8mDoQfxVT4Dvddr_yOwjfWMDbZyCts0DqQ.ttf\";i:300;s:80:\"http://fonts.gstatic.com/s/adventpro/v16/V8mDoQfxVT4Dvddr_yOwjZGPDbZyCts0DqQ.ttf\";s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/adventpro/v16/V8mAoQfxVT4Dvddr_yOwtT2nKb5ZFtI.ttf\";i:500;s:80:\"http://fonts.gstatic.com/s/adventpro/v16/V8mDoQfxVT4Dvddr_yOwjcmODbZyCts0DqQ.ttf\";i:600;s:80:\"http://fonts.gstatic.com/s/adventpro/v16/V8mDoQfxVT4Dvddr_yOwjeWJDbZyCts0DqQ.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/adventpro/v16/V8mDoQfxVT4Dvddr_yOwjYGIDbZyCts0DqQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:9;a:8:{s:6:\"family\";s:15:\"Aguafina Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/aguafinascript/v14/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:10;a:8:{s:6:\"family\";s:14:\"Akaya Kanadaka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:7:\"kannada\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/akayakanadaka/v14/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:11;a:8:{s:6:\"family\";s:16:\"Akaya Telivigala\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:6:\"telugu\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/akayatelivigala/v20/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:12;a:8:{s:6:\"family\";s:7:\"Akronim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/akronim/v12/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:13;a:8:{s:6:\"family\";s:6:\"Aladin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/aladin/v14/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:14;a:8:{s:6:\"family\";s:5:\"Alata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:64:\"http://fonts.gstatic.com/s/alata/v7/PbytFmztEwbIofe6xKcRQEOX.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:15;a:8:{s:6:\"family\";s:6:\"Alatsi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/alatsi/v7/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:16;a:8:{s:6:\"family\";s:7:\"Aldrich\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2020-09-02\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/aldrich/v11/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:17;a:8:{s:6:\"family\";s:4:\"Alef\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:6:\"hebrew\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/alef/v17/FeVfS0NQpLYgrjJbC5FxxbU.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/alef/v17/FeVQS0NQpLYglo50L5la2bxii28.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:18;a:8:{s:6:\"family\";s:8:\"Alegreya\";s:8:\"variants\";a:12:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:6:\"italic\";i:7;s:9:\"500italic\";i:8;s:9:\"600italic\";i:9;s:9:\"700italic\";i:10;s:9:\"800italic\";i:11;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v26\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:12:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/alegreya/v26/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_KCisSGVrw.ttf\";i:500;s:90:\"http://fonts.gstatic.com/s/alegreya/v26/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_KCisSGVrw.ttf\";i:600;s:90:\"http://fonts.gstatic.com/s/alegreya/v26/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_KCisSGVrw.ttf\";i:700;s:90:\"http://fonts.gstatic.com/s/alegreya/v26/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_KCisSGVrw.ttf\";i:800;s:90:\"http://fonts.gstatic.com/s/alegreya/v26/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_KCisSGVrw.ttf\";i:900;s:90:\"http://fonts.gstatic.com/s/alegreya/v26/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_KCisSGVrw.ttf\";s:6:\"italic\";s:92:\"http://fonts.gstatic.com/s/alegreya/v26/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qmkySFr9V9.ttf\";s:9:\"500italic\";s:92:\"http://fonts.gstatic.com/s/alegreya/v26/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qmkySFr9V9.ttf\";s:9:\"600italic\";s:92:\"http://fonts.gstatic.com/s/alegreya/v26/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqmkySFr9V9.ttf\";s:9:\"700italic\";s:92:\"http://fonts.gstatic.com/s/alegreya/v26/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqmkySFr9V9.ttf\";s:9:\"800italic\";s:92:\"http://fonts.gstatic.com/s/alegreya/v26/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqmkySFr9V9.ttf\";s:9:\"900italic\";s:92:\"http://fonts.gstatic.com/s/alegreya/v26/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqmkySFr9V9.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:19;a:8:{s:6:\"family\";s:11:\"Alegreya SC\";s:8:\"variants\";a:10:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:10:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/alegreyasc/v20/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf\";s:6:\"italic\";s:81:\"http://fonts.gstatic.com/s/alegreyasc/v20/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf\";i:500;s:82:\"http://fonts.gstatic.com/s/alegreyasc/v20/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf\";s:9:\"500italic\";s:85:\"http://fonts.gstatic.com/s/alegreyasc/v20/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/alegreyasc/v20/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf\";s:9:\"700italic\";s:85:\"http://fonts.gstatic.com/s/alegreyasc/v20/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf\";i:800;s:82:\"http://fonts.gstatic.com/s/alegreyasc/v20/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf\";s:9:\"800italic\";s:85:\"http://fonts.gstatic.com/s/alegreyasc/v20/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf\";i:900;s:82:\"http://fonts.gstatic.com/s/alegreyasc/v20/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf\";s:9:\"900italic\";s:85:\"http://fonts.gstatic.com/s/alegreyasc/v20/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:20;a:8:{s:6:\"family\";s:13:\"Alegreya Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:14:{i:100;s:86:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf\";s:9:\"100italic\";s:88:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf\";i:300;s:87:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf\";s:9:\"300italic\";s:90:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf\";s:6:\"italic\";s:86:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf\";s:9:\"500italic\";s:90:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf\";s:9:\"700italic\";s:90:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf\";s:9:\"800italic\";s:90:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf\";i:900;s:87:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf\";s:9:\"900italic\";s:90:\"http://fonts.gstatic.com/s/alegreyasans/v20/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:21;a:8:{s:6:\"family\";s:16:\"Alegreya Sans SC\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:14:{i:100;s:92:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf\";s:9:\"100italic\";s:94:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf\";i:300;s:93:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf\";s:9:\"300italic\";s:96:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf\";s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf\";s:6:\"italic\";s:92:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf\";i:500;s:93:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf\";s:9:\"500italic\";s:96:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf\";i:700;s:93:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf\";s:9:\"700italic\";s:96:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf\";i:800;s:93:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf\";s:9:\"800italic\";s:96:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf\";i:900;s:93:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf\";s:9:\"900italic\";s:96:\"http://fonts.gstatic.com/s/alegreyasanssc/v18/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:22;a:8:{s:6:\"family\";s:4:\"Aleo\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:6:{i:300;s:66:\"http://fonts.gstatic.com/s/aleo/v9/c4mg1nF8G8_syKbr9DVDno985KM.ttf\";s:9:\"300italic\";s:69:\"http://fonts.gstatic.com/s/aleo/v9/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf\";s:7:\"regular\";s:62:\"http://fonts.gstatic.com/s/aleo/v9/c4mv1nF8G8_s8ArD0D1ogoY.ttf\";s:6:\"italic\";s:65:\"http://fonts.gstatic.com/s/aleo/v9/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf\";i:700;s:66:\"http://fonts.gstatic.com/s/aleo/v9/c4mg1nF8G8_syLbs9DVDno985KM.ttf\";s:9:\"700italic\";s:69:\"http://fonts.gstatic.com/s/aleo/v9/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:23;a:8:{s:6:\"family\";s:10:\"Alex Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/alexbrush/v18/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:24;a:8:{s:6:\"family\";s:13:\"Alfa Slab One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/alfaslabone/v16/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:25;a:8:{s:6:\"family\";s:5:\"Alice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/alice/v18/OpNCnoEEmtHa6FcJpA_chzJ0.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:26;a:8:{s:6:\"family\";s:5:\"Alike\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/alike/v18/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:27;a:8:{s:6:\"family\";s:13:\"Alike Angular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/alikeangular/v18/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:28;a:8:{s:6:\"family\";s:5:\"Allan\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/allan/v18/ea8XadU7WuTxEtb2P9SF8nZE.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/allan/v18/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:29;a:8:{s:6:\"family\";s:7:\"Allerta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/allerta/v16/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:30;a:8:{s:6:\"family\";s:15:\"Allerta Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/allertastencil/v16/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:31;a:8:{s:6:\"family\";s:7:\"Allison\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/allison/v7/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:32;a:8:{s:6:\"family\";s:6:\"Allura\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2021-11-04\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/allura/v15/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:33;a:8:{s:6:\"family\";s:7:\"Almarai\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"700\";i:3;s:3:\"800\";}s:7:\"subsets\";a:1:{i:0;s:6:\"arabic\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{i:300;s:74:\"http://fonts.gstatic.com/s/almarai/v11/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/almarai/v11/tsstApxBaigK_hnnc1qPonC3vqc.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/almarai/v11/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/almarai/v11/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:34;a:8:{s:6:\"family\";s:8:\"Almendra\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:4:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/almendra/v20/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf\";s:6:\"italic\";s:75:\"http://fonts.gstatic.com/s/almendra/v20/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/almendra/v20/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf\";s:9:\"700italic\";s:79:\"http://fonts.gstatic.com/s/almendra/v20/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:35;a:8:{s:6:\"family\";s:16:\"Almendra Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/almendradisplay/v23/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:36;a:8:{s:6:\"family\";s:11:\"Almendra SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/almendrasc/v23/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:37;a:8:{s:6:\"family\";s:11:\"Alumni Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:95:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QqFsJ3C8qng.ttf\";i:200;s:95:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QqFsJ3C8qng.ttf\";i:300;s:95:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QqFsJ3C8qng.ttf\";s:7:\"regular\";s:95:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QqFsJ3C8qng.ttf\";i:500;s:95:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QqFsJ3C8qng.ttf\";i:600;s:95:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQqFsJ3C8qng.ttf\";i:700;s:95:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQqFsJ3C8qng.ttf\";i:800;s:95:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQqFsJ3C8qng.ttf\";i:900;s:95:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQqFsJ3C8qng.ttf\";s:9:\"100italic\";s:97:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEN_io6npfB.ttf\";s:9:\"200italic\";s:97:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EN_io6npfB.ttf\";s:9:\"300italic\";s:97:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf\";s:6:\"italic\";s:97:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EN_io6npfB.ttf\";s:9:\"500italic\";s:97:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EN_io6npfB.ttf\";s:9:\"600italic\";s:97:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf\";s:9:\"700italic\";s:97:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf\";s:9:\"800italic\";s:97:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf\";s:9:\"900italic\";s:97:\"http://fonts.gstatic.com/s/alumnisans/v8/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:38;a:8:{s:6:\"family\";s:8:\"Amarante\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/amarante/v20/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:39;a:8:{s:6:\"family\";s:8:\"Amaranth\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/amaranth/v16/KtkuALODe433f0j1zPnCF9GqwnzW.ttf\";s:6:\"italic\";s:75:\"http://fonts.gstatic.com/s/amaranth/v16/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/amaranth/v16/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf\";s:9:\"700italic\";s:79:\"http://fonts.gstatic.com/s/amaranth/v16/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:40;a:8:{s:6:\"family\";s:9:\"Amatic SC\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:6:\"hebrew\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:2:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/amaticsc/v22/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf\";i:700;s:78:\"http://fonts.gstatic.com/s/amaticsc/v22/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:41;a:8:{s:6:\"family\";s:9:\"Amethysta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/amethysta/v14/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:42;a:8:{s:6:\"family\";s:5:\"Amiko\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"600\";i:2;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:3:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/amiko/v10/WwkQxPq1DFK04tqlc17MMZgJ.ttf\";i:600;s:69:\"http://fonts.gstatic.com/s/amiko/v10/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/amiko/v10/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:43;a:8:{s:6:\"family\";s:5:\"Amiri\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/amiri/v23/J7aRnpd8CGxBHqUpvrIw74NL.ttf\";s:6:\"italic\";s:68:\"http://fonts.gstatic.com/s/amiri/v23/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/amiri/v23/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf\";s:9:\"700italic\";s:72:\"http://fonts.gstatic.com/s/amiri/v23/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:44;a:8:{s:6:\"family\";s:5:\"Amita\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/amita/v14/HhyaU5si9Om7PQlvAfSKEZZL.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/amita/v14/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:45;a:8:{s:6:\"family\";s:7:\"Anaheim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/anaheim/v8/8vII7w042Wp87g4G0UTUEE5eK_w.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:46;a:8:{s:6:\"family\";s:10:\"Andada Pro\";s:8:\"variants\";a:10:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:6:\"italic\";i:6;s:9:\"500italic\";i:7;s:9:\"600italic\";i:8;s:9:\"700italic\";i:9;s:9:\"800italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:10:{s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/andadapro/v9/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8cFLzvIt2S.ttf\";i:500;s:92:\"http://fonts.gstatic.com/s/andadapro/v9/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8cFLzvIt2S.ttf\";i:600;s:92:\"http://fonts.gstatic.com/s/andadapro/v9/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8cFLzvIt2S.ttf\";i:700;s:92:\"http://fonts.gstatic.com/s/andadapro/v9/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8cFLzvIt2S.ttf\";i:800;s:92:\"http://fonts.gstatic.com/s/andadapro/v9/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8cFLzvIt2S.ttf\";s:6:\"italic\";s:95:\"http://fonts.gstatic.com/s/andadapro/v9/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHrjNJ82Stjw.ttf\";s:9:\"500italic\";s:95:\"http://fonts.gstatic.com/s/andadapro/v9/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHrjNJ82Stjw.ttf\";s:9:\"600italic\";s:95:\"http://fonts.gstatic.com/s/andadapro/v9/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHrjNJ82Stjw.ttf\";s:9:\"700italic\";s:95:\"http://fonts.gstatic.com/s/andadapro/v9/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHrjNJ82Stjw.ttf\";s:9:\"800italic\";s:95:\"http://fonts.gstatic.com/s/andadapro/v9/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHrjNJ82Stjw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:47;a:8:{s:6:\"family\";s:6:\"Andika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/andika/v17/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:48;a:8:{s:6:\"family\";s:16:\"Andika New Basic\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:4:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/andikanewbasic/v15/taiRGn9tCp-44eleq5Q-mszJivxSSK-UEGKDBz4.ttf\";s:6:\"italic\";s:92:\"http://fonts.gstatic.com/s/andikanewbasic/v15/taiXGn9tCp-44eleq5Q-mszJivxSeK2eFECGFz5VCg.ttf\";i:700;s:93:\"http://fonts.gstatic.com/s/andikanewbasic/v15/taiWGn9tCp-44eleq5Q-mszJivxScBO7NGqoGzdME84.ttf\";s:9:\"700italic\";s:96:\"http://fonts.gstatic.com/s/andikanewbasic/v15/taiUGn9tCp-44eleq5Q-mszJivxSeK2mqG-iHxVJA85Okw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:49;a:8:{s:6:\"family\";s:6:\"Angkor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v26\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/angkor/v26/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:50;a:8:{s:6:\"family\";s:24:\"Annie Use Your Telescope\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:107:\"http://fonts.gstatic.com/s/annieuseyourtelescope/v16/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:51;a:8:{s:6:\"family\";s:13:\"Anonymous Pro\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:5:\"greek\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/anonymouspro/v19/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf\";s:6:\"italic\";s:86:\"http://fonts.gstatic.com/s/anonymouspro/v19/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/anonymouspro/v19/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf\";s:9:\"700italic\";s:90:\"http://fonts.gstatic.com/s/anonymouspro/v19/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:52;a:8:{s:6:\"family\";s:5:\"Antic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/antic/v17/TuGfUVB8XY5DRaZLodgzydtk.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:53;a:8:{s:6:\"family\";s:12:\"Antic Didone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/anticdidone/v14/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:54;a:8:{s:6:\"family\";s:10:\"Antic Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/anticslab/v15/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:55;a:8:{s:6:\"family\";s:5:\"Anton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/anton/v22/1Ptgg87LROyAm0K08i4gS7lu.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:56;a:8:{s:6:\"family\";s:7:\"Antonio\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:7:{i:100;s:86:\"http://fonts.gstatic.com/s/antonio/v8/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.ttf\";i:200;s:86:\"http://fonts.gstatic.com/s/antonio/v8/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtIY2DwSXlM.ttf\";i:300;s:86:\"http://fonts.gstatic.com/s/antonio/v8/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtIY2DwSXlM.ttf\";s:7:\"regular\";s:86:\"http://fonts.gstatic.com/s/antonio/v8/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtIY2DwSXlM.ttf\";i:500;s:86:\"http://fonts.gstatic.com/s/antonio/v8/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtIY2DwSXlM.ttf\";i:600;s:86:\"http://fonts.gstatic.com/s/antonio/v8/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htIY2DwSXlM.ttf\";i:700;s:86:\"http://fonts.gstatic.com/s/antonio/v8/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htIY2DwSXlM.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:57;a:8:{s:6:\"family\";s:6:\"Arapey\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/arapey/v14/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/arapey/v14/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:58;a:8:{s:6:\"family\";s:7:\"Arbutus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/arbutus/v22/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:59;a:8:{s:6:\"family\";s:12:\"Arbutus Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/arbutusslab/v14/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:60;a:8:{s:6:\"family\";s:19:\"Architects Daughter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/architectsdaughter/v17/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:61;a:8:{s:6:\"family\";s:7:\"Archivo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2021-08-18\";s:5:\"files\";a:18:{i:100;s:104:\"http://fonts.gstatic.com/s/archivo/v9/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp8B1oJ0vyVQ.ttf\";i:200;s:104:\"http://fonts.gstatic.com/s/archivo/v9/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp8B1oJ0vyVQ.ttf\";i:300;s:104:\"http://fonts.gstatic.com/s/archivo/v9/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp8B1oJ0vyVQ.ttf\";s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/archivo/v9/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8B1oJ0vyVQ.ttf\";i:500;s:104:\"http://fonts.gstatic.com/s/archivo/v9/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp8B1oJ0vyVQ.ttf\";i:600;s:104:\"http://fonts.gstatic.com/s/archivo/v9/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp8B1oJ0vyVQ.ttf\";i:700;s:104:\"http://fonts.gstatic.com/s/archivo/v9/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp8B1oJ0vyVQ.ttf\";i:800;s:104:\"http://fonts.gstatic.com/s/archivo/v9/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp8B1oJ0vyVQ.ttf\";i:900;s:104:\"http://fonts.gstatic.com/s/archivo/v9/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp8B1oJ0vyVQ.ttf\";s:9:\"100italic\";s:106:\"http://fonts.gstatic.com/s/archivo/v9/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdsBU7iVdxQ.ttf\";s:9:\"200italic\";s:106:\"http://fonts.gstatic.com/s/archivo/v9/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdsBU7iVdxQ.ttf\";s:9:\"300italic\";s:106:\"http://fonts.gstatic.com/s/archivo/v9/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdsBU7iVdxQ.ttf\";s:6:\"italic\";s:106:\"http://fonts.gstatic.com/s/archivo/v9/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdsBU7iVdxQ.ttf\";s:9:\"500italic\";s:106:\"http://fonts.gstatic.com/s/archivo/v9/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdsBU7iVdxQ.ttf\";s:9:\"600italic\";s:106:\"http://fonts.gstatic.com/s/archivo/v9/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdsBU7iVdxQ.ttf\";s:9:\"700italic\";s:106:\"http://fonts.gstatic.com/s/archivo/v9/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdsBU7iVdxQ.ttf\";s:9:\"800italic\";s:106:\"http://fonts.gstatic.com/s/archivo/v9/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdsBU7iVdxQ.ttf\";s:9:\"900italic\";s:106:\"http://fonts.gstatic.com/s/archivo/v9/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdsBU7iVdxQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:62;a:8:{s:6:\"family\";s:13:\"Archivo Black\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/archivoblack/v16/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:63;a:8:{s:6:\"family\";s:14:\"Archivo Narrow\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:6:\"italic\";i:5;s:9:\"500italic\";i:6;s:9:\"600italic\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:8:{s:7:\"regular\";s:103:\"http://fonts.gstatic.com/s/archivonarrow/v21/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKpHOtFCQ76Q.ttf\";i:500;s:103:\"http://fonts.gstatic.com/s/archivonarrow/v21/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKpHOtFCQ76Q.ttf\";i:600;s:103:\"http://fonts.gstatic.com/s/archivonarrow/v21/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKpHOtFCQ76Q.ttf\";i:700;s:103:\"http://fonts.gstatic.com/s/archivonarrow/v21/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf\";s:6:\"italic\";s:105:\"http://fonts.gstatic.com/s/archivonarrow/v21/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53mpNiEr6T6Y.ttf\";s:9:\"500italic\";s:105:\"http://fonts.gstatic.com/s/archivonarrow/v21/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53mpNiEr6T6Y.ttf\";s:9:\"600italic\";s:105:\"http://fonts.gstatic.com/s/archivonarrow/v21/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmpNiEr6T6Y.ttf\";s:9:\"700italic\";s:105:\"http://fonts.gstatic.com/s/archivonarrow/v21/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmpNiEr6T6Y.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:64;a:8:{s:6:\"family\";s:15:\"Are You Serious\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:86:\"http://fonts.gstatic.com/s/areyouserious/v8/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:65;a:8:{s:6:\"family\";s:10:\"Aref Ruqaa\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/arefruqaa/v21/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/arefruqaa/v21/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:66;a:8:{s:6:\"family\";s:13:\"Arima Madurai\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:5:\"tamil\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:8:{i:100;s:86:\"http://fonts.gstatic.com/s/arimamadurai/v12/t5t4IRoeKYORG0WNMgnC3seB1V3PqrGCch4Drg.ttf\";i:200;s:87:\"http://fonts.gstatic.com/s/arimamadurai/v12/t5t7IRoeKYORG0WNMgnC3seB1fHuipusfhcat2c.ttf\";i:300;s:87:\"http://fonts.gstatic.com/s/arimamadurai/v12/t5t7IRoeKYORG0WNMgnC3seB1ZXtipusfhcat2c.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/arimamadurai/v12/t5tmIRoeKYORG0WNMgnC3seB7TnFrpOHYh4.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/arimamadurai/v12/t5t7IRoeKYORG0WNMgnC3seB1c3sipusfhcat2c.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/arimamadurai/v12/t5t7IRoeKYORG0WNMgnC3seB1YXqipusfhcat2c.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/arimamadurai/v12/t5t7IRoeKYORG0WNMgnC3seB1Znpipusfhcat2c.ttf\";i:900;s:87:\"http://fonts.gstatic.com/s/arimamadurai/v12/t5t7IRoeKYORG0WNMgnC3seB1b3oipusfhcat2c.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:67;a:8:{s:6:\"family\";s:5:\"Arimo\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:6:\"italic\";i:5;s:9:\"500italic\";i:6;s:9:\"600italic\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:8:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/arimo/v24/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBxDAVQI4aA.ttf\";i:500;s:83:\"http://fonts.gstatic.com/s/arimo/v24/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBxDAVQI4aA.ttf\";i:600;s:83:\"http://fonts.gstatic.com/s/arimo/v24/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBxDAVQI4aA.ttf\";i:700;s:83:\"http://fonts.gstatic.com/s/arimo/v24/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBxDAVQI4aA.ttf\";s:6:\"italic\";s:85:\"http://fonts.gstatic.com/s/arimo/v24/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrEdwcoaKww.ttf\";s:9:\"500italic\";s:85:\"http://fonts.gstatic.com/s/arimo/v24/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrEdwcoaKww.ttf\";s:9:\"600italic\";s:85:\"http://fonts.gstatic.com/s/arimo/v24/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrEdwcoaKww.ttf\";s:9:\"700italic\";s:85:\"http://fonts.gstatic.com/s/arimo/v24/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrEdwcoaKww.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:68;a:8:{s:6:\"family\";s:8:\"Arizonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/arizonia/v16/neIIzCemt4A5qa7mv6WGHK06UY30.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:69;a:8:{s:6:\"family\";s:6:\"Armata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/armata/v17/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:70;a:8:{s:6:\"family\";s:7:\"Arsenal\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/arsenal/v10/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/arsenal/v10/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/arsenal/v10/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/arsenal/v10/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:71;a:8:{s:6:\"family\";s:8:\"Artifika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/artifika/v18/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:72;a:8:{s:6:\"family\";s:4:\"Arvo\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2020-09-10\";s:5:\"files\";a:4:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/arvo/v14/tDbD2oWUg0MKmSAa7Lzr7vs.ttf\";s:6:\"italic\";s:66:\"http://fonts.gstatic.com/s/arvo/v14/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/arvo/v14/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf\";s:9:\"700italic\";s:70:\"http://fonts.gstatic.com/s/arvo/v14/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:73;a:8:{s:6:\"family\";s:4:\"Arya\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/arya/v17/ga6CawNG-HJd9Ub1-beqdFE.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/arya/v17/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:74;a:8:{s:6:\"family\";s:4:\"Asap\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:6:\"italic\";i:5;s:9:\"500italic\";i:6;s:9:\"600italic\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:8:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/asap/v21/KFO9CniXp96a4Tc2EZzSuDAoKsE61qhOUX-8AEEe.ttf\";i:500;s:80:\"http://fonts.gstatic.com/s/asap/v21/KFO9CniXp96a4Tc2EZzSuDAoKsEI1qhOUX-8AEEe.ttf\";i:600;s:80:\"http://fonts.gstatic.com/s/asap/v21/KFO9CniXp96a4Tc2EZzSuDAoKsHk0ahOUX-8AEEe.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/asap/v21/KFO9CniXp96a4Tc2EZzSuDAoKsHd0ahOUX-8AEEe.ttf\";s:6:\"italic\";s:83:\"http://fonts.gstatic.com/s/asap/v21/KFO7CniXp96ayz4E7kS706qGLdTylUANW3ueBVEeezU.ttf\";s:9:\"500italic\";s:83:\"http://fonts.gstatic.com/s/asap/v21/KFO7CniXp96ayz4E7kS706qGLdTylXINW3ueBVEeezU.ttf\";s:9:\"600italic\";s:83:\"http://fonts.gstatic.com/s/asap/v21/KFO7CniXp96ayz4E7kS706qGLdTylZ4KW3ueBVEeezU.ttf\";s:9:\"700italic\";s:83:\"http://fonts.gstatic.com/s/asap/v21/KFO7CniXp96ayz4E7kS706qGLdTylacKW3ueBVEeezU.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:75;a:8:{s:6:\"family\";s:14:\"Asap Condensed\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:8:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/asapcondensed/v14/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf\";s:6:\"italic\";s:88:\"http://fonts.gstatic.com/s/asapcondensed/v14/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf\";i:500;s:89:\"http://fonts.gstatic.com/s/asapcondensed/v14/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf\";s:9:\"500italic\";s:92:\"http://fonts.gstatic.com/s/asapcondensed/v14/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf\";i:600;s:89:\"http://fonts.gstatic.com/s/asapcondensed/v14/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf\";s:9:\"600italic\";s:92:\"http://fonts.gstatic.com/s/asapcondensed/v14/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf\";i:700;s:89:\"http://fonts.gstatic.com/s/asapcondensed/v14/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf\";s:9:\"700italic\";s:92:\"http://fonts.gstatic.com/s/asapcondensed/v14/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:76;a:8:{s:6:\"family\";s:4:\"Asar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/asar/v20/sZlLdRyI6TBIXkYQDLlTW6E.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:77;a:8:{s:6:\"family\";s:5:\"Asset\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/asset/v22/SLXGc1na-mM4cWImRJqExst1.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:78;a:8:{s:6:\"family\";s:9:\"Assistant\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:6:\"hebrew\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:7:{i:200;s:92:\"http://fonts.gstatic.com/s/assistant/v14/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf\";i:300;s:92:\"http://fonts.gstatic.com/s/assistant/v14/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf\";s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/assistant/v14/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf\";i:500;s:92:\"http://fonts.gstatic.com/s/assistant/v14/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf\";i:600;s:92:\"http://fonts.gstatic.com/s/assistant/v14/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf\";i:700;s:92:\"http://fonts.gstatic.com/s/assistant/v14/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf\";i:800;s:92:\"http://fonts.gstatic.com/s/assistant/v14/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:79;a:8:{s:6:\"family\";s:7:\"Astloch\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/astloch/v24/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/astloch/v24/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:80;a:8:{s:6:\"family\";s:4:\"Asul\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/asul/v17/VuJ-dNjKxYr46fMFXK78JIg.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/asul/v17/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:81;a:8:{s:6:\"family\";s:6:\"Athiti\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:6:{i:200;s:72:\"http://fonts.gstatic.com/s/athiti/v10/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf\";i:300;s:72:\"http://fonts.gstatic.com/s/athiti/v10/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf\";s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/athiti/v10/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf\";i:500;s:72:\"http://fonts.gstatic.com/s/athiti/v10/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf\";i:600;s:72:\"http://fonts.gstatic.com/s/athiti/v10/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/athiti/v10/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:82;a:8:{s:6:\"family\";s:21:\"Atkinson Hyperlegible\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:4:{s:7:\"regular\";s:101:\"http://fonts.gstatic.com/s/atkinsonhyperlegible/v7/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf\";s:6:\"italic\";s:103:\"http://fonts.gstatic.com/s/atkinsonhyperlegible/v7/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055ItWQGCbUWn.ttf\";i:700;s:105:\"http://fonts.gstatic.com/s/atkinsonhyperlegible/v7/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNcy-OZFy-FA.ttf\";s:9:\"700italic\";s:107:\"http://fonts.gstatic.com/s/atkinsonhyperlegible/v7/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWKRlmuFH24.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:83;a:8:{s:6:\"family\";s:4:\"Atma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:7:\"bengali\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:5:{i:300;s:67:\"http://fonts.gstatic.com/s/atma/v13/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf\";s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/atma/v13/uK_84rqWc-Eom25bDj8WIv4.ttf\";i:500;s:67:\"http://fonts.gstatic.com/s/atma/v13/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf\";i:600;s:67:\"http://fonts.gstatic.com/s/atma/v13/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/atma/v13/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:84;a:8:{s:6:\"family\";s:10:\"Atomic Age\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v25\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/atomicage/v25/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:85;a:8:{s:6:\"family\";s:6:\"Aubrey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v25\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/aubrey/v25/q5uGsou7NPBw-p7vugNsCxVEgA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:86;a:8:{s:6:\"family\";s:9:\"Audiowide\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/audiowide/v14/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:87;a:8:{s:6:\"family\";s:10:\"Autour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/autourone/v22/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:88;a:8:{s:6:\"family\";s:7:\"Average\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/average/v14/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:89;a:8:{s:6:\"family\";s:12:\"Average Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/averagesans/v14/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:90;a:8:{s:6:\"family\";s:19:\"Averia Gruesa Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/averiagruesalibre/v11/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:91;a:8:{s:6:\"family\";s:12:\"Averia Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:6:{i:300;s:84:\"http://fonts.gstatic.com/s/averialibre/v9/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf\";s:9:\"300italic\";s:86:\"http://fonts.gstatic.com/s/averialibre/v9/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf\";s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/averialibre/v9/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf\";s:6:\"italic\";s:82:\"http://fonts.gstatic.com/s/averialibre/v9/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf\";i:700;s:84:\"http://fonts.gstatic.com/s/averialibre/v9/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf\";s:9:\"700italic\";s:86:\"http://fonts.gstatic.com/s/averialibre/v9/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:92;a:8:{s:6:\"family\";s:17:\"Averia Sans Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:6:{i:300;s:95:\"http://fonts.gstatic.com/s/averiasanslibre/v11/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf\";s:9:\"300italic\";s:98:\"http://fonts.gstatic.com/s/averiasanslibre/v11/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf\";s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/averiasanslibre/v11/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf\";s:6:\"italic\";s:94:\"http://fonts.gstatic.com/s/averiasanslibre/v11/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf\";i:700;s:95:\"http://fonts.gstatic.com/s/averiasanslibre/v11/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf\";s:9:\"700italic\";s:98:\"http://fonts.gstatic.com/s/averiasanslibre/v11/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:93;a:8:{s:6:\"family\";s:18:\"Averia Serif Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:6:{i:300;s:98:\"http://fonts.gstatic.com/s/averiaseriflibre/v10/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf\";s:9:\"300italic\";s:100:\"http://fonts.gstatic.com/s/averiaseriflibre/v10/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf\";s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/averiaseriflibre/v10/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf\";s:6:\"italic\";s:96:\"http://fonts.gstatic.com/s/averiaseriflibre/v10/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/averiaseriflibre/v10/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf\";s:9:\"700italic\";s:100:\"http://fonts.gstatic.com/s/averiaseriflibre/v10/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:94;a:8:{s:6:\"family\";s:11:\"Azeret Mono\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:95:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh0raa-5s3AA.ttf\";i:200;s:95:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh0raa-5s3AA.ttf\";i:300;s:95:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh0raa-5s3AA.ttf\";s:7:\"regular\";s:95:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh0raa-5s3AA.ttf\";i:500;s:95:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh0raa-5s3AA.ttf\";i:600;s:95:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh0raa-5s3AA.ttf\";i:700;s:95:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh0raa-5s3AA.ttf\";i:800;s:95:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh0raa-5s3AA.ttf\";i:900;s:95:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh0raa-5s3AA.ttf\";s:9:\"100italic\";s:97:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLye2Z4nAN7J.ttf\";s:9:\"200italic\";s:97:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbye2Z4nAN7J.ttf\";s:9:\"300italic\";s:97:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbye2Z4nAN7J.ttf\";s:6:\"italic\";s:97:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbye2Z4nAN7J.ttf\";s:9:\"500italic\";s:97:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbye2Z4nAN7J.ttf\";s:9:\"600italic\";s:97:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlrye2Z4nAN7J.ttf\";s:9:\"700italic\";s:97:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulrye2Z4nAN7J.ttf\";s:9:\"800italic\";s:97:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlrye2Z4nAN7J.ttf\";s:9:\"900italic\";s:97:\"http://fonts.gstatic.com/s/azeretmono/v8/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglrye2Z4nAN7J.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:95;a:8:{s:6:\"family\";s:4:\"B612\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:4:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/b612/v10/3JnySDDxiSz32jm4GDigUXw.ttf\";s:6:\"italic\";s:66:\"http://fonts.gstatic.com/s/b612/v10/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/b612/v10/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf\";s:9:\"700italic\";s:70:\"http://fonts.gstatic.com/s/b612/v10/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:96;a:8:{s:6:\"family\";s:9:\"B612 Mono\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:4:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/b612mono/v10/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf\";s:6:\"italic\";s:76:\"http://fonts.gstatic.com/s/b612mono/v10/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf\";i:700;s:78:\"http://fonts.gstatic.com/s/b612mono/v10/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf\";s:9:\"700italic\";s:80:\"http://fonts.gstatic.com/s/b612mono/v10/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:97;a:8:{s:6:\"family\";s:10:\"Bad Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/badscript/v14/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:98;a:8:{s:6:\"family\";s:7:\"Bahiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/bahiana/v17/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:99;a:8:{s:6:\"family\";s:9:\"Bahianita\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/bahianita/v15/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:100;a:8:{s:6:\"family\";s:12:\"Bai Jamjuree\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:12:{i:200;s:84:\"http://fonts.gstatic.com/s/baijamjuree/v9/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf\";s:9:\"200italic\";s:86:\"http://fonts.gstatic.com/s/baijamjuree/v9/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf\";i:300;s:84:\"http://fonts.gstatic.com/s/baijamjuree/v9/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf\";s:9:\"300italic\";s:86:\"http://fonts.gstatic.com/s/baijamjuree/v9/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf\";s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/baijamjuree/v9/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf\";s:6:\"italic\";s:82:\"http://fonts.gstatic.com/s/baijamjuree/v9/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf\";i:500;s:84:\"http://fonts.gstatic.com/s/baijamjuree/v9/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf\";s:9:\"500italic\";s:86:\"http://fonts.gstatic.com/s/baijamjuree/v9/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf\";i:600;s:84:\"http://fonts.gstatic.com/s/baijamjuree/v9/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf\";s:9:\"600italic\";s:86:\"http://fonts.gstatic.com/s/baijamjuree/v9/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf\";i:700;s:84:\"http://fonts.gstatic.com/s/baijamjuree/v9/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf\";s:9:\"700italic\";s:86:\"http://fonts.gstatic.com/s/baijamjuree/v9/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:101;a:8:{s:6:\"family\";s:10:\"Bakbak One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/bakbakone/v3/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:102;a:8:{s:6:\"family\";s:6:\"Ballet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/ballet/v18/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4G-EiAou6Y.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:103;a:8:{s:6:\"family\";s:7:\"Baloo 2\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:4:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{s:7:\"regular\";s:86:\"http://fonts.gstatic.com/s/baloo2/v11/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv9Fat7WcN.ttf\";i:500;s:86:\"http://fonts.gstatic.com/s/baloo2/v11/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv9Fat7WcN.ttf\";i:600;s:86:\"http://fonts.gstatic.com/s/baloo2/v11/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv9Fat7WcN.ttf\";i:700;s:86:\"http://fonts.gstatic.com/s/baloo2/v11/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv9Fat7WcN.ttf\";i:800;s:86:\"http://fonts.gstatic.com/s/baloo2/v11/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv9Fat7WcN.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:104;a:8:{s:6:\"family\";s:12:\"Baloo Bhai 2\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:4:{i:0;s:8:\"gujarati\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/baloobhai2/v16/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXeCo-jsZzo.ttf\";i:500;s:97:\"http://fonts.gstatic.com/s/baloobhai2/v16/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXeCo-jsZzo.ttf\";i:600;s:97:\"http://fonts.gstatic.com/s/baloobhai2/v16/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXeCo-jsZzo.ttf\";i:700;s:97:\"http://fonts.gstatic.com/s/baloobhai2/v16/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXeCo-jsZzo.ttf\";i:800;s:97:\"http://fonts.gstatic.com/s/baloobhai2/v16/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXeCo-jsZzo.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:105;a:8:{s:6:\"family\";s:16:\"Baloo Bhaijaan 2\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:4:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{s:7:\"regular\";s:105:\"http://fonts.gstatic.com/s/baloobhaijaan2/v5/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP4L4ppfcyC.ttf\";i:500;s:105:\"http://fonts.gstatic.com/s/baloobhaijaan2/v5/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP4L4ppfcyC.ttf\";i:600;s:105:\"http://fonts.gstatic.com/s/baloobhaijaan2/v5/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP4L4ppfcyC.ttf\";i:700;s:105:\"http://fonts.gstatic.com/s/baloobhaijaan2/v5/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP4L4ppfcyC.ttf\";i:800;s:105:\"http://fonts.gstatic.com/s/baloobhaijaan2/v5/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP4L4ppfcyC.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:106;a:8:{s:6:\"family\";s:14:\"Baloo Bhaina 2\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:5:\"oriya\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{s:7:\"regular\";s:102:\"http://fonts.gstatic.com/s/baloobhaina2/v17/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvRfRLYWmZSA.ttf\";i:500;s:102:\"http://fonts.gstatic.com/s/baloobhaina2/v17/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvRfRLYWmZSA.ttf\";i:600;s:102:\"http://fonts.gstatic.com/s/baloobhaina2/v17/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvRfRLYWmZSA.ttf\";i:700;s:102:\"http://fonts.gstatic.com/s/baloobhaina2/v17/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvRfRLYWmZSA.ttf\";i:800;s:102:\"http://fonts.gstatic.com/s/baloobhaina2/v17/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvRfRLYWmZSA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:107;a:8:{s:6:\"family\";s:15:\"Baloo Chettan 2\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:9:\"malayalam\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/baloochettan2/v11/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO1oeH9xI2gc.ttf\";i:500;s:104:\"http://fonts.gstatic.com/s/baloochettan2/v11/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO1oeH9xI2gc.ttf\";i:600;s:104:\"http://fonts.gstatic.com/s/baloochettan2/v11/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO1oeH9xI2gc.ttf\";i:700;s:104:\"http://fonts.gstatic.com/s/baloochettan2/v11/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO1oeH9xI2gc.ttf\";i:800;s:104:\"http://fonts.gstatic.com/s/baloochettan2/v11/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO1oeH9xI2gc.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:108;a:8:{s:6:\"family\";s:10:\"Baloo Da 2\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:4:{i:0;s:7:\"bengali\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/balooda2/v11/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNe55aRa7UE.ttf\";i:500;s:92:\"http://fonts.gstatic.com/s/balooda2/v11/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNe55aRa7UE.ttf\";i:600;s:92:\"http://fonts.gstatic.com/s/balooda2/v11/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNe55aRa7UE.ttf\";i:700;s:92:\"http://fonts.gstatic.com/s/balooda2/v11/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNe55aRa7UE.ttf\";i:800;s:92:\"http://fonts.gstatic.com/s/balooda2/v11/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNe55aRa7UE.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:109;a:8:{s:6:\"family\";s:13:\"Baloo Paaji 2\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:4:{i:0;s:8:\"gurmukhi\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{s:7:\"regular\";s:99:\"http://fonts.gstatic.com/s/baloopaaji2/v17/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74fybRUz1r5t.ttf\";i:500;s:99:\"http://fonts.gstatic.com/s/baloopaaji2/v17/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74fybRUz1r5t.ttf\";i:600;s:99:\"http://fonts.gstatic.com/s/baloopaaji2/v17/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf\";i:700;s:99:\"http://fonts.gstatic.com/s/baloopaaji2/v17/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf\";i:800;s:99:\"http://fonts.gstatic.com/s/baloopaaji2/v17/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:110;a:8:{s:6:\"family\";s:13:\"Baloo Tamma 2\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:4:{i:0;s:7:\"kannada\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{s:7:\"regular\";s:99:\"http://fonts.gstatic.com/s/balootamma2/v10/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-0IF71SGC5.ttf\";i:500;s:99:\"http://fonts.gstatic.com/s/balootamma2/v10/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-0IF71SGC5.ttf\";i:600;s:99:\"http://fonts.gstatic.com/s/balootamma2/v10/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-0IF71SGC5.ttf\";i:700;s:99:\"http://fonts.gstatic.com/s/balootamma2/v10/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-0IF71SGC5.ttf\";i:800;s:99:\"http://fonts.gstatic.com/s/balootamma2/v10/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-0IF71SGC5.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:111;a:8:{s:6:\"family\";s:15:\"Baloo Tammudu 2\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:6:\"telugu\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/balootammudu2/v17/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4c6PZSlGmAA.ttf\";i:500;s:104:\"http://fonts.gstatic.com/s/balootammudu2/v17/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4c6PZSlGmAA.ttf\";i:600;s:104:\"http://fonts.gstatic.com/s/balootammudu2/v17/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4c6PZSlGmAA.ttf\";i:700;s:104:\"http://fonts.gstatic.com/s/balootammudu2/v17/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4c6PZSlGmAA.ttf\";i:800;s:104:\"http://fonts.gstatic.com/s/balootammudu2/v17/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4c6PZSlGmAA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:112;a:8:{s:6:\"family\";s:14:\"Baloo Thambi 2\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:5:\"tamil\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{s:7:\"regular\";s:102:\"http://fonts.gstatic.com/s/baloothambi2/v11/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzaQRG_n4osQ.ttf\";i:500;s:102:\"http://fonts.gstatic.com/s/baloothambi2/v11/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzaQRG_n4osQ.ttf\";i:600;s:102:\"http://fonts.gstatic.com/s/baloothambi2/v11/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzaQRG_n4osQ.ttf\";i:700;s:102:\"http://fonts.gstatic.com/s/baloothambi2/v11/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzaQRG_n4osQ.ttf\";i:800;s:102:\"http://fonts.gstatic.com/s/baloothambi2/v11/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzaQRG_n4osQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:113;a:8:{s:6:\"family\";s:13:\"Balsamiq Sans\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/balsamiqsans/v9/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf\";s:6:\"italic\";s:85:\"http://fonts.gstatic.com/s/balsamiqsans/v9/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf\";i:700;s:86:\"http://fonts.gstatic.com/s/balsamiqsans/v9/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf\";s:9:\"700italic\";s:89:\"http://fonts.gstatic.com/s/balsamiqsans/v9/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:114;a:8:{s:6:\"family\";s:9:\"Balthazar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/balthazar/v15/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:115;a:8:{s:6:\"family\";s:7:\"Bangers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/bangers/v19/FeVQS0BTqb0h60ACL5la2bxii28.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:116;a:8:{s:6:\"family\";s:6:\"Barlow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:18:{i:100;s:70:\"http://fonts.gstatic.com/s/barlow/v11/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf\";s:9:\"100italic\";s:73:\"http://fonts.gstatic.com/s/barlow/v11/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf\";i:200;s:72:\"http://fonts.gstatic.com/s/barlow/v11/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf\";s:9:\"200italic\";s:74:\"http://fonts.gstatic.com/s/barlow/v11/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf\";i:300;s:72:\"http://fonts.gstatic.com/s/barlow/v11/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf\";s:9:\"300italic\";s:74:\"http://fonts.gstatic.com/s/barlow/v11/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf\";s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/barlow/v11/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/barlow/v11/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf\";i:500;s:72:\"http://fonts.gstatic.com/s/barlow/v11/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf\";s:9:\"500italic\";s:74:\"http://fonts.gstatic.com/s/barlow/v11/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf\";i:600;s:72:\"http://fonts.gstatic.com/s/barlow/v11/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf\";s:9:\"600italic\";s:74:\"http://fonts.gstatic.com/s/barlow/v11/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/barlow/v11/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf\";s:9:\"700italic\";s:74:\"http://fonts.gstatic.com/s/barlow/v11/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf\";i:800;s:72:\"http://fonts.gstatic.com/s/barlow/v11/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf\";s:9:\"800italic\";s:74:\"http://fonts.gstatic.com/s/barlow/v11/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf\";i:900;s:72:\"http://fonts.gstatic.com/s/barlow/v11/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf\";s:9:\"900italic\";s:74:\"http://fonts.gstatic.com/s/barlow/v11/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:117;a:8:{s:6:\"family\";s:16:\"Barlow Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:18:{i:100;s:93:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf\";s:9:\"100italic\";s:95:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf\";i:200;s:94:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf\";s:9:\"200italic\";s:97:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf\";i:300;s:94:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf\";s:9:\"300italic\";s:97:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf\";s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf\";s:6:\"italic\";s:93:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf\";i:500;s:94:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf\";s:9:\"500italic\";s:97:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf\";i:600;s:94:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf\";s:9:\"600italic\";s:97:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf\";i:700;s:94:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf\";s:9:\"700italic\";s:97:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf\";i:800;s:94:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf\";s:9:\"800italic\";s:97:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf\";i:900;s:94:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf\";s:9:\"900italic\";s:97:\"http://fonts.gstatic.com/s/barlowcondensed/v11/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:118;a:8:{s:6:\"family\";s:21:\"Barlow Semi Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:18:{i:100;s:103:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf\";s:9:\"100italic\";s:106:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf\";i:200;s:105:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf\";s:9:\"200italic\";s:107:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf\";i:300;s:105:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf\";s:9:\"300italic\";s:107:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf\";s:7:\"regular\";s:101:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf\";s:6:\"italic\";s:103:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf\";i:500;s:105:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf\";s:9:\"500italic\";s:107:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf\";i:600;s:105:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf\";s:9:\"600italic\";s:107:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf\";i:700;s:105:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf\";s:9:\"700italic\";s:107:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf\";i:800;s:105:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf\";s:9:\"800italic\";s:107:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf\";i:900;s:105:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf\";s:9:\"900italic\";s:107:\"http://fonts.gstatic.com/s/barlowsemicondensed/v13/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:119;a:8:{s:6:\"family\";s:10:\"Barriecito\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/barriecito/v15/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:120;a:8:{s:6:\"family\";s:6:\"Barrio\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/barrio/v17/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:121;a:8:{s:6:\"family\";s:5:\"Basic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/basic/v15/xfu_0WLxV2_XKQN34lDVyR7D.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:122;a:8:{s:6:\"family\";s:12:\"Baskervville\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:2:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/baskervville/v11/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf\";s:6:\"italic\";s:84:\"http://fonts.gstatic.com/s/baskervville/v11/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:123;a:8:{s:6:\"family\";s:10:\"Battambang\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"700\";i:4;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:5:{i:100;s:80:\"http://fonts.gstatic.com/s/battambang/v22/uk-kEGe7raEw-HjkzZabNhGp5w50_o9T7Q.ttf\";i:300;s:81:\"http://fonts.gstatic.com/s/battambang/v22/uk-lEGe7raEw-HjkzZabNtmLxyRa8oZK9I0.ttf\";s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/battambang/v22/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf\";i:700;s:81:\"http://fonts.gstatic.com/s/battambang/v22/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf\";i:900;s:81:\"http://fonts.gstatic.com/s/battambang/v22/uk-lEGe7raEw-HjkzZabNvGOxyRa8oZK9I0.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:124;a:8:{s:6:\"family\";s:7:\"Baumans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/baumans/v15/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:125;a:8:{s:6:\"family\";s:5:\"Bayon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v27\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/bayon/v27/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:126;a:8:{s:6:\"family\";s:14:\"Be Vietnam Pro\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:18:{i:100;s:86:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVNSTAyLFyeg_IDWvOJmVES_HRUBX8YYbAiah8.ttf\";s:9:\"100italic\";s:89:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSZZIneh-waA.ttf\";i:200;s:87:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF8yT7wrcwap.ttf\";s:9:\"200italic\";s:90:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRbgJdhapcUU.ttf\";i:300;s:87:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVMSTAyLFyeg_IDWvOJmVES_HScJ18yT7wrcwap.ttf\";s:9:\"300italic\";s:90:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRbgJdhapcUU.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf\";s:6:\"italic\";s:86:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVNSTAyLFyeg_IDWvOJmVES_HwyBX8YYbAiah8.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf\";s:9:\"500italic\";s:90:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRbgJdhapcUU.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf\";s:9:\"600italic\";s:90:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2RbgJdhapcUU.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF8yT7wrcwap.ttf\";s:9:\"700italic\";s:90:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3RbgJdhapcUU.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVMSTAyLFyeg_IDWvOJmVES_HSQI18yT7wrcwap.ttf\";s:9:\"800italic\";s:90:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80RbgJdhapcUU.ttf\";i:900;s:87:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il8yT7wrcwap.ttf\";s:9:\"900italic\";s:90:\"http://fonts.gstatic.com/s/bevietnampro/v8/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1RbgJdhapcUU.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:127;a:8:{s:6:\"family\";s:10:\"Bebas Neue\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/bebasneue/v8/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:128;a:8:{s:6:\"family\";s:8:\"Belgrano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/belgrano/v16/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:129;a:8:{s:6:\"family\";s:9:\"Bellefair\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:6:\"hebrew\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/bellefair/v11/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:130;a:8:{s:6:\"family\";s:7:\"Belleza\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/belleza/v14/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:131;a:8:{s:6:\"family\";s:7:\"Bellota\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:6:{i:300;s:74:\"http://fonts.gstatic.com/s/bellota/v14/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf\";s:9:\"300italic\";s:77:\"http://fonts.gstatic.com/s/bellota/v14/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/bellota/v14/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/bellota/v14/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/bellota/v14/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/bellota/v14/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:132;a:8:{s:6:\"family\";s:12:\"Bellota Text\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:6:{i:300;s:85:\"http://fonts.gstatic.com/s/bellotatext/v14/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf\";s:9:\"300italic\";s:87:\"http://fonts.gstatic.com/s/bellotatext/v14/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf\";s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/bellotatext/v14/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf\";s:6:\"italic\";s:83:\"http://fonts.gstatic.com/s/bellotatext/v14/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/bellotatext/v14/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf\";s:9:\"700italic\";s:87:\"http://fonts.gstatic.com/s/bellotatext/v14/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:133;a:8:{s:6:\"family\";s:9:\"BenchNine\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:3:{i:300;s:79:\"http://fonts.gstatic.com/s/benchnine/v14/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf\";s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/benchnine/v14/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/benchnine/v14/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:134;a:8:{s:6:\"family\";s:5:\"Benne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:7:\"kannada\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/benne/v20/L0xzDFAhn18E6Vjxlt6qTDBN.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:135;a:8:{s:6:\"family\";s:7:\"Bentham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/bentham/v16/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:136;a:8:{s:6:\"family\";s:15:\"Berkshire Swash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/berkshireswash/v14/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:137;a:8:{s:6:\"family\";s:6:\"Besley\";s:8:\"variants\";a:12:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:6:\"italic\";i:7;s:9:\"500italic\";i:8;s:9:\"600italic\";i:9;s:9:\"700italic\";i:10;s:9:\"800italic\";i:11;s:9:\"900italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:12:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/besley/v9/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdRoFPOl8-E.ttf\";i:500;s:84:\"http://fonts.gstatic.com/s/besley/v9/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdRoFPOl8-E.ttf\";i:600;s:84:\"http://fonts.gstatic.com/s/besley/v9/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdRoFPOl8-E.ttf\";i:700;s:84:\"http://fonts.gstatic.com/s/besley/v9/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdRoFPOl8-E.ttf\";i:800;s:84:\"http://fonts.gstatic.com/s/besley/v9/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdRoFPOl8-E.ttf\";i:900;s:84:\"http://fonts.gstatic.com/s/besley/v9/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdRoFPOl8-E.ttf\";s:6:\"italic\";s:87:\"http://fonts.gstatic.com/s/besley/v9/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiENGg4-E04A.ttf\";s:9:\"500italic\";s:87:\"http://fonts.gstatic.com/s/besley/v9/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diENGg4-E04A.ttf\";s:9:\"600italic\";s:87:\"http://fonts.gstatic.com/s/besley/v9/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiENGg4-E04A.ttf\";s:9:\"700italic\";s:87:\"http://fonts.gstatic.com/s/besley/v9/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiENGg4-E04A.ttf\";s:9:\"800italic\";s:87:\"http://fonts.gstatic.com/s/besley/v9/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiENGg4-E04A.ttf\";s:9:\"900italic\";s:87:\"http://fonts.gstatic.com/s/besley/v9/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiENGg4-E04A.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:138;a:8:{s:6:\"family\";s:10:\"Beth Ellen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/bethellen/v15/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:139;a:8:{s:6:\"family\";s:5:\"Bevan\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:2:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/bevan/v18/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf\";s:6:\"italic\";s:68:\"http://fonts.gstatic.com/s/bevan/v18/4iCt6KZ0a9NXjG8YWC7Zs0SJD4U.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:140;a:8:{s:6:\"family\";s:21:\"Big Shoulders Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:118:\"http://fonts.gstatic.com/s/bigshouldersdisplay/v12/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JF46SRP4yZQ.ttf\";i:200;s:118:\"http://fonts.gstatic.com/s/bigshouldersdisplay/v12/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JF46SRP4yZQ.ttf\";i:300;s:118:\"http://fonts.gstatic.com/s/bigshouldersdisplay/v12/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JF46SRP4yZQ.ttf\";s:7:\"regular\";s:118:\"http://fonts.gstatic.com/s/bigshouldersdisplay/v12/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JF46SRP4yZQ.ttf\";i:500;s:118:\"http://fonts.gstatic.com/s/bigshouldersdisplay/v12/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JF46SRP4yZQ.ttf\";i:600;s:118:\"http://fonts.gstatic.com/s/bigshouldersdisplay/v12/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JF46SRP4yZQ.ttf\";i:700;s:118:\"http://fonts.gstatic.com/s/bigshouldersdisplay/v12/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JF46SRP4yZQ.ttf\";i:800;s:118:\"http://fonts.gstatic.com/s/bigshouldersdisplay/v12/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JF46SRP4yZQ.ttf\";i:900;s:118:\"http://fonts.gstatic.com/s/bigshouldersdisplay/v12/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JF46SRP4yZQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:141;a:8:{s:6:\"family\";s:28:\"Big Shoulders Inline Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:133:\"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v18/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR5yPc2Huux.ttf\";i:200;s:133:\"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v18/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R5yPc2Huux.ttf\";i:300;s:133:\"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v18/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R5yPc2Huux.ttf\";s:7:\"regular\";s:133:\"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v18/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R5yPc2Huux.ttf\";i:500;s:133:\"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v18/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R5yPc2Huux.ttf\";i:600;s:133:\"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v18/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR5yPc2Huux.ttf\";i:700;s:133:\"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v18/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR5yPc2Huux.ttf\";i:800;s:133:\"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v18/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR5yPc2Huux.ttf\";i:900;s:133:\"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v18/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR5yPc2Huux.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:142;a:8:{s:6:\"family\";s:25:\"Big Shoulders Inline Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:126:\"http://fonts.gstatic.com/s/bigshouldersinlinetext/v18/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGN7Y6Jsc8c.ttf\";i:200;s:126:\"http://fonts.gstatic.com/s/bigshouldersinlinetext/v18/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GN7Y6Jsc8c.ttf\";i:300;s:126:\"http://fonts.gstatic.com/s/bigshouldersinlinetext/v18/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GN7Y6Jsc8c.ttf\";s:7:\"regular\";s:126:\"http://fonts.gstatic.com/s/bigshouldersinlinetext/v18/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GN7Y6Jsc8c.ttf\";i:500;s:126:\"http://fonts.gstatic.com/s/bigshouldersinlinetext/v18/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GN7Y6Jsc8c.ttf\";i:600;s:126:\"http://fonts.gstatic.com/s/bigshouldersinlinetext/v18/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGN7Y6Jsc8c.ttf\";i:700;s:126:\"http://fonts.gstatic.com/s/bigshouldersinlinetext/v18/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGN7Y6Jsc8c.ttf\";i:800;s:126:\"http://fonts.gstatic.com/s/bigshouldersinlinetext/v18/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGN7Y6Jsc8c.ttf\";i:900;s:126:\"http://fonts.gstatic.com/s/bigshouldersinlinetext/v18/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGN7Y6Jsc8c.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:143;a:8:{s:6:\"family\";s:29:\"Big Shoulders Stencil Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:136:\"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v18/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPKHznJucP9w.ttf\";i:200;s:136:\"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v18/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPKHznJucP9w.ttf\";i:300;s:136:\"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v18/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPKHznJucP9w.ttf\";s:7:\"regular\";s:136:\"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v18/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPKHznJucP9w.ttf\";i:500;s:136:\"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v18/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPKHznJucP9w.ttf\";i:600;s:136:\"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v18/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PKHznJucP9w.ttf\";i:700;s:136:\"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v18/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PKHznJucP9w.ttf\";i:800;s:136:\"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v18/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PKHznJucP9w.ttf\";i:900;s:136:\"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v18/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PKHznJucP9w.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:144;a:8:{s:6:\"family\";s:26:\"Big Shoulders Stencil Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:129:\"http://fonts.gstatic.com/s/bigshouldersstenciltext/v18/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIGS_Py_AWbQ.ttf\";i:200;s:129:\"http://fonts.gstatic.com/s/bigshouldersstenciltext/v18/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIGS_Py_AWbQ.ttf\";i:300;s:129:\"http://fonts.gstatic.com/s/bigshouldersstenciltext/v18/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIGS_Py_AWbQ.ttf\";s:7:\"regular\";s:129:\"http://fonts.gstatic.com/s/bigshouldersstenciltext/v18/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIGS_Py_AWbQ.ttf\";i:500;s:129:\"http://fonts.gstatic.com/s/bigshouldersstenciltext/v18/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIGS_Py_AWbQ.ttf\";i:600;s:129:\"http://fonts.gstatic.com/s/bigshouldersstenciltext/v18/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIGS_Py_AWbQ.ttf\";i:700;s:129:\"http://fonts.gstatic.com/s/bigshouldersstenciltext/v18/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIGS_Py_AWbQ.ttf\";i:800;s:129:\"http://fonts.gstatic.com/s/bigshouldersstenciltext/v18/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIGS_Py_AWbQ.ttf\";i:900;s:129:\"http://fonts.gstatic.com/s/bigshouldersstenciltext/v18/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIGS_Py_AWbQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:145;a:8:{s:6:\"family\";s:18:\"Big Shoulders Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:111:\"http://fonts.gstatic.com/s/bigshoulderstext/v14/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TIPNl6P2pc.ttf\";i:200;s:111:\"http://fonts.gstatic.com/s/bigshoulderstext/v14/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TIPNl6P2pc.ttf\";i:300;s:111:\"http://fonts.gstatic.com/s/bigshoulderstext/v14/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TIPNl6P2pc.ttf\";s:7:\"regular\";s:111:\"http://fonts.gstatic.com/s/bigshoulderstext/v14/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TIPNl6P2pc.ttf\";i:500;s:111:\"http://fonts.gstatic.com/s/bigshoulderstext/v14/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TIPNl6P2pc.ttf\";i:600;s:111:\"http://fonts.gstatic.com/s/bigshoulderstext/v14/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TIPNl6P2pc.ttf\";i:700;s:111:\"http://fonts.gstatic.com/s/bigshoulderstext/v14/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TIPNl6P2pc.ttf\";i:800;s:111:\"http://fonts.gstatic.com/s/bigshoulderstext/v14/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TIPNl6P2pc.ttf\";i:900;s:111:\"http://fonts.gstatic.com/s/bigshoulderstext/v14/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TIPNl6P2pc.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:146;a:8:{s:6:\"family\";s:13:\"Bigelow Rules\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/bigelowrules/v21/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:147;a:8:{s:6:\"family\";s:11:\"Bigshot One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/bigshotone/v23/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:148;a:8:{s:6:\"family\";s:5:\"Bilbo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/bilbo/v18/o-0EIpgpwWwZ210hpIRz4wxE.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:149;a:8:{s:6:\"family\";s:16:\"Bilbo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/bilboswashcaps/v20/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:150;a:8:{s:6:\"family\";s:8:\"BioRhyme\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:5:{i:200;s:76:\"http://fonts.gstatic.com/s/biorhyme/v10/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf\";i:300;s:76:\"http://fonts.gstatic.com/s/biorhyme/v10/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf\";s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/biorhyme/v10/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/biorhyme/v10/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf\";i:800;s:76:\"http://fonts.gstatic.com/s/biorhyme/v10/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:151;a:8:{s:6:\"family\";s:17:\"BioRhyme Expanded\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:5:{i:200;s:96:\"http://fonts.gstatic.com/s/biorhymeexpanded/v17/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf\";i:300;s:96:\"http://fonts.gstatic.com/s/biorhymeexpanded/v17/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf\";s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/biorhymeexpanded/v17/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/biorhymeexpanded/v17/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf\";i:800;s:96:\"http://fonts.gstatic.com/s/biorhymeexpanded/v17/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:152;a:8:{s:6:\"family\";s:10:\"Birthstone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/birthstone/v8/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:153;a:8:{s:6:\"family\";s:17:\"Birthstone Bounce\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"500\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:2:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/birthstonebounce/v7/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf\";i:500;s:95:\"http://fonts.gstatic.com/s/birthstonebounce/v7/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacQJZP1LmD9.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:154;a:8:{s:6:\"family\";s:7:\"Biryani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:7:{i:200;s:74:\"http://fonts.gstatic.com/s/biryani/v11/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/biryani/v11/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/biryani/v11/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/biryani/v11/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/biryani/v11/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/biryani/v11/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/biryani/v11/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:155;a:8:{s:6:\"family\";s:6:\"Bitter\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v25\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:85:\"http://fonts.gstatic.com/s/bitter/v25/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf\";i:200;s:85:\"http://fonts.gstatic.com/s/bitter/v25/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf\";i:300;s:85:\"http://fonts.gstatic.com/s/bitter/v25/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf\";s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/bitter/v25/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/bitter/v25/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/bitter/v25/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/bitter/v25/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf\";i:800;s:85:\"http://fonts.gstatic.com/s/bitter/v25/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf\";i:900;s:85:\"http://fonts.gstatic.com/s/bitter/v25/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf\";s:9:\"100italic\";s:88:\"http://fonts.gstatic.com/s/bitter/v25/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf\";s:9:\"200italic\";s:88:\"http://fonts.gstatic.com/s/bitter/v25/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf\";s:9:\"300italic\";s:88:\"http://fonts.gstatic.com/s/bitter/v25/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf\";s:6:\"italic\";s:88:\"http://fonts.gstatic.com/s/bitter/v25/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf\";s:9:\"500italic\";s:88:\"http://fonts.gstatic.com/s/bitter/v25/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf\";s:9:\"600italic\";s:88:\"http://fonts.gstatic.com/s/bitter/v25/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf\";s:9:\"700italic\";s:88:\"http://fonts.gstatic.com/s/bitter/v25/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf\";s:9:\"800italic\";s:88:\"http://fonts.gstatic.com/s/bitter/v25/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf\";s:9:\"900italic\";s:88:\"http://fonts.gstatic.com/s/bitter/v25/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:156;a:8:{s:6:\"family\";s:23:\"Black And White Picture\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/blackandwhitepicture/v20/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:157;a:8:{s:6:\"family\";s:14:\"Black Han Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/blackhansans/v13/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:158;a:8:{s:6:\"family\";s:13:\"Black Ops One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/blackopsone/v17/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:159;a:8:{s:6:\"family\";s:7:\"Blinker\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:8:{i:100;s:73:\"http://fonts.gstatic.com/s/blinker/v10/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf\";i:200;s:74:\"http://fonts.gstatic.com/s/blinker/v10/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/blinker/v10/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/blinker/v10/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/blinker/v10/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/blinker/v10/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/blinker/v10/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/blinker/v10/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:160;a:8:{s:6:\"family\";s:11:\"Bodoni Moda\";s:8:\"variants\";a:12:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:6:\"italic\";i:7;s:9:\"500italic\";i:8;s:9:\"600italic\";i:9;s:9:\"700italic\";i:10;s:9:\"800italic\";i:11;s:9:\"900italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:12:{s:7:\"regular\";s:112:\"http://fonts.gstatic.com/s/bodonimoda/v7/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIBytVjMYwE.ttf\";i:500;s:112:\"http://fonts.gstatic.com/s/bodonimoda/v7/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIBytVjMYwE.ttf\";i:600;s:112:\"http://fonts.gstatic.com/s/bodonimoda/v7/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIBytVjMYwE.ttf\";i:700;s:112:\"http://fonts.gstatic.com/s/bodonimoda/v7/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIBytVjMYwE.ttf\";i:800;s:112:\"http://fonts.gstatic.com/s/bodonimoda/v7/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIBytVjMYwE.ttf\";i:900;s:112:\"http://fonts.gstatic.com/s/bodonimoda/v7/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIBytVjMYwE.ttf\";s:6:\"italic\";s:115:\"http://fonts.gstatic.com/s/bodonimoda/v7/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4sXrJcwHqoQ.ttf\";s:9:\"500italic\";s:115:\"http://fonts.gstatic.com/s/bodonimoda/v7/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4sXrJcwHqoQ.ttf\";s:9:\"600italic\";s:115:\"http://fonts.gstatic.com/s/bodonimoda/v7/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4sXrJcwHqoQ.ttf\";s:9:\"700italic\";s:115:\"http://fonts.gstatic.com/s/bodonimoda/v7/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4sXrJcwHqoQ.ttf\";s:9:\"800italic\";s:115:\"http://fonts.gstatic.com/s/bodonimoda/v7/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4sXrJcwHqoQ.ttf\";s:9:\"900italic\";s:115:\"http://fonts.gstatic.com/s/bodonimoda/v7/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4sXrJcwHqoQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:161;a:8:{s:6:\"family\";s:5:\"Bokor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v28\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/bokor/v28/m8JcjfpeeaqTiR2WdInbcaxE.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:162;a:8:{s:6:\"family\";s:9:\"Bona Nova\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:6:\"hebrew\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:3:{s:7:\"regular\";s:73:\"http://fonts.gstatic.com/s/bonanova/v7/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf\";s:6:\"italic\";s:75:\"http://fonts.gstatic.com/s/bonanova/v7/B50LF7ZCpX7fcHfvIUB5iaJuPqqSLJYf.ttf\";i:700;s:77:\"http://fonts.gstatic.com/s/bonanova/v7/B50IF7ZCpX7fcHfvIUBxN4dOFISeJY8GgQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:163;a:8:{s:6:\"family\";s:6:\"Bonbon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/bonbon/v24/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:164;a:8:{s:6:\"family\";s:14:\"Bonheur Royale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/bonheurroyale/v7/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:165;a:8:{s:6:\"family\";s:8:\"Boogaloo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/boogaloo/v17/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:166;a:8:{s:6:\"family\";s:10:\"Bowlby One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/bowlbyone/v17/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:167;a:8:{s:6:\"family\";s:13:\"Bowlby One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/bowlbyonesc/v17/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:168;a:8:{s:6:\"family\";s:7:\"Brawler\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/brawler/v16/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:169;a:8:{s:6:\"family\";s:10:\"Bree Serif\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/breeserif/v16/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:170;a:8:{s:6:\"family\";s:12:\"Brygada 1918\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:6:\"italic\";i:5;s:9:\"500italic\";i:6;s:9:\"600italic\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:8:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/brygada1918/v17/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-V8Wu5O3gbo.ttf\";i:500;s:98:\"http://fonts.gstatic.com/s/brygada1918/v17/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-V8Wu5O3gbo.ttf\";i:600;s:98:\"http://fonts.gstatic.com/s/brygada1918/v17/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-V8Wu5O3gbo.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/brygada1918/v17/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-V8Wu5O3gbo.ttf\";s:6:\"italic\";s:101:\"http://fonts.gstatic.com/s/brygada1918/v17/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcv7GykboaLg.ttf\";s:9:\"500italic\";s:101:\"http://fonts.gstatic.com/s/brygada1918/v17/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcv7GykboaLg.ttf\";s:9:\"600italic\";s:101:\"http://fonts.gstatic.com/s/brygada1918/v17/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscv7GykboaLg.ttf\";s:9:\"700italic\";s:101:\"http://fonts.gstatic.com/s/brygada1918/v17/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscv7GykboaLg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:171;a:8:{s:6:\"family\";s:14:\"Bubblegum Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/bubblegumsans/v14/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:172;a:8:{s:6:\"family\";s:11:\"Bubbler One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/bubblerone/v18/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:173;a:8:{s:6:\"family\";s:4:\"Buda\";s:8:\"variants\";a:1:{i:0;s:3:\"300\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{i:300;s:67:\"http://fonts.gstatic.com/s/buda/v23/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:174;a:8:{s:6:\"family\";s:7:\"Buenard\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/buenard/v15/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/buenard/v15/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:175;a:8:{s:6:\"family\";s:6:\"Bungee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/bungee/v9/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:176;a:8:{s:6:\"family\";s:15:\"Bungee Hairline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/bungeehairline/v16/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:177;a:8:{s:6:\"family\";s:13:\"Bungee Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/bungeeinline/v9/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:178;a:8:{s:6:\"family\";s:14:\"Bungee Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/bungeeoutline/v16/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:179;a:8:{s:6:\"family\";s:12:\"Bungee Shade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/bungeeshade/v9/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:180;a:8:{s:6:\"family\";s:10:\"Butcherman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/butcherman/v22/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:181;a:8:{s:6:\"family\";s:14:\"Butterfly Kids\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/butterflykids/v19/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:182;a:8:{s:6:\"family\";s:5:\"Cabin\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:6:\"italic\";i:5;s:9:\"500italic\";i:6;s:9:\"600italic\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2021-01-30\";s:5:\"files\";a:8:{s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/cabin/v18/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf\";i:500;s:100:\"http://fonts.gstatic.com/s/cabin/v18/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf\";i:600;s:100:\"http://fonts.gstatic.com/s/cabin/v18/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf\";i:700;s:100:\"http://fonts.gstatic.com/s/cabin/v18/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf\";s:6:\"italic\";s:103:\"http://fonts.gstatic.com/s/cabin/v18/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf\";s:9:\"500italic\";s:103:\"http://fonts.gstatic.com/s/cabin/v18/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf\";s:9:\"600italic\";s:103:\"http://fonts.gstatic.com/s/cabin/v18/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf\";s:9:\"700italic\";s:103:\"http://fonts.gstatic.com/s/cabin/v18/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:183;a:8:{s:6:\"family\";s:15:\"Cabin Condensed\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/cabincondensed/v17/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf\";i:500;s:92:\"http://fonts.gstatic.com/s/cabincondensed/v17/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf\";i:600;s:92:\"http://fonts.gstatic.com/s/cabincondensed/v17/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf\";i:700;s:92:\"http://fonts.gstatic.com/s/cabincondensed/v17/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:184;a:8:{s:6:\"family\";s:12:\"Cabin Sketch\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/cabinsketch/v17/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/cabinsketch/v17/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:185;a:8:{s:6:\"family\";s:15:\"Caesar Dressing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/caesardressing/v19/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:186;a:8:{s:6:\"family\";s:10:\"Cagliostro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/cagliostro/v19/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:187;a:8:{s:6:\"family\";s:5:\"Cairo\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:8:{i:200;s:83:\"http://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5l2WgsQSaT0J0vRQ.ttf\";i:300;s:83:\"http://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5lB2gsQSaT0J0vRQ.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5lWWgsQSaT0J0vRQ.ttf\";i:500;s:83:\"http://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5la2gsQSaT0J0vRQ.ttf\";i:600;s:83:\"http://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5lh28sQSaT0J0vRQ.ttf\";i:700;s:83:\"http://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5lvm8sQSaT0J0vRQ.ttf\";i:800;s:83:\"http://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5l2W8sQSaT0J0vRQ.ttf\";i:900;s:83:\"http://fonts.gstatic.com/s/cairo/v17/SLXVc1nY6HkvangtZmpcWmhzfH5l8G8sQSaT0J0vRQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:188;a:8:{s:6:\"family\";s:7:\"Caladea\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:4:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/caladea/v5/kJEzBugZ7AAjhybUjR93-9IztOc.ttf\";s:6:\"italic\";s:72:\"http://fonts.gstatic.com/s/caladea/v5/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf\";i:700;s:73:\"http://fonts.gstatic.com/s/caladea/v5/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf\";s:9:\"700italic\";s:76:\"http://fonts.gstatic.com/s/caladea/v5/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:189;a:8:{s:6:\"family\";s:9:\"Calistoga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/calistoga/v8/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:190;a:8:{s:6:\"family\";s:14:\"Calligraffitti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:86:\"http://fonts.gstatic.com/s/calligraffitti/v17/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:191;a:8:{s:6:\"family\";s:6:\"Cambay\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:4:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/cambay/v10/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/cambay/v10/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/cambay/v10/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf\";s:9:\"700italic\";s:74:\"http://fonts.gstatic.com/s/cambay/v10/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:192;a:8:{s:6:\"family\";s:5:\"Cambo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/cambo/v12/IFSqHeNEk8FJk416ok7xkPm8.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:193;a:8:{s:6:\"family\";s:6:\"Candal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/candal/v13/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:194;a:8:{s:6:\"family\";s:9:\"Cantarell\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/cantarell/v13/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf\";s:6:\"italic\";s:77:\"http://fonts.gstatic.com/s/cantarell/v13/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/cantarell/v13/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf\";s:9:\"700italic\";s:81:\"http://fonts.gstatic.com/s/cantarell/v13/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:195;a:8:{s:6:\"family\";s:11:\"Cantata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/cantataone/v13/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:196;a:8:{s:6:\"family\";s:11:\"Cantora One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/cantoraone/v15/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:197;a:8:{s:6:\"family\";s:8:\"Capriola\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/capriola/v11/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:198;a:8:{s:6:\"family\";s:7:\"Caramel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/caramel/v5/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:199;a:8:{s:6:\"family\";s:9:\"Carattere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/carattere/v5/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:200;a:8:{s:6:\"family\";s:5:\"Cardo\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:5:\"greek\";i:1;s:9:\"greek-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:3:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/cardo/v18/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf\";s:6:\"italic\";s:68:\"http://fonts.gstatic.com/s/cardo/v18/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/cardo/v18/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:201;a:8:{s:6:\"family\";s:5:\"Carme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/carme/v14/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:202;a:8:{s:6:\"family\";s:14:\"Carrois Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/carroisgothic/v14/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:203;a:8:{s:6:\"family\";s:17:\"Carrois Gothic SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/carroisgothicsc/v13/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:204;a:8:{s:6:\"family\";s:10:\"Carter One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/carterone/v15/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:205;a:8:{s:6:\"family\";s:7:\"Castoro\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/castoro/v16/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/castoro/v16/1q2EY5yMCld3-O4cLYpOyMQbjEX5fw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:206;a:8:{s:6:\"family\";s:9:\"Catamaran\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:5:\"tamil\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:92:\"http://fonts.gstatic.com/s/catamaran/v14/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf\";i:200;s:92:\"http://fonts.gstatic.com/s/catamaran/v14/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf\";i:300;s:92:\"http://fonts.gstatic.com/s/catamaran/v14/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf\";s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/catamaran/v14/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf\";i:500;s:92:\"http://fonts.gstatic.com/s/catamaran/v14/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf\";i:600;s:92:\"http://fonts.gstatic.com/s/catamaran/v14/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf\";i:700;s:92:\"http://fonts.gstatic.com/s/catamaran/v14/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf\";i:800;s:92:\"http://fonts.gstatic.com/s/catamaran/v14/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf\";i:900;s:92:\"http://fonts.gstatic.com/s/catamaran/v14/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:207;a:8:{s:6:\"family\";s:6:\"Caudex\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"greek\";i:1;s:9:\"greek-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:4:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/caudex/v13/esDQ311QOP6BJUrIyviAnb4eEw.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/caudex/v13/esDS311QOP6BJUr4yPKEv7sOE4in.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/caudex/v13/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf\";s:9:\"700italic\";s:74:\"http://fonts.gstatic.com/s/caudex/v13/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:208;a:8:{s:6:\"family\";s:6:\"Caveat\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/caveat/v14/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/caveat/v14/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/caveat/v14/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/caveat/v14/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:209;a:8:{s:6:\"family\";s:12:\"Caveat Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/caveatbrush/v9/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:210;a:8:{s:6:\"family\";s:18:\"Cedarville Cursive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:95:\"http://fonts.gstatic.com/s/cedarvillecursive/v15/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:211;a:8:{s:6:\"family\";s:11:\"Ceviche One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/cevicheone/v14/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:212;a:8:{s:6:\"family\";s:12:\"Chakra Petch\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:10:{i:300;s:84:\"http://fonts.gstatic.com/s/chakrapetch/v8/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf\";s:9:\"300italic\";s:86:\"http://fonts.gstatic.com/s/chakrapetch/v8/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf\";s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/chakrapetch/v8/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf\";s:6:\"italic\";s:82:\"http://fonts.gstatic.com/s/chakrapetch/v8/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf\";i:500;s:84:\"http://fonts.gstatic.com/s/chakrapetch/v8/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf\";s:9:\"500italic\";s:86:\"http://fonts.gstatic.com/s/chakrapetch/v8/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf\";i:600;s:84:\"http://fonts.gstatic.com/s/chakrapetch/v8/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf\";s:9:\"600italic\";s:86:\"http://fonts.gstatic.com/s/chakrapetch/v8/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf\";i:700;s:84:\"http://fonts.gstatic.com/s/chakrapetch/v8/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf\";s:9:\"700italic\";s:86:\"http://fonts.gstatic.com/s/chakrapetch/v8/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:213;a:8:{s:6:\"family\";s:6:\"Changa\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:7:{i:200;s:85:\"http://fonts.gstatic.com/s/changa/v17/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf\";i:300;s:85:\"http://fonts.gstatic.com/s/changa/v17/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf\";s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/changa/v17/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/changa/v17/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/changa/v17/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/changa/v17/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf\";i:800;s:85:\"http://fonts.gstatic.com/s/changa/v17/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:214;a:8:{s:6:\"family\";s:10:\"Changa One\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/changaone/v16/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf\";s:6:\"italic\";s:79:\"http://fonts.gstatic.com/s/changaone/v16/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:215;a:8:{s:6:\"family\";s:6:\"Chango\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/chango/v19/2V0cKI0OB5U7WaJyz324TFUaAw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:216;a:8:{s:6:\"family\";s:5:\"Charm\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:64:\"http://fonts.gstatic.com/s/charm/v8/7cHmv4oii5K0MeYvIe804WIo.ttf\";i:700;s:68:\"http://fonts.gstatic.com/s/charm/v8/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:217;a:8:{s:6:\"family\";s:10:\"Charmonman\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/charmonman/v16/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf\";i:700;s:81:\"http://fonts.gstatic.com/s/charmonman/v16/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:218;a:8:{s:6:\"family\";s:8:\"Chathura\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:5:{i:100;s:75:\"http://fonts.gstatic.com/s/chathura/v18/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf\";i:300;s:76:\"http://fonts.gstatic.com/s/chathura/v18/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf\";s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/chathura/v18/_gP71R7-rzUuVjim418goUC5S-Zy.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/chathura/v18/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf\";i:800;s:76:\"http://fonts.gstatic.com/s/chathura/v18/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:219;a:8:{s:6:\"family\";s:18:\"Chau Philomene One\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/chauphilomeneone/v13/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf\";s:6:\"italic\";s:96:\"http://fonts.gstatic.com/s/chauphilomeneone/v13/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:220;a:8:{s:6:\"family\";s:9:\"Chela One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/chelaone/v19/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:221;a:8:{s:6:\"family\";s:14:\"Chelsea Market\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/chelseamarket/v11/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:222;a:8:{s:6:\"family\";s:6:\"Chenla\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"khmer\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2021-12-01\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/chenla/v23/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:223;a:8:{s:6:\"family\";s:7:\"Cherish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/cherish/v5/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:224;a:8:{s:6:\"family\";s:17:\"Cherry Cream Soda\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/cherrycreamsoda/v13/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:225;a:8:{s:6:\"family\";s:12:\"Cherry Swash\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/cherryswash/v16/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/cherryswash/v16/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:226;a:8:{s:6:\"family\";s:5:\"Chewy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2020-09-02\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/chewy/v12/uK_94ruUb-k-wk5xIDMfO-ed.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:227;a:8:{s:6:\"family\";s:6:\"Chicle\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/chicle/v19/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:228;a:8:{s:6:\"family\";s:8:\"Chilanka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"malayalam\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/chilanka/v16/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:229;a:8:{s:6:\"family\";s:5:\"Chivo\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:8:{i:300;s:69:\"http://fonts.gstatic.com/s/chivo/v16/va9F4kzIxd1KFrjDY8Z_uqzGQC_-.ttf\";s:9:\"300italic\";s:72:\"http://fonts.gstatic.com/s/chivo/v16/va9D4kzIxd1KFrBteUp9sKjkRT_-bF0.ttf\";s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/chivo/v16/va9I4kzIxd1KFoBvS-J3kbDP.ttf\";s:6:\"italic\";s:68:\"http://fonts.gstatic.com/s/chivo/v16/va9G4kzIxd1KFrBtQeZVlKDPWTY.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/chivo/v16/va9F4kzIxd1KFrjTZMZ_uqzGQC_-.ttf\";s:9:\"700italic\";s:72:\"http://fonts.gstatic.com/s/chivo/v16/va9D4kzIxd1KFrBteVp6sKjkRT_-bF0.ttf\";i:900;s:69:\"http://fonts.gstatic.com/s/chivo/v16/va9F4kzIxd1KFrjrZsZ_uqzGQC_-.ttf\";s:9:\"900italic\";s:72:\"http://fonts.gstatic.com/s/chivo/v16/va9D4kzIxd1KFrBteWJ4sKjkRT_-bF0.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:230;a:8:{s:6:\"family\";s:8:\"Chonburi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/chonburi/v8/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:231;a:8:{s:6:\"family\";s:6:\"Cinzel\";s:8:\"variants\";a:6:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:6:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/cinzel/v16/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/cinzel/v16/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/cinzel/v16/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/cinzel/v16/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf\";i:800;s:85:\"http://fonts.gstatic.com/s/cinzel/v16/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf\";i:900;s:85:\"http://fonts.gstatic.com/s/cinzel/v16/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:232;a:8:{s:6:\"family\";s:17:\"Cinzel Decorative\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"700\";i:2;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:3:{s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/cinzeldecorative/v12/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/cinzeldecorative/v12/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf\";i:900;s:96:\"http://fonts.gstatic.com/s/cinzeldecorative/v12/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:233;a:8:{s:6:\"family\";s:14:\"Clicker Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/clickerscript/v11/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:234;a:8:{s:6:\"family\";s:4:\"Coda\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/coda/v19/SLXHc1jY5nQ8JUIMapaN39I.ttf\";i:800;s:67:\"http://fonts.gstatic.com/s/coda/v19/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:235;a:8:{s:6:\"family\";s:12:\"Coda Caption\";s:8:\"variants\";a:1:{i:0;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{i:800;s:85:\"http://fonts.gstatic.com/s/codacaption/v17/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:236;a:8:{s:6:\"family\";s:8:\"Codystar\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{i:300;s:76:\"http://fonts.gstatic.com/s/codystar/v13/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf\";s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/codystar/v13/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:237;a:8:{s:6:\"family\";s:5:\"Coiny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:5:\"tamil\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/coiny/v14/gyByhwU1K989PXwbElSvO5Tc.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:238;a:8:{s:6:\"family\";s:5:\"Combo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/combo/v19/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:239;a:8:{s:6:\"family\";s:9:\"Comfortaa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v37\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:92:\"http://fonts.gstatic.com/s/comfortaa/v37/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf\";s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/comfortaa/v37/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf\";i:500;s:92:\"http://fonts.gstatic.com/s/comfortaa/v37/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf\";i:600;s:92:\"http://fonts.gstatic.com/s/comfortaa/v37/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf\";i:700;s:92:\"http://fonts.gstatic.com/s/comfortaa/v37/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:240;a:8:{s:6:\"family\";s:9:\"Comforter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/comforter/v3/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:241;a:8:{s:6:\"family\";s:15:\"Comforter Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/comforterbrush/v3/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:242;a:8:{s:6:\"family\";s:10:\"Comic Neue\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:6:{i:300;s:79:\"http://fonts.gstatic.com/s/comicneue/v6/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf\";s:9:\"300italic\";s:82:\"http://fonts.gstatic.com/s/comicneue/v6/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf\";s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/comicneue/v6/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf\";s:6:\"italic\";s:78:\"http://fonts.gstatic.com/s/comicneue/v6/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/comicneue/v6/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf\";s:9:\"700italic\";s:82:\"http://fonts.gstatic.com/s/comicneue/v6/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:243;a:8:{s:6:\"family\";s:11:\"Coming Soon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/comingsoon/v17/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:244;a:8:{s:6:\"family\";s:12:\"Commissioner\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:99:\"http://fonts.gstatic.com/s/commissioner/v10/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ni-IO9pOXuRoaY.ttf\";i:200;s:99:\"http://fonts.gstatic.com/s/commissioner/v10/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Fi_IO9pOXuRoaY.ttf\";i:300;s:99:\"http://fonts.gstatic.com/s/commissioner/v10/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ia_IO9pOXuRoaY.ttf\";s:7:\"regular\";s:99:\"http://fonts.gstatic.com/s/commissioner/v10/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ni_IO9pOXuRoaY.ttf\";i:500;s:99:\"http://fonts.gstatic.com/s/commissioner/v10/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Oq_IO9pOXuRoaY.ttf\";i:600;s:99:\"http://fonts.gstatic.com/s/commissioner/v10/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Aa4IO9pOXuRoaY.ttf\";i:700;s:99:\"http://fonts.gstatic.com/s/commissioner/v10/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5D-4IO9pOXuRoaY.ttf\";i:800;s:99:\"http://fonts.gstatic.com/s/commissioner/v10/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Fi4IO9pOXuRoaY.ttf\";i:900;s:99:\"http://fonts.gstatic.com/s/commissioner/v10/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5HG4IO9pOXuRoaY.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:245;a:8:{s:6:\"family\";s:11:\"Concert One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/concertone/v16/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:246;a:8:{s:6:\"family\";s:9:\"Condiment\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/condiment/v18/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:247;a:8:{s:6:\"family\";s:7:\"Content\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"khmer\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/content/v15/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/content/v15/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:248;a:8:{s:6:\"family\";s:12:\"Contrail One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/contrailone/v13/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:249;a:8:{s:6:\"family\";s:11:\"Convergence\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:79:\"http://fonts.gstatic.com/s/convergence/v13/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:250;a:8:{s:6:\"family\";s:6:\"Cookie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/cookie/v16/syky-y18lb0tSbfNlQCT9tPdpw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:251;a:8:{s:6:\"family\";s:5:\"Copse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/copse/v13/11hPGpDKz1rGb0djHkihUb-A.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:252;a:8:{s:6:\"family\";s:6:\"Corben\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/corben/v17/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/corben/v17/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:253;a:8:{s:6:\"family\";s:9:\"Corinthia\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:2:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/corinthia/v7/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf\";i:700;s:78:\"http://fonts.gstatic.com/s/corinthia/v7/wEO6EBrAnchaJyPMHE097d8v1GAbgbLXQA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:254;a:8:{s:6:\"family\";s:9:\"Cormorant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:10:{i:300;s:79:\"http://fonts.gstatic.com/s/cormorant/v14/H4cgBXOCl9bbnla_nHIiRLmYgoyyYzFzFw.ttf\";s:9:\"300italic\";s:81:\"http://fonts.gstatic.com/s/cormorant/v14/H4c-BXOCl9bbnla_nHIq6qMUgIa2QTRjF8ER.ttf\";s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/cormorant/v14/H4clBXOCl9bbnla_nHIa6JG8iqeuag.ttf\";s:6:\"italic\";s:77:\"http://fonts.gstatic.com/s/cormorant/v14/H4cjBXOCl9bbnla_nHIq6pu4qKK-aihq.ttf\";i:500;s:79:\"http://fonts.gstatic.com/s/cormorant/v14/H4cgBXOCl9bbnla_nHIiHLiYgoyyYzFzFw.ttf\";s:9:\"500italic\";s:81:\"http://fonts.gstatic.com/s/cormorant/v14/H4c-BXOCl9bbnla_nHIq6qNMgYa2QTRjF8ER.ttf\";i:600;s:79:\"http://fonts.gstatic.com/s/cormorant/v14/H4cgBXOCl9bbnla_nHIiML-YgoyyYzFzFw.ttf\";s:9:\"600italic\";s:81:\"http://fonts.gstatic.com/s/cormorant/v14/H4c-BXOCl9bbnla_nHIq6qNghoa2QTRjF8ER.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/cormorant/v14/H4cgBXOCl9bbnla_nHIiVL6YgoyyYzFzFw.ttf\";s:9:\"700italic\";s:81:\"http://fonts.gstatic.com/s/cormorant/v14/H4c-BXOCl9bbnla_nHIq6qMEh4a2QTRjF8ER.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:255;a:8:{s:6:\"family\";s:18:\"Cormorant Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:10:{i:300;s:99:\"http://fonts.gstatic.com/s/cormorantgaramond/v14/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf\";s:9:\"300italic\";s:101:\"http://fonts.gstatic.com/s/cormorantgaramond/v14/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf\";s:7:\"regular\";s:95:\"http://fonts.gstatic.com/s/cormorantgaramond/v14/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf\";s:6:\"italic\";s:97:\"http://fonts.gstatic.com/s/cormorantgaramond/v14/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf\";i:500;s:99:\"http://fonts.gstatic.com/s/cormorantgaramond/v14/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf\";s:9:\"500italic\";s:101:\"http://fonts.gstatic.com/s/cormorantgaramond/v14/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf\";i:600;s:99:\"http://fonts.gstatic.com/s/cormorantgaramond/v14/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf\";s:9:\"600italic\";s:101:\"http://fonts.gstatic.com/s/cormorantgaramond/v14/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf\";i:700;s:99:\"http://fonts.gstatic.com/s/cormorantgaramond/v14/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf\";s:9:\"700italic\";s:101:\"http://fonts.gstatic.com/s/cormorantgaramond/v14/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:256;a:8:{s:6:\"family\";s:16:\"Cormorant Infant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:10:{i:300;s:94:\"http://fonts.gstatic.com/s/cormorantinfant/v14/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf\";s:9:\"300italic\";s:97:\"http://fonts.gstatic.com/s/cormorantinfant/v14/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf\";s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/cormorantinfant/v14/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf\";s:6:\"italic\";s:93:\"http://fonts.gstatic.com/s/cormorantinfant/v14/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf\";i:500;s:94:\"http://fonts.gstatic.com/s/cormorantinfant/v14/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf\";s:9:\"500italic\";s:97:\"http://fonts.gstatic.com/s/cormorantinfant/v14/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf\";i:600;s:94:\"http://fonts.gstatic.com/s/cormorantinfant/v14/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf\";s:9:\"600italic\";s:97:\"http://fonts.gstatic.com/s/cormorantinfant/v14/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf\";i:700;s:94:\"http://fonts.gstatic.com/s/cormorantinfant/v14/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf\";s:9:\"700italic\";s:97:\"http://fonts.gstatic.com/s/cormorantinfant/v14/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:257;a:8:{s:6:\"family\";s:12:\"Cormorant SC\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:5:{i:300;s:85:\"http://fonts.gstatic.com/s/cormorantsc/v14/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf\";s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/cormorantsc/v14/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/cormorantsc/v14/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/cormorantsc/v14/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/cormorantsc/v14/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:258;a:8:{s:6:\"family\";s:17:\"Cormorant Unicase\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:5:{i:300;s:96:\"http://fonts.gstatic.com/s/cormorantunicase/v21/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf\";s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/cormorantunicase/v21/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/cormorantunicase/v21/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/cormorantunicase/v21/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/cormorantunicase/v21/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:259;a:8:{s:6:\"family\";s:17:\"Cormorant Upright\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:5:{i:300;s:96:\"http://fonts.gstatic.com/s/cormorantupright/v16/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf\";s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/cormorantupright/v16/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/cormorantupright/v16/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/cormorantupright/v16/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/cormorantupright/v16/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:260;a:8:{s:6:\"family\";s:9:\"Courgette\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/courgette/v12/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:261;a:8:{s:6:\"family\";s:13:\"Courier Prime\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/courierprime/v5/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf\";s:6:\"italic\";s:85:\"http://fonts.gstatic.com/s/courierprime/v5/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf\";i:700;s:86:\"http://fonts.gstatic.com/s/courierprime/v5/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf\";s:9:\"700italic\";s:89:\"http://fonts.gstatic.com/s/courierprime/v5/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:262;a:8:{s:6:\"family\";s:7:\"Cousine\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/cousine/v22/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/cousine/v22/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/cousine/v22/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/cousine/v22/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:263;a:8:{s:6:\"family\";s:8:\"Coustard\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/coustard/v14/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf\";i:900;s:76:\"http://fonts.gstatic.com/s/coustard/v14/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:264;a:8:{s:6:\"family\";s:21:\"Covered By Your Grace\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/coveredbyyourgrace/v13/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:265;a:8:{s:6:\"family\";s:12:\"Crafty Girls\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/craftygirls/v10/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:266;a:8:{s:6:\"family\";s:9:\"Creepster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/creepster/v9/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:267;a:8:{s:6:\"family\";s:11:\"Crete Round\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:2:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/creteround/v13/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf\";s:6:\"italic\";s:81:\"http://fonts.gstatic.com/s/creteround/v13/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:268;a:8:{s:6:\"family\";s:11:\"Crimson Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:9:\"200italic\";i:9;s:9:\"300italic\";i:10;s:6:\"italic\";i:11;s:9:\"500italic\";i:12;s:9:\"600italic\";i:13;s:9:\"700italic\";i:14;s:9:\"800italic\";i:15;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:16:{i:200;s:96:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf\";i:300;s:96:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf\";s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf\";i:800;s:96:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf\";i:900;s:96:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf\";s:9:\"200italic\";s:98:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf\";s:9:\"300italic\";s:98:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf\";s:6:\"italic\";s:98:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf\";s:9:\"500italic\";s:98:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf\";s:9:\"600italic\";s:98:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf\";s:9:\"700italic\";s:98:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf\";s:9:\"800italic\";s:98:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf\";s:9:\"900italic\";s:98:\"http://fonts.gstatic.com/s/crimsonpro/v20/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:269;a:8:{s:6:\"family\";s:13:\"Croissant One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/croissantone/v18/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:270;a:8:{s:6:\"family\";s:7:\"Crushed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/crushed/v23/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:271;a:8:{s:6:\"family\";s:6:\"Cuprum\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:6:\"italic\";i:5;s:9:\"500italic\";i:6;s:9:\"600italic\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:8:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/cuprum/v18/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/cuprum/v18/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/cuprum/v18/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/cuprum/v18/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf\";s:6:\"italic\";s:88:\"http://fonts.gstatic.com/s/cuprum/v18/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf\";s:9:\"500italic\";s:88:\"http://fonts.gstatic.com/s/cuprum/v18/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf\";s:9:\"600italic\";s:88:\"http://fonts.gstatic.com/s/cuprum/v18/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf\";s:9:\"700italic\";s:88:\"http://fonts.gstatic.com/s/cuprum/v18/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:272;a:8:{s:6:\"family\";s:9:\"Cute Font\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/cutefont/v18/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:273;a:8:{s:6:\"family\";s:6:\"Cutive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/cutive/v15/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:274;a:8:{s:6:\"family\";s:11:\"Cutive Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/cutivemono/v12/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:275;a:8:{s:6:\"family\";s:7:\"DM Mono\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:6:{i:300;s:72:\"http://fonts.gstatic.com/s/dmmono/v8/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf\";s:9:\"300italic\";s:75:\"http://fonts.gstatic.com/s/dmmono/v8/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf\";s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/dmmono/v8/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf\";s:6:\"italic\";s:71:\"http://fonts.gstatic.com/s/dmmono/v8/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf\";i:500;s:72:\"http://fonts.gstatic.com/s/dmmono/v8/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf\";s:9:\"500italic\";s:75:\"http://fonts.gstatic.com/s/dmmono/v8/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:276;a:8:{s:6:\"family\";s:7:\"DM Sans\";s:8:\"variants\";a:6:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:6:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/dmsans/v10/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\";s:6:\"italic\";s:72:\"http://fonts.gstatic.com/s/dmsans/v10/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf\";i:500;s:73:\"http://fonts.gstatic.com/s/dmsans/v10/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf\";s:9:\"500italic\";s:76:\"http://fonts.gstatic.com/s/dmsans/v10/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf\";i:700;s:73:\"http://fonts.gstatic.com/s/dmsans/v10/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf\";s:9:\"700italic\";s:76:\"http://fonts.gstatic.com/s/dmsans/v10/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:277;a:8:{s:6:\"family\";s:16:\"DM Serif Display\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:2:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/dmserifdisplay/v9/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf\";s:6:\"italic\";s:91:\"http://fonts.gstatic.com/s/dmserifdisplay/v9/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:278;a:8:{s:6:\"family\";s:13:\"DM Serif Text\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/dmseriftext/v8/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf\";s:6:\"italic\";s:84:\"http://fonts.gstatic.com/s/dmseriftext/v8/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:279;a:8:{s:6:\"family\";s:6:\"Damion\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2020-09-02\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/damion/v10/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:280;a:8:{s:6:\"family\";s:14:\"Dancing Script\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:103:\"http://fonts.gstatic.com/s/dancingscript/v22/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf\";i:500;s:103:\"http://fonts.gstatic.com/s/dancingscript/v22/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf\";i:600;s:103:\"http://fonts.gstatic.com/s/dancingscript/v22/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf\";i:700;s:103:\"http://fonts.gstatic.com/s/dancingscript/v22/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:281;a:8:{s:6:\"family\";s:7:\"Dangrek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/dangrek/v24/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:282;a:8:{s:6:\"family\";s:16:\"Darker Grotesque\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:7:{i:300;s:93:\"http://fonts.gstatic.com/s/darkergrotesque/v5/U9MA6cuh-mLQlC4BKCtayOfARkSVoxr2AW8hTOsXsX0.ttf\";s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/darkergrotesque/v5/U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI.ttf\";i:500;s:93:\"http://fonts.gstatic.com/s/darkergrotesque/v5/U9MA6cuh-mLQlC4BKCtayOfARkSVo0L3AW8hTOsXsX0.ttf\";i:600;s:93:\"http://fonts.gstatic.com/s/darkergrotesque/v5/U9MA6cuh-mLQlC4BKCtayOfARkSVo27wAW8hTOsXsX0.ttf\";i:700;s:93:\"http://fonts.gstatic.com/s/darkergrotesque/v5/U9MA6cuh-mLQlC4BKCtayOfARkSVowrxAW8hTOsXsX0.ttf\";i:800;s:93:\"http://fonts.gstatic.com/s/darkergrotesque/v5/U9MA6cuh-mLQlC4BKCtayOfARkSVoxbyAW8hTOsXsX0.ttf\";i:900;s:93:\"http://fonts.gstatic.com/s/darkergrotesque/v5/U9MA6cuh-mLQlC4BKCtayOfARkSVozLzAW8hTOsXsX0.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:283;a:8:{s:6:\"family\";s:11:\"David Libre\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:6:\"hebrew\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:3:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/davidlibre/v9/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf\";i:500;s:81:\"http://fonts.gstatic.com/s/davidlibre/v9/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf\";i:700;s:81:\"http://fonts.gstatic.com/s/davidlibre/v9/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:284;a:8:{s:6:\"family\";s:20:\"Dawning of a New Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/dawningofanewday/v14/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:285;a:8:{s:6:\"family\";s:8:\"Days One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2020-09-02\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/daysone/v10/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:286;a:8:{s:6:\"family\";s:5:\"Dekko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/dekko/v17/46khlb_wWjfSrttFR0vsfl1B.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:287;a:8:{s:6:\"family\";s:15:\"Dela Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:5:\"greek\";i:2;s:8:\"japanese\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2021-11-04\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/delagothicone/v8/~ChEKD0RlbGEgR290aGljIE9uZSAAKgQIARgB.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:288;a:8:{s:6:\"family\";s:6:\"Delius\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/delius/v13/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:289;a:8:{s:6:\"family\";s:17:\"Delius Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/deliusswashcaps/v17/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:290;a:8:{s:6:\"family\";s:14:\"Delius Unicase\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/deliusunicase/v24/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf\";i:700;s:89:\"http://fonts.gstatic.com/s/deliusunicase/v24/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:291;a:8:{s:6:\"family\";s:13:\"Della Respira\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/dellarespira/v16/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:292;a:8:{s:6:\"family\";s:8:\"Denk One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/denkone/v13/dg4m_pzhrqcFb2IzROtHpbglShon.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:293;a:8:{s:6:\"family\";s:10:\"Devonshire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/devonshire/v19/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:294;a:8:{s:6:\"family\";s:8:\"Dhurjati\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/dhurjati/v18/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:295;a:8:{s:6:\"family\";s:13:\"Didact Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/didactgothic/v18/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:296;a:8:{s:6:\"family\";s:9:\"Diplomata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/diplomata/v22/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:297;a:8:{s:6:\"family\";s:12:\"Diplomata SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/diplomatasc/v19/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:298;a:8:{s:6:\"family\";s:8:\"Do Hyeon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/dohyeon/v14/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:299;a:8:{s:6:\"family\";s:5:\"Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/dokdo/v13/esDf315XNuCBLxLo4NaMlKcH.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:300;a:8:{s:6:\"family\";s:6:\"Domine\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/domine/v17/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/domine/v17/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/domine/v17/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/domine/v17/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:301;a:8:{s:6:\"family\";s:11:\"Donegal One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/donegalone/v18/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:302;a:8:{s:6:\"family\";s:6:\"Dongle\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:3:{i:300;s:71:\"http://fonts.gstatic.com/s/dongle/v6/sJoG3Ltdjt6VPkqeEcxrYjWNzXvVPA.ttf\";s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/dongle/v6/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf\";i:700;s:71:\"http://fonts.gstatic.com/s/dongle/v6/sJoG3Ltdjt6VPkqeActrYjWNzXvVPA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:303;a:8:{s:6:\"family\";s:10:\"Doppio One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/doppioone/v11/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:304;a:8:{s:6:\"family\";s:5:\"Dorsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/dorsa/v21/yYLn0hjd0OGwqo493XCFxAnQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:305;a:8:{s:6:\"family\";s:5:\"Dosis\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v25\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:7:{i:200;s:83:\"http://fonts.gstatic.com/s/dosis/v25/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf\";i:300;s:83:\"http://fonts.gstatic.com/s/dosis/v25/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/dosis/v25/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf\";i:500;s:83:\"http://fonts.gstatic.com/s/dosis/v25/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf\";i:600;s:83:\"http://fonts.gstatic.com/s/dosis/v25/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf\";i:700;s:83:\"http://fonts.gstatic.com/s/dosis/v25/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf\";i:800;s:83:\"http://fonts.gstatic.com/s/dosis/v25/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:306;a:8:{s:6:\"family\";s:11:\"DotGothic16\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2021-11-04\";s:5:\"files\";a:1:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/dotgothic16/v10/~Cg0KC0RvdEdvdGhpYzE2IAAqBAgBGAE=.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:307;a:8:{s:6:\"family\";s:11:\"Dr Sugiyama\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/drsugiyama/v20/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:308;a:8:{s:6:\"family\";s:9:\"Duru Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/durusans/v17/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:309;a:8:{s:6:\"family\";s:9:\"Dynalight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/dynalight/v16/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:310;a:8:{s:6:\"family\";s:11:\"EB Garamond\";s:8:\"variants\";a:10:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:6:\"italic\";i:6;s:9:\"500italic\";i:7;s:9:\"600italic\";i:8;s:9:\"700italic\";i:9;s:9:\"800italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:10:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/ebgaramond/v24/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/ebgaramond/v24/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/ebgaramond/v24/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/ebgaramond/v24/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf\";i:800;s:96:\"http://fonts.gstatic.com/s/ebgaramond/v24/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf\";s:6:\"italic\";s:98:\"http://fonts.gstatic.com/s/ebgaramond/v24/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf\";s:9:\"500italic\";s:98:\"http://fonts.gstatic.com/s/ebgaramond/v24/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf\";s:9:\"600italic\";s:98:\"http://fonts.gstatic.com/s/ebgaramond/v24/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf\";s:9:\"700italic\";s:98:\"http://fonts.gstatic.com/s/ebgaramond/v24/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf\";s:9:\"800italic\";s:98:\"http://fonts.gstatic.com/s/ebgaramond/v24/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:311;a:8:{s:6:\"family\";s:10:\"Eagle Lake\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/eaglelake/v18/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:312;a:8:{s:6:\"family\";s:14:\"East Sea Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/eastseadokdo/v18/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:313;a:8:{s:6:\"family\";s:5:\"Eater\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/eater/v19/mtG04_FCK7bOvpu2u3FwsXsR.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:314;a:8:{s:6:\"family\";s:9:\"Economica\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/economica/v11/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf\";s:6:\"italic\";s:77:\"http://fonts.gstatic.com/s/economica/v11/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/economica/v11/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf\";s:9:\"700italic\";s:81:\"http://fonts.gstatic.com/s/economica/v11/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:315;a:8:{s:6:\"family\";s:5:\"Eczar\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:5:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/eczar/v13/BXRlvF3Pi-DLmw0iBu9y8Hf0.ttf\";i:500;s:69:\"http://fonts.gstatic.com/s/eczar/v13/BXRovF3Pi-DLmzXWL8t622v9WNjW.ttf\";i:600;s:69:\"http://fonts.gstatic.com/s/eczar/v13/BXRovF3Pi-DLmzX6KMt622v9WNjW.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/eczar/v13/BXRovF3Pi-DLmzWeKct622v9WNjW.ttf\";i:800;s:69:\"http://fonts.gstatic.com/s/eczar/v13/BXRovF3Pi-DLmzWCKst622v9WNjW.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:316;a:8:{s:6:\"family\";s:10:\"El Messiri\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:6:\"arabic\";i:1;s:8:\"cyrillic\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:93:\"http://fonts.gstatic.com/s/elmessiri/v14/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65ghj3OoapG.ttf\";i:500;s:93:\"http://fonts.gstatic.com/s/elmessiri/v14/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65ghj3OoapG.ttf\";i:600;s:93:\"http://fonts.gstatic.com/s/elmessiri/v14/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5ghj3OoapG.ttf\";i:700;s:93:\"http://fonts.gstatic.com/s/elmessiri/v14/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5ghj3OoapG.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:317;a:8:{s:6:\"family\";s:11:\"Electrolize\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:79:\"http://fonts.gstatic.com/s/electrolize/v12/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:318;a:8:{s:6:\"family\";s:5:\"Elsie\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2020-11-20\";s:5:\"files\";a:2:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/elsie/v11/BCanqZABrez54yYu9slAeLgX.ttf\";i:900;s:69:\"http://fonts.gstatic.com/s/elsie/v11/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:319;a:8:{s:6:\"family\";s:16:\"Elsie Swash Caps\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:2:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/elsieswashcaps/v19/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf\";i:900;s:93:\"http://fonts.gstatic.com/s/elsieswashcaps/v19/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:320;a:8:{s:6:\"family\";s:11:\"Emblema One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/emblemaone/v19/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:321;a:8:{s:6:\"family\";s:12:\"Emilys Candy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/emilyscandy/v11/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:322;a:8:{s:6:\"family\";s:11:\"Encode Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2021-01-30\";s:5:\"files\";a:9:{i:100;s:112:\"http://fonts.gstatic.com/s/encodesans/v8/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf\";i:200;s:112:\"http://fonts.gstatic.com/s/encodesans/v8/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf\";i:300;s:112:\"http://fonts.gstatic.com/s/encodesans/v8/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf\";s:7:\"regular\";s:112:\"http://fonts.gstatic.com/s/encodesans/v8/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf\";i:500;s:112:\"http://fonts.gstatic.com/s/encodesans/v8/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf\";i:600;s:112:\"http://fonts.gstatic.com/s/encodesans/v8/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf\";i:700;s:112:\"http://fonts.gstatic.com/s/encodesans/v8/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf\";i:800;s:112:\"http://fonts.gstatic.com/s/encodesans/v8/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf\";i:900;s:112:\"http://fonts.gstatic.com/s/encodesans/v8/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:323;a:8:{s:6:\"family\";s:21:\"Encode Sans Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:102:\"http://fonts.gstatic.com/s/encodesanscondensed/v8/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf\";i:200;s:104:\"http://fonts.gstatic.com/s/encodesanscondensed/v8/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf\";i:300;s:104:\"http://fonts.gstatic.com/s/encodesanscondensed/v8/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf\";s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/encodesanscondensed/v8/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf\";i:500;s:104:\"http://fonts.gstatic.com/s/encodesanscondensed/v8/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf\";i:600;s:104:\"http://fonts.gstatic.com/s/encodesanscondensed/v8/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf\";i:700;s:104:\"http://fonts.gstatic.com/s/encodesanscondensed/v8/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf\";i:800;s:104:\"http://fonts.gstatic.com/s/encodesanscondensed/v8/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf\";i:900;s:104:\"http://fonts.gstatic.com/s/encodesanscondensed/v8/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:324;a:8:{s:6:\"family\";s:20:\"Encode Sans Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:9:{i:100;s:100:\"http://fonts.gstatic.com/s/encodesansexpanded/v8/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf\";i:200;s:101:\"http://fonts.gstatic.com/s/encodesansexpanded/v8/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf\";i:300;s:101:\"http://fonts.gstatic.com/s/encodesansexpanded/v8/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf\";s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/encodesansexpanded/v8/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf\";i:500;s:101:\"http://fonts.gstatic.com/s/encodesansexpanded/v8/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf\";i:600;s:101:\"http://fonts.gstatic.com/s/encodesansexpanded/v8/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf\";i:700;s:101:\"http://fonts.gstatic.com/s/encodesansexpanded/v8/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf\";i:800;s:101:\"http://fonts.gstatic.com/s/encodesansexpanded/v8/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf\";i:900;s:101:\"http://fonts.gstatic.com/s/encodesansexpanded/v8/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:325;a:8:{s:6:\"family\";s:14:\"Encode Sans SC\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v4\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:9:{i:100;s:118:\"http://fonts.gstatic.com/s/encodesanssc/v4/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8c9NOEEClIc.ttf\";i:200;s:118:\"http://fonts.gstatic.com/s/encodesanssc/v4/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8c9NOEEClIc.ttf\";i:300;s:118:\"http://fonts.gstatic.com/s/encodesanssc/v4/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8c9NOEEClIc.ttf\";s:7:\"regular\";s:118:\"http://fonts.gstatic.com/s/encodesanssc/v4/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8c9NOEEClIc.ttf\";i:500;s:118:\"http://fonts.gstatic.com/s/encodesanssc/v4/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8c9NOEEClIc.ttf\";i:600;s:118:\"http://fonts.gstatic.com/s/encodesanssc/v4/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8c9NOEEClIc.ttf\";i:700;s:118:\"http://fonts.gstatic.com/s/encodesanssc/v4/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8c9NOEEClIc.ttf\";i:800;s:118:\"http://fonts.gstatic.com/s/encodesanssc/v4/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8c9NOEEClIc.ttf\";i:900;s:118:\"http://fonts.gstatic.com/s/encodesanssc/v4/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8c9NOEEClIc.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:326;a:8:{s:6:\"family\";s:26:\"Encode Sans Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:9:{i:100;s:113:\"http://fonts.gstatic.com/s/encodesanssemicondensed/v8/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf\";i:200;s:114:\"http://fonts.gstatic.com/s/encodesanssemicondensed/v8/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf\";i:300;s:114:\"http://fonts.gstatic.com/s/encodesanssemicondensed/v8/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf\";s:7:\"regular\";s:110:\"http://fonts.gstatic.com/s/encodesanssemicondensed/v8/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf\";i:500;s:114:\"http://fonts.gstatic.com/s/encodesanssemicondensed/v8/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf\";i:600;s:114:\"http://fonts.gstatic.com/s/encodesanssemicondensed/v8/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf\";i:700;s:114:\"http://fonts.gstatic.com/s/encodesanssemicondensed/v8/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf\";i:800;s:114:\"http://fonts.gstatic.com/s/encodesanssemicondensed/v8/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf\";i:900;s:114:\"http://fonts.gstatic.com/s/encodesanssemicondensed/v8/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:327;a:8:{s:6:\"family\";s:25:\"Encode Sans Semi Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:9:{i:100;s:112:\"http://fonts.gstatic.com/s/encodesanssemiexpanded/v16/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf\";i:200;s:113:\"http://fonts.gstatic.com/s/encodesanssemiexpanded/v16/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf\";i:300;s:113:\"http://fonts.gstatic.com/s/encodesanssemiexpanded/v16/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf\";s:7:\"regular\";s:109:\"http://fonts.gstatic.com/s/encodesanssemiexpanded/v16/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf\";i:500;s:113:\"http://fonts.gstatic.com/s/encodesanssemiexpanded/v16/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf\";i:600;s:113:\"http://fonts.gstatic.com/s/encodesanssemiexpanded/v16/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf\";i:700;s:113:\"http://fonts.gstatic.com/s/encodesanssemiexpanded/v16/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf\";i:800;s:113:\"http://fonts.gstatic.com/s/encodesanssemiexpanded/v16/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf\";i:900;s:113:\"http://fonts.gstatic.com/s/encodesanssemiexpanded/v16/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:328;a:8:{s:6:\"family\";s:10:\"Engagement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/engagement/v20/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:329;a:8:{s:6:\"family\";s:9:\"Englebert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/englebert/v15/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:330;a:8:{s:6:\"family\";s:9:\"Enriqueta\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/enriqueta/v13/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf\";i:500;s:79:\"http://fonts.gstatic.com/s/enriqueta/v13/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf\";i:600;s:79:\"http://fonts.gstatic.com/s/enriqueta/v13/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/enriqueta/v13/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:331;a:8:{s:6:\"family\";s:7:\"Ephesis\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/ephesis/v5/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:332;a:8:{s:6:\"family\";s:8:\"Epilogue\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:90:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf\";i:200;s:90:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf\";i:300;s:90:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf\";s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf\";i:500;s:90:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf\";i:600;s:90:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf\";i:700;s:90:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf\";i:800;s:90:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf\";i:900;s:90:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf\";s:9:\"100italic\";s:92:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf\";s:9:\"200italic\";s:92:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf\";s:9:\"300italic\";s:92:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf\";s:6:\"italic\";s:92:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf\";s:9:\"500italic\";s:92:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf\";s:9:\"600italic\";s:92:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf\";s:9:\"700italic\";s:92:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf\";s:9:\"800italic\";s:92:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf\";s:9:\"900italic\";s:92:\"http://fonts.gstatic.com/s/epilogue/v11/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:333;a:8:{s:6:\"family\";s:9:\"Erica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/ericaone/v21/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:334;a:8:{s:6:\"family\";s:7:\"Esteban\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/esteban/v12/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:335;a:8:{s:6:\"family\";s:7:\"Estonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/estonia/v7/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:336;a:8:{s:6:\"family\";s:15:\"Euphoria Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/euphoriascript/v14/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:337;a:8:{s:6:\"family\";s:5:\"Ewert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/ewert/v19/va9I4kzO2tFODYBvS-J3kbDP.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:338;a:8:{s:6:\"family\";s:3:\"Exo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:78:\"http://fonts.gstatic.com/s/exo/v18/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf\";i:200;s:78:\"http://fonts.gstatic.com/s/exo/v18/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf\";i:300;s:78:\"http://fonts.gstatic.com/s/exo/v18/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf\";s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/exo/v18/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf\";i:500;s:78:\"http://fonts.gstatic.com/s/exo/v18/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf\";i:600;s:78:\"http://fonts.gstatic.com/s/exo/v18/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf\";i:700;s:78:\"http://fonts.gstatic.com/s/exo/v18/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf\";i:800;s:78:\"http://fonts.gstatic.com/s/exo/v18/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf\";i:900;s:78:\"http://fonts.gstatic.com/s/exo/v18/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf\";s:9:\"100italic\";s:81:\"http://fonts.gstatic.com/s/exo/v18/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf\";s:9:\"200italic\";s:81:\"http://fonts.gstatic.com/s/exo/v18/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf\";s:9:\"300italic\";s:81:\"http://fonts.gstatic.com/s/exo/v18/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf\";s:6:\"italic\";s:81:\"http://fonts.gstatic.com/s/exo/v18/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf\";s:9:\"500italic\";s:81:\"http://fonts.gstatic.com/s/exo/v18/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf\";s:9:\"600italic\";s:81:\"http://fonts.gstatic.com/s/exo/v18/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf\";s:9:\"700italic\";s:81:\"http://fonts.gstatic.com/s/exo/v18/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf\";s:9:\"800italic\";s:81:\"http://fonts.gstatic.com/s/exo/v18/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf\";s:9:\"900italic\";s:81:\"http://fonts.gstatic.com/s/exo/v18/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:339;a:8:{s:6:\"family\";s:5:\"Exo 2\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:82:\"http://fonts.gstatic.com/s/exo2/v18/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf\";i:200;s:82:\"http://fonts.gstatic.com/s/exo2/v18/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf\";i:300;s:82:\"http://fonts.gstatic.com/s/exo2/v18/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf\";s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/exo2/v18/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf\";i:500;s:82:\"http://fonts.gstatic.com/s/exo2/v18/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf\";i:600;s:82:\"http://fonts.gstatic.com/s/exo2/v18/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/exo2/v18/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf\";i:800;s:82:\"http://fonts.gstatic.com/s/exo2/v18/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf\";i:900;s:82:\"http://fonts.gstatic.com/s/exo2/v18/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf\";s:9:\"100italic\";s:84:\"http://fonts.gstatic.com/s/exo2/v18/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf\";s:9:\"200italic\";s:84:\"http://fonts.gstatic.com/s/exo2/v18/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf\";s:9:\"300italic\";s:84:\"http://fonts.gstatic.com/s/exo2/v18/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf\";s:6:\"italic\";s:84:\"http://fonts.gstatic.com/s/exo2/v18/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf\";s:9:\"500italic\";s:84:\"http://fonts.gstatic.com/s/exo2/v18/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf\";s:9:\"600italic\";s:84:\"http://fonts.gstatic.com/s/exo2/v18/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf\";s:9:\"700italic\";s:84:\"http://fonts.gstatic.com/s/exo2/v18/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf\";s:9:\"800italic\";s:84:\"http://fonts.gstatic.com/s/exo2/v18/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf\";s:9:\"900italic\";s:84:\"http://fonts.gstatic.com/s/exo2/v18/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:340;a:8:{s:6:\"family\";s:13:\"Expletus Sans\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:6:\"italic\";i:5;s:9:\"500italic\";i:6;s:9:\"600italic\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:8:{s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/expletussans/v21/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1oFQTcXfMm.ttf\";i:500;s:100:\"http://fonts.gstatic.com/s/expletussans/v21/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1oFQTcXfMm.ttf\";i:600;s:100:\"http://fonts.gstatic.com/s/expletussans/v21/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1oFQTcXfMm.ttf\";i:700;s:100:\"http://fonts.gstatic.com/s/expletussans/v21/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1oFQTcXfMm.ttf\";s:6:\"italic\";s:103:\"http://fonts.gstatic.com/s/expletussans/v21/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwD-WOMmKKY.ttf\";s:9:\"500italic\";s:103:\"http://fonts.gstatic.com/s/expletussans/v21/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwD-WOMmKKY.ttf\";s:9:\"600italic\";s:103:\"http://fonts.gstatic.com/s/expletussans/v21/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwD-WOMmKKY.ttf\";s:9:\"700italic\";s:103:\"http://fonts.gstatic.com/s/expletussans/v21/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwD-WOMmKKY.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:341;a:8:{s:6:\"family\";s:7:\"Explora\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cherokee\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/explora/v5/tsstApxFfjUH4wrvc1qPonC3vqc.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:342;a:8:{s:6:\"family\";s:8:\"Fahkwang\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:12:{i:200;s:76:\"http://fonts.gstatic.com/s/fahkwang/v14/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf\";s:9:\"200italic\";s:79:\"http://fonts.gstatic.com/s/fahkwang/v14/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf\";i:300;s:76:\"http://fonts.gstatic.com/s/fahkwang/v14/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf\";s:9:\"300italic\";s:79:\"http://fonts.gstatic.com/s/fahkwang/v14/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf\";s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/fahkwang/v14/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf\";s:6:\"italic\";s:75:\"http://fonts.gstatic.com/s/fahkwang/v14/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf\";i:500;s:76:\"http://fonts.gstatic.com/s/fahkwang/v14/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf\";s:9:\"500italic\";s:79:\"http://fonts.gstatic.com/s/fahkwang/v14/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf\";i:600;s:76:\"http://fonts.gstatic.com/s/fahkwang/v14/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf\";s:9:\"600italic\";s:79:\"http://fonts.gstatic.com/s/fahkwang/v14/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/fahkwang/v14/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf\";s:9:\"700italic\";s:79:\"http://fonts.gstatic.com/s/fahkwang/v14/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:343;a:8:{s:6:\"family\";s:12:\"Fanwood Text\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/fanwoodtext/v13/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf\";s:6:\"italic\";s:83:\"http://fonts.gstatic.com/s/fanwoodtext/v13/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:344;a:8:{s:6:\"family\";s:5:\"Farro\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:4:{i:300;s:69:\"http://fonts.gstatic.com/s/farro/v12/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf\";s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/farro/v12/i7dEIFl3byGNHZVNHLq2cV5d.ttf\";i:500;s:69:\"http://fonts.gstatic.com/s/farro/v12/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/farro/v12/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:345;a:8:{s:6:\"family\";s:6:\"Farsan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"gujarati\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/farsan/v16/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:346;a:8:{s:6:\"family\";s:9:\"Fascinate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/fascinate/v19/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:347;a:8:{s:6:\"family\";s:16:\"Fascinate Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/fascinateinline/v20/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:348;a:8:{s:6:\"family\";s:10:\"Faster One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/fasterone/v15/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:349;a:8:{s:6:\"family\";s:8:\"Fasthand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/fasthand/v24/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:350;a:8:{s:6:\"family\";s:9:\"Fauna One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/faunaone/v11/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:351;a:8:{s:6:\"family\";s:8:\"Faustina\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:9:\"300italic\";i:7;s:6:\"italic\";i:8;s:9:\"500italic\";i:9;s:9:\"600italic\";i:10;s:9:\"700italic\";i:11;s:9:\"800italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:12:{i:300;s:90:\"http://fonts.gstatic.com/s/faustina/v14/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvGVWWe8tbEg.ttf\";s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/faustina/v14/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf\";i:500;s:90:\"http://fonts.gstatic.com/s/faustina/v14/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf\";i:600;s:90:\"http://fonts.gstatic.com/s/faustina/v14/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf\";i:700;s:90:\"http://fonts.gstatic.com/s/faustina/v14/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf\";i:800;s:90:\"http://fonts.gstatic.com/s/faustina/v14/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvGVWWe8tbEg.ttf\";s:9:\"300italic\";s:92:\"http://fonts.gstatic.com/s/faustina/v14/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-SWc5LEnoF.ttf\";s:6:\"italic\";s:92:\"http://fonts.gstatic.com/s/faustina/v14/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf\";s:9:\"500italic\";s:92:\"http://fonts.gstatic.com/s/faustina/v14/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf\";s:9:\"600italic\";s:92:\"http://fonts.gstatic.com/s/faustina/v14/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf\";s:9:\"700italic\";s:92:\"http://fonts.gstatic.com/s/faustina/v14/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf\";s:9:\"800italic\";s:92:\"http://fonts.gstatic.com/s/faustina/v14/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-SWc5LEnoF.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:352;a:8:{s:6:\"family\";s:8:\"Federant\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/federant/v23/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:353;a:8:{s:6:\"family\";s:6:\"Federo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/federo/v17/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:354;a:8:{s:6:\"family\";s:6:\"Felipa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/felipa/v17/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:355;a:8:{s:6:\"family\";s:5:\"Fenix\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/fenix/v18/XoHo2YL_S7-g5ostKzAFvs8o.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:356;a:8:{s:6:\"family\";s:7:\"Festive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/festive/v5/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:357;a:8:{s:6:\"family\";s:12:\"Finger Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/fingerpaint/v13/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:358;a:8:{s:6:\"family\";s:9:\"Fira Code\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:91:\"http://fonts.gstatic.com/s/firacode/v17/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf\";s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/firacode/v17/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf\";i:500;s:91:\"http://fonts.gstatic.com/s/firacode/v17/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf\";i:600;s:91:\"http://fonts.gstatic.com/s/firacode/v17/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf\";i:700;s:91:\"http://fonts.gstatic.com/s/firacode/v17/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:359;a:8:{s:6:\"family\";s:9:\"Fira Mono\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:3:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/firamono/v12/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf\";i:500;s:78:\"http://fonts.gstatic.com/s/firamono/v12/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf\";i:700;s:78:\"http://fonts.gstatic.com/s/firamono/v12/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:360;a:8:{s:6:\"family\";s:9:\"Fira Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:18:{i:100;s:76:\"http://fonts.gstatic.com/s/firasans/v15/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf\";s:9:\"100italic\";s:79:\"http://fonts.gstatic.com/s/firasans/v15/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf\";i:200;s:78:\"http://fonts.gstatic.com/s/firasans/v15/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf\";s:9:\"200italic\";s:80:\"http://fonts.gstatic.com/s/firasans/v15/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf\";i:300;s:78:\"http://fonts.gstatic.com/s/firasans/v15/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf\";s:9:\"300italic\";s:80:\"http://fonts.gstatic.com/s/firasans/v15/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf\";s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/firasans/v15/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf\";s:6:\"italic\";s:76:\"http://fonts.gstatic.com/s/firasans/v15/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf\";i:500;s:78:\"http://fonts.gstatic.com/s/firasans/v15/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf\";s:9:\"500italic\";s:80:\"http://fonts.gstatic.com/s/firasans/v15/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf\";i:600;s:78:\"http://fonts.gstatic.com/s/firasans/v15/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf\";s:9:\"600italic\";s:80:\"http://fonts.gstatic.com/s/firasans/v15/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf\";i:700;s:78:\"http://fonts.gstatic.com/s/firasans/v15/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf\";s:9:\"700italic\";s:80:\"http://fonts.gstatic.com/s/firasans/v15/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf\";i:800;s:78:\"http://fonts.gstatic.com/s/firasans/v15/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf\";s:9:\"800italic\";s:80:\"http://fonts.gstatic.com/s/firasans/v15/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf\";i:900;s:78:\"http://fonts.gstatic.com/s/firasans/v15/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf\";s:9:\"900italic\";s:80:\"http://fonts.gstatic.com/s/firasans/v15/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:361;a:8:{s:6:\"family\";s:19:\"Fira Sans Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:18:{i:100;s:98:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf\";s:9:\"100italic\";s:100:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf\";i:200;s:99:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf\";s:9:\"200italic\";s:102:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf\";i:300;s:99:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf\";s:9:\"300italic\";s:102:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf\";s:7:\"regular\";s:95:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf\";s:6:\"italic\";s:98:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf\";i:500;s:99:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf\";s:9:\"500italic\";s:102:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf\";i:600;s:99:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf\";s:9:\"600italic\";s:102:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf\";i:700;s:99:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf\";s:9:\"700italic\";s:102:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf\";i:800;s:99:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf\";s:9:\"800italic\";s:102:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf\";i:900;s:99:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf\";s:9:\"900italic\";s:102:\"http://fonts.gstatic.com/s/firasanscondensed/v9/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:362;a:8:{s:6:\"family\";s:25:\"Fira Sans Extra Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:18:{i:100;s:111:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf\";s:9:\"100italic\";s:113:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf\";i:200;s:112:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf\";s:9:\"200italic\";s:115:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf\";i:300;s:112:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf\";s:9:\"300italic\";s:115:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf\";s:7:\"regular\";s:108:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf\";s:6:\"italic\";s:111:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf\";i:500;s:112:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf\";s:9:\"500italic\";s:115:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf\";i:600;s:112:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf\";s:9:\"600italic\";s:115:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf\";i:700;s:112:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf\";s:9:\"700italic\";s:115:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf\";i:800;s:112:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf\";s:9:\"800italic\";s:115:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf\";i:900;s:112:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf\";s:9:\"900italic\";s:115:\"http://fonts.gstatic.com/s/firasansextracondensed/v8/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:363;a:8:{s:6:\"family\";s:10:\"Fjalla One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/fjallaone/v12/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:364;a:8:{s:6:\"family\";s:9:\"Fjord One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/fjordone/v19/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:365;a:8:{s:6:\"family\";s:8:\"Flamenco\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{i:300;s:76:\"http://fonts.gstatic.com/s/flamenco/v16/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf\";s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/flamenco/v16/neIIzCehqYguo67ssaWGHK06UY30.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:366;a:8:{s:6:\"family\";s:7:\"Flavors\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/flavors/v20/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:367;a:8:{s:6:\"family\";s:13:\"Fleur De Leah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/fleurdeleah/v5/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:368;a:8:{s:6:\"family\";s:10:\"Flow Block\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/flowblock/v5/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:369;a:8:{s:6:\"family\";s:13:\"Flow Circular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/flowcircular/v5/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:370;a:8:{s:6:\"family\";s:12:\"Flow Rounded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/flowrounded/v5/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:371;a:8:{s:6:\"family\";s:10:\"Fondamento\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/fondamento/v14/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf\";s:6:\"italic\";s:80:\"http://fonts.gstatic.com/s/fondamento/v14/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:372;a:8:{s:6:\"family\";s:16:\"Fontdiner Swanky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:1:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/fontdinerswanky/v11/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:373;a:8:{s:6:\"family\";s:5:\"Forum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/forum/v14/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:374;a:8:{s:6:\"family\";s:12:\"Francois One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/francoisone/v19/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:375;a:8:{s:6:\"family\";s:16:\"Frank Ruhl Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:6:\"hebrew\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:5:{i:300;s:93:\"http://fonts.gstatic.com/s/frankruhllibre/v10/j8_36_fAw7jrcalD7oKYNX0QfAnPUxvHxJDMhYeIHw8.ttf\";s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/frankruhllibre/v10/j8_w6_fAw7jrcalD7oKYNX0QfAnPa7fv4JjnmY4.ttf\";i:500;s:93:\"http://fonts.gstatic.com/s/frankruhllibre/v10/j8_36_fAw7jrcalD7oKYNX0QfAnPU0PGxJDMhYeIHw8.ttf\";i:700;s:93:\"http://fonts.gstatic.com/s/frankruhllibre/v10/j8_36_fAw7jrcalD7oKYNX0QfAnPUwvAxJDMhYeIHw8.ttf\";i:900;s:93:\"http://fonts.gstatic.com/s/frankruhllibre/v10/j8_36_fAw7jrcalD7oKYNX0QfAnPUzPCxJDMhYeIHw8.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:376;a:8:{s:6:\"family\";s:8:\"Fraunces\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:18:{i:100;s:142:\"http://fonts.gstatic.com/s/fraunces/v10/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjDvTShUtWNg.ttf\";i:200;s:142:\"http://fonts.gstatic.com/s/fraunces/v10/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujDvTShUtWNg.ttf\";i:300;s:142:\"http://fonts.gstatic.com/s/fraunces/v10/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujDvTShUtWNg.ttf\";s:7:\"regular\";s:142:\"http://fonts.gstatic.com/s/fraunces/v10/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujDvTShUtWNg.ttf\";i:500;s:142:\"http://fonts.gstatic.com/s/fraunces/v10/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujDvTShUtWNg.ttf\";i:600;s:142:\"http://fonts.gstatic.com/s/fraunces/v10/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjDvTShUtWNg.ttf\";i:700;s:142:\"http://fonts.gstatic.com/s/fraunces/v10/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjDvTShUtWNg.ttf\";i:800;s:142:\"http://fonts.gstatic.com/s/fraunces/v10/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjDvTShUtWNg.ttf\";i:900;s:142:\"http://fonts.gstatic.com/s/fraunces/v10/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjDvTShUtWNg.ttf\";s:9:\"100italic\";s:144:\"http://fonts.gstatic.com/s/fraunces/v10/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Wp05GNi3k.ttf\";s:9:\"200italic\";s:144:\"http://fonts.gstatic.com/s/fraunces/v10/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Wp05GNi3k.ttf\";s:9:\"300italic\";s:144:\"http://fonts.gstatic.com/s/fraunces/v10/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Wp05GNi3k.ttf\";s:6:\"italic\";s:144:\"http://fonts.gstatic.com/s/fraunces/v10/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Wp05GNi3k.ttf\";s:9:\"500italic\";s:144:\"http://fonts.gstatic.com/s/fraunces/v10/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Wp05GNi3k.ttf\";s:9:\"600italic\";s:144:\"http://fonts.gstatic.com/s/fraunces/v10/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Wp05GNi3k.ttf\";s:9:\"700italic\";s:144:\"http://fonts.gstatic.com/s/fraunces/v10/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Wp05GNi3k.ttf\";s:9:\"800italic\";s:144:\"http://fonts.gstatic.com/s/fraunces/v10/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Wp05GNi3k.ttf\";s:9:\"900italic\";s:144:\"http://fonts.gstatic.com/s/fraunces/v10/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Wp05GNi3k.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:377;a:8:{s:6:\"family\";s:12:\"Freckle Face\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/freckleface/v12/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:378;a:8:{s:6:\"family\";s:20:\"Fredericka the Great\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/frederickathegreat/v13/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:379;a:8:{s:6:\"family\";s:11:\"Fredoka One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/fredokaone/v12/k3kUo8kEI-tA1RRcTZGmTmHBA6aF8Bf_.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:380;a:8:{s:6:\"family\";s:8:\"Freehand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v25\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/freehand/v25/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:381;a:8:{s:6:\"family\";s:6:\"Fresca\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/fresca/v16/6ae94K--SKgCzbM2Gr0W13DKPA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:382;a:8:{s:6:\"family\";s:7:\"Frijole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/frijole/v12/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:383;a:8:{s:6:\"family\";s:7:\"Fruktur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/fruktur/v23/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:384;a:8:{s:6:\"family\";s:9:\"Fugaz One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/fugazone/v13/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:385;a:8:{s:6:\"family\";s:7:\"Fuggles\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/fuggles/v6/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:386;a:8:{s:6:\"family\";s:13:\"Fuzzy Bubbles\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:2:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/fuzzybubbles/v3/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf\";i:700;s:86:\"http://fonts.gstatic.com/s/fuzzybubbles/v3/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxMAZkM1pn4.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:387;a:8:{s:6:\"family\";s:9:\"GFS Didot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"greek\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/gfsdidot/v13/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:388;a:8:{s:6:\"family\";s:15:\"GFS Neohellenic\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"greek\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:4:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/gfsneohellenic/v23/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf\";s:6:\"italic\";s:90:\"http://fonts.gstatic.com/s/gfsneohellenic/v23/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf\";i:700;s:92:\"http://fonts.gstatic.com/s/gfsneohellenic/v23/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf\";s:9:\"700italic\";s:94:\"http://fonts.gstatic.com/s/gfsneohellenic/v23/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:389;a:8:{s:6:\"family\";s:8:\"Gabriela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/gabriela/v12/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:390;a:8:{s:6:\"family\";s:5:\"Gaegu\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:3:{i:300;s:69:\"http://fonts.gstatic.com/s/gaegu/v13/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf\";s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/gaegu/v13/TuGfUVB6Up9NU6ZLodgzydtk.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/gaegu/v13/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:391;a:8:{s:6:\"family\";s:6:\"Gafata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/gafata/v14/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:392;a:8:{s:6:\"family\";s:6:\"Galada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:7:\"bengali\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/galada/v12/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:393;a:8:{s:6:\"family\";s:8:\"Galdeano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/galdeano/v20/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:394;a:8:{s:6:\"family\";s:7:\"Galindo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/galindo/v18/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:395;a:8:{s:6:\"family\";s:12:\"Gamja Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/gamjaflower/v18/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:396;a:8:{s:6:\"family\";s:8:\"Gayathri\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:7:\"regular\";i:2;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"malayalam\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:3:{i:100;s:75:\"http://fonts.gstatic.com/s/gayathri/v13/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf\";s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/gayathri/v13/MCoQzAb429DbBilWLIA48J_wBugA.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/gayathri/v13/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:397;a:8:{s:6:\"family\";s:7:\"Gelasio\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:8:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/gelasio/v7/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf\";s:6:\"italic\";s:72:\"http://fonts.gstatic.com/s/gelasio/v7/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf\";i:500;s:73:\"http://fonts.gstatic.com/s/gelasio/v7/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf\";s:9:\"500italic\";s:76:\"http://fonts.gstatic.com/s/gelasio/v7/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf\";i:600;s:73:\"http://fonts.gstatic.com/s/gelasio/v7/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf\";s:9:\"600italic\";s:76:\"http://fonts.gstatic.com/s/gelasio/v7/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf\";i:700;s:73:\"http://fonts.gstatic.com/s/gelasio/v7/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf\";s:9:\"700italic\";s:76:\"http://fonts.gstatic.com/s/gelasio/v7/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:398;a:8:{s:6:\"family\";s:12:\"Gemunu Libre\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:7:\"sinhala\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:7:{i:200;s:97:\"http://fonts.gstatic.com/s/gemunulibre/v6/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvSLeMXPIWA.ttf\";i:300;s:97:\"http://fonts.gstatic.com/s/gemunulibre/v6/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvSLeMXPIWA.ttf\";s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/gemunulibre/v6/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvSLeMXPIWA.ttf\";i:500;s:97:\"http://fonts.gstatic.com/s/gemunulibre/v6/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvSLeMXPIWA.ttf\";i:600;s:97:\"http://fonts.gstatic.com/s/gemunulibre/v6/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvSLeMXPIWA.ttf\";i:700;s:97:\"http://fonts.gstatic.com/s/gemunulibre/v6/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvSLeMXPIWA.ttf\";i:800;s:97:\"http://fonts.gstatic.com/s/gemunulibre/v6/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvSLeMXPIWA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:399;a:8:{s:6:\"family\";s:5:\"Genos\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cherokee\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v4\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:82:\"http://fonts.gstatic.com/s/genos/v4/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknorUK6K7ZsAg.ttf\";i:200;s:82:\"http://fonts.gstatic.com/s/genos/v4/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjorUK6K7ZsAg.ttf\";i:300;s:82:\"http://fonts.gstatic.com/s/genos/v4/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjorUK6K7ZsAg.ttf\";s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/genos/v4/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjorUK6K7ZsAg.ttf\";i:500;s:82:\"http://fonts.gstatic.com/s/genos/v4/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjorUK6K7ZsAg.ttf\";i:600;s:82:\"http://fonts.gstatic.com/s/genos/v4/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_orUK6K7ZsAg.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/genos/v4/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_orUK6K7ZsAg.ttf\";i:800;s:82:\"http://fonts.gstatic.com/s/genos/v4/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_orUK6K7ZsAg.ttf\";i:900;s:82:\"http://fonts.gstatic.com/s/genos/v4/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_orUK6K7ZsAg.ttf\";s:9:\"100italic\";s:84:\"http://fonts.gstatic.com/s/genos/v4/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i-CbN8Ard7.ttf\";s:9:\"200italic\";s:84:\"http://fonts.gstatic.com/s/genos/v4/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki-CbN8Ard7.ttf\";s:9:\"300italic\";s:84:\"http://fonts.gstatic.com/s/genos/v4/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki-CbN8Ard7.ttf\";s:6:\"italic\";s:84:\"http://fonts.gstatic.com/s/genos/v4/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki-CbN8Ard7.ttf\";s:9:\"500italic\";s:84:\"http://fonts.gstatic.com/s/genos/v4/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki-CbN8Ard7.ttf\";s:9:\"600italic\";s:84:\"http://fonts.gstatic.com/s/genos/v4/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui-CbN8Ard7.ttf\";s:9:\"700italic\";s:84:\"http://fonts.gstatic.com/s/genos/v4/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui-CbN8Ard7.ttf\";s:9:\"800italic\";s:84:\"http://fonts.gstatic.com/s/genos/v4/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui-CbN8Ard7.ttf\";s:9:\"900italic\";s:84:\"http://fonts.gstatic.com/s/genos/v4/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui-CbN8Ard7.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:400;a:8:{s:6:\"family\";s:13:\"Gentium Basic\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/gentiumbasic/v15/Wnz9HAw9aB_JD2VGQVR80We3HAqDiTI_cIM.ttf\";s:6:\"italic\";s:86:\"http://fonts.gstatic.com/s/gentiumbasic/v15/WnzjHAw9aB_JD2VGQVR80We3LAiJjRA6YIORZQ.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/gentiumbasic/v15/WnzgHAw9aB_JD2VGQVR80We3JLasrToUbIqIfBU.ttf\";s:9:\"700italic\";s:90:\"http://fonts.gstatic.com/s/gentiumbasic/v15/WnzmHAw9aB_JD2VGQVR80We3LAixMT8eaKiNbBVWkw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:401;a:8:{s:6:\"family\";s:18:\"Gentium Book Basic\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/gentiumbookbasic/v14/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjcIV7t7w6bE2A.ttf\";s:6:\"italic\";s:96:\"http://fonts.gstatic.com/s/gentiumbookbasic/v14/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VbF_4aPU2Ec9.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/gentiumbookbasic/v14/pe0wMJCbPYBVokB1LHA9bbyaQb8ZGjcw65Rfy43Y0V4kvg.ttf\";s:9:\"700italic\";s:100:\"http://fonts.gstatic.com/s/gentiumbookbasic/v14/pe0-MJCbPYBVokB1LHA9bbyaQb8ZGjc4VYnDzofc81s0voO3.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:402;a:8:{s:6:\"family\";s:3:\"Geo\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:61:\"http://fonts.gstatic.com/s/geo/v17/CSRz4zRZlufVL3BmQjlCbQ.ttf\";s:6:\"italic\";s:63:\"http://fonts.gstatic.com/s/geo/v17/CSRx4zRZluflLXpiYDxSbf8r.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:403;a:8:{s:6:\"family\";s:7:\"Georama\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v4\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:18:{i:100;s:104:\"http://fonts.gstatic.com/s/georama/v4/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktmQsL5_tgbg.ttf\";i:200;s:104:\"http://fonts.gstatic.com/s/georama/v4/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtmQsL5_tgbg.ttf\";i:300;s:104:\"http://fonts.gstatic.com/s/georama/v4/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtmQsL5_tgbg.ttf\";s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/georama/v4/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtmQsL5_tgbg.ttf\";i:500;s:104:\"http://fonts.gstatic.com/s/georama/v4/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtmQsL5_tgbg.ttf\";i:600;s:104:\"http://fonts.gstatic.com/s/georama/v4/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tmQsL5_tgbg.ttf\";i:700;s:104:\"http://fonts.gstatic.com/s/georama/v4/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tmQsL5_tgbg.ttf\";i:800;s:104:\"http://fonts.gstatic.com/s/georama/v4/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tmQsL5_tgbg.ttf\";i:900;s:104:\"http://fonts.gstatic.com/s/georama/v4/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tmQsL5_tgbg.ttf\";s:9:\"100italic\";s:106:\"http://fonts.gstatic.com/s/georama/v4/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEPxf5wbh3T.ttf\";s:9:\"200italic\";s:106:\"http://fonts.gstatic.com/s/georama/v4/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEPxf5wbh3T.ttf\";s:9:\"300italic\";s:106:\"http://fonts.gstatic.com/s/georama/v4/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEPxf5wbh3T.ttf\";s:6:\"italic\";s:106:\"http://fonts.gstatic.com/s/georama/v4/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEPxf5wbh3T.ttf\";s:9:\"500italic\";s:106:\"http://fonts.gstatic.com/s/georama/v4/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEPxf5wbh3T.ttf\";s:9:\"600italic\";s:106:\"http://fonts.gstatic.com/s/georama/v4/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEPxf5wbh3T.ttf\";s:9:\"700italic\";s:106:\"http://fonts.gstatic.com/s/georama/v4/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEPxf5wbh3T.ttf\";s:9:\"800italic\";s:106:\"http://fonts.gstatic.com/s/georama/v4/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEPxf5wbh3T.ttf\";s:9:\"900italic\";s:106:\"http://fonts.gstatic.com/s/georama/v4/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEPxf5wbh3T.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:404;a:8:{s:6:\"family\";s:7:\"Geostar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/geostar/v13/sykz-yx4n701VLOftSq9-trEvlQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:405;a:8:{s:6:\"family\";s:12:\"Geostar Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/geostarfill/v13/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:406;a:8:{s:6:\"family\";s:12:\"Germania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/germaniaone/v18/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:407;a:8:{s:6:\"family\";s:12:\"Gideon Roman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/gideonroman/v5/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:408;a:8:{s:6:\"family\";s:6:\"Gidugu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/gidugu/v19/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:409;a:8:{s:6:\"family\";s:13:\"Gilda Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/gildadisplay/v11/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:410;a:8:{s:6:\"family\";s:8:\"Girassol\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/girassol/v14/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:411;a:8:{s:6:\"family\";s:14:\"Give You Glory\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/giveyouglory/v13/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:412;a:8:{s:6:\"family\";s:13:\"Glass Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/glassantiqua/v18/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:413;a:8:{s:6:\"family\";s:6:\"Glegoo\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2020-09-02\";s:5:\"files\";a:2:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/glegoo/v10/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/glegoo/v10/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:414;a:8:{s:6:\"family\";s:17:\"Gloria Hallelujah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/gloriahallelujah/v15/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:415;a:8:{s:6:\"family\";s:5:\"Glory\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:9:\"100italic\";i:9;s:9:\"200italic\";i:10;s:9:\"300italic\";i:11;s:6:\"italic\";i:12;s:9:\"500italic\";i:13;s:9:\"600italic\";i:14;s:9:\"700italic\";i:15;s:9:\"800italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:16:{i:100;s:82:\"http://fonts.gstatic.com/s/glory/v7/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDpn-dDi9EOQ.ttf\";i:200;s:82:\"http://fonts.gstatic.com/s/glory/v7/q5uasoi9Lf1w5t3Est24nq9blIRQQImDpn-dDi9EOQ.ttf\";i:300;s:82:\"http://fonts.gstatic.com/s/glory/v7/q5uasoi9Lf1w5t3Est24nq9blIRQnomDpn-dDi9EOQ.ttf\";s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/glory/v7/q5uasoi9Lf1w5t3Est24nq9blIRQwImDpn-dDi9EOQ.ttf\";i:500;s:82:\"http://fonts.gstatic.com/s/glory/v7/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDpn-dDi9EOQ.ttf\";i:600;s:82:\"http://fonts.gstatic.com/s/glory/v7/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Dpn-dDi9EOQ.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/glory/v7/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Dpn-dDi9EOQ.ttf\";i:800;s:82:\"http://fonts.gstatic.com/s/glory/v7/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Dpn-dDi9EOQ.ttf\";s:9:\"100italic\";s:84:\"http://fonts.gstatic.com/s/glory/v7/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf\";s:9:\"200italic\";s:84:\"http://fonts.gstatic.com/s/glory/v7/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf\";s:9:\"300italic\";s:84:\"http://fonts.gstatic.com/s/glory/v7/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWZLCpUOaM6.ttf\";s:6:\"italic\";s:84:\"http://fonts.gstatic.com/s/glory/v7/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf\";s:9:\"500italic\";s:84:\"http://fonts.gstatic.com/s/glory/v7/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf\";s:9:\"600italic\";s:84:\"http://fonts.gstatic.com/s/glory/v7/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWZLCpUOaM6.ttf\";s:9:\"700italic\";s:84:\"http://fonts.gstatic.com/s/glory/v7/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf\";s:9:\"800italic\";s:84:\"http://fonts.gstatic.com/s/glory/v7/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:416;a:8:{s:6:\"family\";s:6:\"Gluten\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:84:\"http://fonts.gstatic.com/s/gluten/v6/HhyIU5gk9fW7OUdVIPh2wBPxSqQJ_zh3_DMrQqcdJrk.ttf\";i:200;s:84:\"http://fonts.gstatic.com/s/gluten/v6/HhyIU5gk9fW7OUdVIPh2wBPxSqQJ_7h2_DMrQqcdJrk.ttf\";i:300;s:84:\"http://fonts.gstatic.com/s/gluten/v6/HhyIU5gk9fW7OUdVIPh2wBPxSqQJ_2Z2_DMrQqcdJrk.ttf\";s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/gluten/v6/HhyIU5gk9fW7OUdVIPh2wBPxSqQJ_zh2_DMrQqcdJrk.ttf\";i:500;s:84:\"http://fonts.gstatic.com/s/gluten/v6/HhyIU5gk9fW7OUdVIPh2wBPxSqQJ_wp2_DMrQqcdJrk.ttf\";i:600;s:84:\"http://fonts.gstatic.com/s/gluten/v6/HhyIU5gk9fW7OUdVIPh2wBPxSqQJ_-Zx_DMrQqcdJrk.ttf\";i:700;s:84:\"http://fonts.gstatic.com/s/gluten/v6/HhyIU5gk9fW7OUdVIPh2wBPxSqQJ_99x_DMrQqcdJrk.ttf\";i:800;s:84:\"http://fonts.gstatic.com/s/gluten/v6/HhyIU5gk9fW7OUdVIPh2wBPxSqQJ_7hx_DMrQqcdJrk.ttf\";i:900;s:84:\"http://fonts.gstatic.com/s/gluten/v6/HhyIU5gk9fW7OUdVIPh2wBPxSqQJ_5Fx_DMrQqcdJrk.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:417;a:8:{s:6:\"family\";s:10:\"Goblin One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/goblinone/v20/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:418;a:8:{s:6:\"family\";s:10:\"Gochi Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/gochihand/v14/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:419;a:8:{s:6:\"family\";s:7:\"Goldman\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/goldman/v13/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/goldman/v13/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:420;a:8:{s:6:\"family\";s:8:\"Gorditas\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:2:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/gorditas/v18/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/gorditas/v18/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:421;a:8:{s:6:\"family\";s:9:\"Gothic A1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:9:{i:100;s:76:\"http://fonts.gstatic.com/s/gothica1/v12/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf\";i:200;s:78:\"http://fonts.gstatic.com/s/gothica1/v12/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf\";i:300;s:78:\"http://fonts.gstatic.com/s/gothica1/v12/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf\";s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/gothica1/v12/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf\";i:500;s:78:\"http://fonts.gstatic.com/s/gothica1/v12/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf\";i:600;s:78:\"http://fonts.gstatic.com/s/gothica1/v12/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf\";i:700;s:78:\"http://fonts.gstatic.com/s/gothica1/v12/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf\";i:800;s:78:\"http://fonts.gstatic.com/s/gothica1/v12/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf\";i:900;s:78:\"http://fonts.gstatic.com/s/gothica1/v12/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:422;a:8:{s:6:\"family\";s:4:\"Gotu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/gotu/v12/o-0FIpksx3QOlH0Lioh6-hU.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:423;a:8:{s:6:\"family\";s:21:\"Goudy Bookletter 1911\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:101:\"http://fonts.gstatic.com/s/goudybookletter1911/v13/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:424;a:8:{s:6:\"family\";s:12:\"Gowun Batang\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:2:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/gowunbatang/v5/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf\";i:700;s:84:\"http://fonts.gstatic.com/s/gowunbatang/v5/ijwNs5nhRMIjYsdSgcMa3wRZ4J7awssxJii23w.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:425;a:8:{s:6:\"family\";s:11:\"Gowun Dodum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/gowundodum/v5/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:426;a:8:{s:6:\"family\";s:8:\"Graduate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/graduate/v11/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:427;a:8:{s:6:\"family\";s:11:\"Grand Hotel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/grandhotel/v11/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:428;a:8:{s:6:\"family\";s:12:\"Grandstander\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:98:\"http://fonts.gstatic.com/s/grandstander/v9/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf\";i:200;s:98:\"http://fonts.gstatic.com/s/grandstander/v9/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf\";i:300;s:98:\"http://fonts.gstatic.com/s/grandstander/v9/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf\";s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/grandstander/v9/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf\";i:500;s:98:\"http://fonts.gstatic.com/s/grandstander/v9/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf\";i:600;s:98:\"http://fonts.gstatic.com/s/grandstander/v9/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/grandstander/v9/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf\";i:800;s:98:\"http://fonts.gstatic.com/s/grandstander/v9/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf\";i:900;s:98:\"http://fonts.gstatic.com/s/grandstander/v9/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf\";s:9:\"100italic\";s:101:\"http://fonts.gstatic.com/s/grandstander/v9/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf\";s:9:\"200italic\";s:101:\"http://fonts.gstatic.com/s/grandstander/v9/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf\";s:9:\"300italic\";s:101:\"http://fonts.gstatic.com/s/grandstander/v9/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf\";s:6:\"italic\";s:101:\"http://fonts.gstatic.com/s/grandstander/v9/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf\";s:9:\"500italic\";s:101:\"http://fonts.gstatic.com/s/grandstander/v9/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf\";s:9:\"600italic\";s:101:\"http://fonts.gstatic.com/s/grandstander/v9/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf\";s:9:\"700italic\";s:101:\"http://fonts.gstatic.com/s/grandstander/v9/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf\";s:9:\"800italic\";s:101:\"http://fonts.gstatic.com/s/grandstander/v9/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf\";s:9:\"900italic\";s:101:\"http://fonts.gstatic.com/s/grandstander/v9/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:429;a:8:{s:6:\"family\";s:12:\"Gravitas One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/gravitasone/v13/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:430;a:8:{s:6:\"family\";s:11:\"Great Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/greatvibes/v13/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:431;a:8:{s:6:\"family\";s:14:\"Grechen Fuemen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/grechenfuemen/v5/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:432;a:8:{s:6:\"family\";s:6:\"Grenze\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:18:{i:100;s:70:\"http://fonts.gstatic.com/s/grenze/v12/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf\";s:9:\"100italic\";s:73:\"http://fonts.gstatic.com/s/grenze/v12/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf\";i:200;s:72:\"http://fonts.gstatic.com/s/grenze/v12/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf\";s:9:\"200italic\";s:74:\"http://fonts.gstatic.com/s/grenze/v12/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf\";i:300;s:72:\"http://fonts.gstatic.com/s/grenze/v12/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf\";s:9:\"300italic\";s:74:\"http://fonts.gstatic.com/s/grenze/v12/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf\";s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/grenze/v12/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/grenze/v12/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf\";i:500;s:72:\"http://fonts.gstatic.com/s/grenze/v12/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf\";s:9:\"500italic\";s:74:\"http://fonts.gstatic.com/s/grenze/v12/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf\";i:600;s:72:\"http://fonts.gstatic.com/s/grenze/v12/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf\";s:9:\"600italic\";s:74:\"http://fonts.gstatic.com/s/grenze/v12/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/grenze/v12/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf\";s:9:\"700italic\";s:74:\"http://fonts.gstatic.com/s/grenze/v12/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf\";i:800;s:72:\"http://fonts.gstatic.com/s/grenze/v12/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf\";s:9:\"800italic\";s:74:\"http://fonts.gstatic.com/s/grenze/v12/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf\";i:900;s:72:\"http://fonts.gstatic.com/s/grenze/v12/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf\";s:9:\"900italic\";s:74:\"http://fonts.gstatic.com/s/grenze/v12/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:433;a:8:{s:6:\"family\";s:14:\"Grenze Gotisch\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:103:\"http://fonts.gstatic.com/s/grenzegotisch/v10/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf\";i:200;s:103:\"http://fonts.gstatic.com/s/grenzegotisch/v10/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf\";i:300;s:103:\"http://fonts.gstatic.com/s/grenzegotisch/v10/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf\";s:7:\"regular\";s:103:\"http://fonts.gstatic.com/s/grenzegotisch/v10/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf\";i:500;s:103:\"http://fonts.gstatic.com/s/grenzegotisch/v10/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf\";i:600;s:103:\"http://fonts.gstatic.com/s/grenzegotisch/v10/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf\";i:700;s:103:\"http://fonts.gstatic.com/s/grenzegotisch/v10/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf\";i:800;s:103:\"http://fonts.gstatic.com/s/grenzegotisch/v10/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf\";i:900;s:103:\"http://fonts.gstatic.com/s/grenzegotisch/v10/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:434;a:8:{s:6:\"family\";s:7:\"Grey Qo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/greyqo/v5/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:435;a:8:{s:6:\"family\";s:6:\"Griffy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/griffy/v19/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:436;a:8:{s:6:\"family\";s:6:\"Gruppo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/gruppo/v14/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:437;a:8:{s:6:\"family\";s:5:\"Gudea\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:3:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/gudea/v13/neIFzCqgsI0mp-CP9IGON7Ez.ttf\";s:6:\"italic\";s:68:\"http://fonts.gstatic.com/s/gudea/v13/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/gudea/v13/neIIzCqgsI0mp9gz26WGHK06UY30.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:438;a:8:{s:6:\"family\";s:4:\"Gugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/gugi/v11/A2BVn5dXywshVA6A9DEfgqM.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:439;a:8:{s:6:\"family\";s:6:\"Gupter\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:3:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/gupter/v12/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf\";i:500;s:72:\"http://fonts.gstatic.com/s/gupter/v12/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/gupter/v12/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:440;a:8:{s:6:\"family\";s:8:\"Gurajada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/gurajada/v13/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:441;a:8:{s:6:\"family\";s:9:\"Gwendolyn\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:2:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/gwendolyn/v3/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf\";i:700;s:78:\"http://fonts.gstatic.com/s/gwendolyn/v3/qkBSXvoO_M3CSss-d7emWLtvmC7HONiSFQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:442;a:8:{s:6:\"family\";s:6:\"Habibi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/habibi/v19/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:443;a:8:{s:6:\"family\";s:14:\"Hachi Maru Pop\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/hachimarupop/v15/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:444;a:8:{s:6:\"family\";s:7:\"Hahmlet\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:4:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:86:\"http://fonts.gstatic.com/s/hahmlet/v7/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjobsO-aVxn.ttf\";i:200;s:86:\"http://fonts.gstatic.com/s/hahmlet/v7/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjobsO-aVxn.ttf\";i:300;s:86:\"http://fonts.gstatic.com/s/hahmlet/v7/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjobsO-aVxn.ttf\";s:7:\"regular\";s:86:\"http://fonts.gstatic.com/s/hahmlet/v7/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjobsO-aVxn.ttf\";i:500;s:86:\"http://fonts.gstatic.com/s/hahmlet/v7/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjobsO-aVxn.ttf\";i:600;s:86:\"http://fonts.gstatic.com/s/hahmlet/v7/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jobsO-aVxn.ttf\";i:700;s:86:\"http://fonts.gstatic.com/s/hahmlet/v7/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jobsO-aVxn.ttf\";i:800;s:86:\"http://fonts.gstatic.com/s/hahmlet/v7/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jobsO-aVxn.ttf\";i:900;s:86:\"http://fonts.gstatic.com/s/hahmlet/v7/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jobsO-aVxn.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:445;a:8:{s:6:\"family\";s:6:\"Halant\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:5:{i:300;s:72:\"http://fonts.gstatic.com/s/halant/v11/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf\";s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/halant/v11/u-4-0qaujRI2PbsX39Jmky12eg.ttf\";i:500;s:72:\"http://fonts.gstatic.com/s/halant/v11/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf\";i:600;s:72:\"http://fonts.gstatic.com/s/halant/v11/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/halant/v11/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:446;a:8:{s:6:\"family\";s:15:\"Hammersmith One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/hammersmithone/v15/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:447;a:8:{s:6:\"family\";s:7:\"Hanalei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/hanalei/v21/E21n_dD8iufIjBRHXzgmVydREus.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:448;a:8:{s:6:\"family\";s:12:\"Hanalei Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/hanaleifill/v19/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:449;a:8:{s:6:\"family\";s:7:\"Handlee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/handlee/v12/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:450;a:8:{s:6:\"family\";s:7:\"Hanuman\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"700\";i:4;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:5:{i:100;s:73:\"http://fonts.gstatic.com/s/hanuman/v21/VuJzdNvD15HhpJJBQMLdPKNiaRpFvg.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/hanuman/v21/VuJ0dNvD15HhpJJBQAr_HIlMZRNcp0o.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/hanuman/v21/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/hanuman/v21/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/hanuman/v21/VuJ0dNvD15HhpJJBQCL6HIlMZRNcp0o.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:451;a:8:{s:6:\"family\";s:12:\"Happy Monkey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/happymonkey/v12/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:452;a:8:{s:6:\"family\";s:9:\"Harmattan\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2021-04-01\";s:5:\"files\";a:2:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/harmattan/v11/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/harmattan/v11/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:453;a:8:{s:6:\"family\";s:12:\"Headland One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/headlandone/v13/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:454;a:8:{s:6:\"family\";s:5:\"Heebo\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:6:\"hebrew\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:83:\"http://fonts.gstatic.com/s/heebo/v17/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf\";i:200;s:83:\"http://fonts.gstatic.com/s/heebo/v17/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf\";i:300;s:83:\"http://fonts.gstatic.com/s/heebo/v17/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/heebo/v17/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf\";i:500;s:83:\"http://fonts.gstatic.com/s/heebo/v17/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf\";i:600;s:83:\"http://fonts.gstatic.com/s/heebo/v17/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf\";i:700;s:83:\"http://fonts.gstatic.com/s/heebo/v17/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf\";i:800;s:83:\"http://fonts.gstatic.com/s/heebo/v17/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf\";i:900;s:83:\"http://fonts.gstatic.com/s/heebo/v17/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:455;a:8:{s:6:\"family\";s:11:\"Henny Penny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/hennypenny/v15/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:456;a:8:{s:6:\"family\";s:10:\"Hepta Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:93:\"http://fonts.gstatic.com/s/heptaslab/v15/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf\";i:200;s:93:\"http://fonts.gstatic.com/s/heptaslab/v15/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf\";i:300;s:93:\"http://fonts.gstatic.com/s/heptaslab/v15/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf\";s:7:\"regular\";s:93:\"http://fonts.gstatic.com/s/heptaslab/v15/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf\";i:500;s:93:\"http://fonts.gstatic.com/s/heptaslab/v15/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf\";i:600;s:93:\"http://fonts.gstatic.com/s/heptaslab/v15/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf\";i:700;s:93:\"http://fonts.gstatic.com/s/heptaslab/v15/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf\";i:800;s:93:\"http://fonts.gstatic.com/s/heptaslab/v15/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf\";i:900;s:93:\"http://fonts.gstatic.com/s/heptaslab/v15/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:457;a:8:{s:6:\"family\";s:20:\"Herr Von Muellerhoff\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/herrvonmuellerhoff/v13/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:458;a:8:{s:6:\"family\";s:9:\"Hi Melody\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/himelody/v11/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:459;a:8:{s:6:\"family\";s:11:\"Hina Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/hinamincho/v6/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:460;a:8:{s:6:\"family\";s:4:\"Hind\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:5:{i:300;s:67:\"http://fonts.gstatic.com/s/hind/v15/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf\";s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/hind/v15/5aU69_a8oxmIRG5yBROzkDM.ttf\";i:500;s:67:\"http://fonts.gstatic.com/s/hind/v15/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf\";i:600;s:67:\"http://fonts.gstatic.com/s/hind/v15/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/hind/v15/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:461;a:8:{s:6:\"family\";s:11:\"Hind Guntur\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:6:\"telugu\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:5:{i:300;s:82:\"http://fonts.gstatic.com/s/hindguntur/v10/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf\";s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/hindguntur/v10/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf\";i:500;s:82:\"http://fonts.gstatic.com/s/hindguntur/v10/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf\";i:600;s:82:\"http://fonts.gstatic.com/s/hindguntur/v10/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/hindguntur/v10/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:462;a:8:{s:6:\"family\";s:12:\"Hind Madurai\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:5:\"tamil\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:5:{i:300;s:85:\"http://fonts.gstatic.com/s/hindmadurai/v10/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf\";s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/hindmadurai/v10/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/hindmadurai/v10/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/hindmadurai/v10/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/hindmadurai/v10/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:463;a:8:{s:6:\"family\";s:13:\"Hind Siliguri\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:7:\"bengali\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:5:{i:300;s:87:\"http://fonts.gstatic.com/s/hindsiliguri/v11/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/hindsiliguri/v11/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/hindsiliguri/v11/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/hindsiliguri/v11/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/hindsiliguri/v11/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:464;a:8:{s:6:\"family\";s:13:\"Hind Vadodara\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:8:\"gujarati\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:5:{i:300;s:87:\"http://fonts.gstatic.com/s/hindvadodara/v10/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/hindvadodara/v10/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/hindvadodara/v10/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/hindvadodara/v10/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/hindvadodara/v10/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:465;a:8:{s:6:\"family\";s:15:\"Holtwood One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/holtwoodonesc/v14/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:466;a:8:{s:6:\"family\";s:14:\"Homemade Apple\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/homemadeapple/v16/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:467;a:8:{s:6:\"family\";s:8:\"Homenaje\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/homenaje/v14/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:468;a:8:{s:6:\"family\";s:9:\"Hurricane\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/hurricane/v3/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:469;a:8:{s:6:\"family\";s:13:\"IBM Plex Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:14:{i:100;s:85:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf\";s:9:\"100italic\";s:87:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf\";i:200;s:86:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf\";s:9:\"200italic\";s:89:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf\";i:300;s:86:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf\";s:9:\"300italic\";s:89:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf\";s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf\";s:6:\"italic\";s:85:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf\";i:500;s:86:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf\";s:9:\"500italic\";s:89:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf\";i:600;s:86:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf\";s:9:\"600italic\";s:89:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf\";i:700;s:86:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf\";s:9:\"700italic\";s:89:\"http://fonts.gstatic.com/s/ibmplexmono/v11/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:470;a:8:{s:6:\"family\";s:13:\"IBM Plex Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:14:{i:100;s:85:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf\";s:9:\"100italic\";s:87:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf\";i:200;s:86:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf\";s:9:\"200italic\";s:89:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf\";i:300;s:86:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf\";s:9:\"300italic\";s:89:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf\";s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf\";s:6:\"italic\";s:85:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf\";i:500;s:86:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf\";s:9:\"500italic\";s:89:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf\";i:600;s:86:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf\";s:9:\"600italic\";s:89:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf\";i:700;s:86:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf\";s:9:\"700italic\";s:89:\"http://fonts.gstatic.com/s/ibmplexsans/v13/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:471;a:8:{s:6:\"family\";s:20:\"IBM Plex Sans Arabic\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:6:\"arabic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:7:{i:100;s:99:\"http://fonts.gstatic.com/s/ibmplexsansarabic/v5/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PC5eMlAMg0.ttf\";i:200;s:100:\"http://fonts.gstatic.com/s/ibmplexsansarabic/v5/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCTVsVJKxTs.ttf\";i:300;s:100:\"http://fonts.gstatic.com/s/ibmplexsansarabic/v5/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCTVsVJKxTs.ttf\";s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/ibmplexsansarabic/v5/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf\";i:500;s:100:\"http://fonts.gstatic.com/s/ibmplexsansarabic/v5/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CTVsVJKxTs.ttf\";i:600;s:100:\"http://fonts.gstatic.com/s/ibmplexsansarabic/v5/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCTVsVJKxTs.ttf\";i:700;s:100:\"http://fonts.gstatic.com/s/ibmplexsansarabic/v5/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCTVsVJKxTs.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:472;a:8:{s:6:\"family\";s:23:\"IBM Plex Sans Condensed\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:12:\"cyrillic-ext\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:14:{i:100;s:107:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf\";s:9:\"100italic\";s:110:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf\";i:200;s:108:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf\";s:9:\"200italic\";s:111:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf\";i:300;s:108:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf\";s:9:\"300italic\";s:111:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf\";s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf\";s:6:\"italic\";s:107:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf\";i:500;s:108:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf\";s:9:\"500italic\";s:111:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf\";i:600;s:108:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf\";s:9:\"600italic\";s:111:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf\";i:700;s:108:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf\";s:9:\"700italic\";s:111:\"http://fonts.gstatic.com/s/ibmplexsanscondensed/v11/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:473;a:8:{s:6:\"family\";s:24:\"IBM Plex Sans Devanagari\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:12:\"cyrillic-ext\";i:1;s:10:\"devanagari\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:7:{i:100;s:108:\"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v5/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUjwUcjwCEQq.ttf\";i:200;s:110:\"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v5/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQe-b8AV0z0w.ttf\";i:300;s:110:\"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v5/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQe-b8AV0z0w.ttf\";s:7:\"regular\";s:106:\"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v5/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf\";i:500;s:110:\"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v5/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQe-b8AV0z0w.ttf\";i:600;s:110:\"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v5/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQe-b8AV0z0w.ttf\";i:700;s:110:\"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v5/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qe-b8AV0z0w.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:474;a:8:{s:6:\"family\";s:20:\"IBM Plex Sans Hebrew\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:12:\"cyrillic-ext\";i:1;s:6:\"hebrew\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:7:{i:100;s:99:\"http://fonts.gstatic.com/s/ibmplexsanshebrew/v5/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-l0VqDaM7C4.ttf\";i:200;s:100:\"http://fonts.gstatic.com/s/ibmplexsanshebrew/v5/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt230_hjqF9Tc2.ttf\";i:300;s:100:\"http://fonts.gstatic.com/s/ibmplexsanshebrew/v5/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H0_hjqF9Tc2.ttf\";s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/ibmplexsanshebrew/v5/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf\";i:500;s:100:\"http://fonts.gstatic.com/s/ibmplexsanshebrew/v5/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X0_hjqF9Tc2.ttf\";i:600;s:100:\"http://fonts.gstatic.com/s/ibmplexsanshebrew/v5/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n0_hjqF9Tc2.ttf\";i:700;s:100:\"http://fonts.gstatic.com/s/ibmplexsanshebrew/v5/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ330_hjqF9Tc2.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:475;a:8:{s:6:\"family\";s:16:\"IBM Plex Sans KR\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:7:{i:100;s:90:\"http://fonts.gstatic.com/s/ibmplexsanskr/v5/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_X5zCpMrMfA.ttf\";i:200;s:91:\"http://fonts.gstatic.com/s/ibmplexsanskr/v5/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7bsqMPVZb4.ttf\";i:300;s:91:\"http://fonts.gstatic.com/s/ibmplexsanskr/v5/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7bsqMPVZb4.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/ibmplexsanskr/v5/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf\";i:500;s:91:\"http://fonts.gstatic.com/s/ibmplexsanskr/v5/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7bsqMPVZb4.ttf\";i:600;s:91:\"http://fonts.gstatic.com/s/ibmplexsanskr/v5/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7bsqMPVZb4.ttf\";i:700;s:91:\"http://fonts.gstatic.com/s/ibmplexsanskr/v5/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7bsqMPVZb4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:476;a:8:{s:6:\"family\";s:18:\"IBM Plex Sans Thai\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:12:\"cyrillic-ext\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:4:\"thai\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:7:{i:100;s:94:\"http://fonts.gstatic.com/s/ibmplexsansthai/v5/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYlR8ZKUqcX.ttf\";i:200;s:96:\"http://fonts.gstatic.com/s/ibmplexsansthai/v5/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFbehGW74OXw.ttf\";i:300;s:96:\"http://fonts.gstatic.com/s/ibmplexsansthai/v5/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFbehGW74OXw.ttf\";s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/ibmplexsansthai/v5/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/ibmplexsansthai/v5/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFbehGW74OXw.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/ibmplexsansthai/v5/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFbehGW74OXw.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/ibmplexsansthai/v5/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFbehGW74OXw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:477;a:8:{s:6:\"family\";s:25:\"IBM Plex Sans Thai Looped\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:12:\"cyrillic-ext\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:4:\"thai\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:7:{i:100;s:110:\"http://fonts.gstatic.com/s/ibmplexsansthailooped/v5/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKpHOtFCQ76Q.ttf\";i:200;s:111:\"http://fonts.gstatic.com/s/ibmplexsansthailooped/v5/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFmDGC0i8Cc.ttf\";i:300;s:111:\"http://fonts.gstatic.com/s/ibmplexsansthailooped/v5/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFmDGC0i8Cc.ttf\";s:7:\"regular\";s:107:\"http://fonts.gstatic.com/s/ibmplexsansthailooped/v5/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf\";i:500;s:111:\"http://fonts.gstatic.com/s/ibmplexsansthailooped/v5/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFmDGC0i8Cc.ttf\";i:600;s:111:\"http://fonts.gstatic.com/s/ibmplexsansthailooped/v5/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFmDGC0i8Cc.ttf\";i:700;s:111:\"http://fonts.gstatic.com/s/ibmplexsansthailooped/v5/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFmDGC0i8Cc.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:478;a:8:{s:6:\"family\";s:14:\"IBM Plex Serif\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:14:{i:100;s:87:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf\";s:9:\"100italic\";s:90:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf\";i:200;s:88:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf\";s:9:\"200italic\";s:91:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf\";i:300;s:88:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf\";s:9:\"300italic\";s:91:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf\";s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf\";s:6:\"italic\";s:87:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf\";i:500;s:88:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf\";s:9:\"500italic\";s:91:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf\";i:600;s:88:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf\";s:9:\"600italic\";s:91:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf\";i:700;s:88:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf\";s:9:\"700italic\";s:91:\"http://fonts.gstatic.com/s/ibmplexserif/v14/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:479;a:8:{s:6:\"family\";s:15:\"IM Fell DW Pica\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:2:{s:7:\"regular\";s:86:\"http://fonts.gstatic.com/s/imfelldwpica/v12/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf\";s:6:\"italic\";s:88:\"http://fonts.gstatic.com/s/imfelldwpica/v12/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:480;a:8:{s:6:\"family\";s:18:\"IM Fell DW Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/imfelldwpicasc/v12/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:481;a:8:{s:6:\"family\";s:19:\"IM Fell Double Pica\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:2:{s:7:\"regular\";s:95:\"http://fonts.gstatic.com/s/imfelldoublepica/v10/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf\";s:6:\"italic\";s:98:\"http://fonts.gstatic.com/s/imfelldoublepica/v10/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:482;a:8:{s:6:\"family\";s:22:\"IM Fell Double Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:101:\"http://fonts.gstatic.com/s/imfelldoublepicasc/v12/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:483;a:8:{s:6:\"family\";s:15:\"IM Fell English\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:2:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/imfellenglish/v10/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf\";s:6:\"italic\";s:89:\"http://fonts.gstatic.com/s/imfellenglish/v10/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:484;a:8:{s:6:\"family\";s:18:\"IM Fell English SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:93:\"http://fonts.gstatic.com/s/imfellenglishsc/v12/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:485;a:8:{s:6:\"family\";s:20:\"IM Fell French Canon\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:2:{s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/imfellfrenchcanon/v12/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf\";s:6:\"italic\";s:100:\"http://fonts.gstatic.com/s/imfellfrenchcanon/v12/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:486;a:8:{s:6:\"family\";s:23:\"IM Fell French Canon SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:103:\"http://fonts.gstatic.com/s/imfellfrenchcanonsc/v20/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:487;a:8:{s:6:\"family\";s:20:\"IM Fell Great Primer\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:2:{s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/imfellgreatprimer/v12/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf\";s:6:\"italic\";s:100:\"http://fonts.gstatic.com/s/imfellgreatprimer/v12/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:488;a:8:{s:6:\"family\";s:23:\"IM Fell Great Primer SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:103:\"http://fonts.gstatic.com/s/imfellgreatprimersc/v12/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:489;a:8:{s:6:\"family\";s:16:\"Ibarra Real Nova\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:6:\"italic\";i:5;s:9:\"500italic\";i:6;s:9:\"600italic\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:8:{s:7:\"regular\";s:106:\"http://fonts.gstatic.com/s/ibarrarealnova/v18/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf\";i:500;s:106:\"http://fonts.gstatic.com/s/ibarrarealnova/v18/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf\";i:600;s:106:\"http://fonts.gstatic.com/s/ibarrarealnova/v18/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf\";i:700;s:106:\"http://fonts.gstatic.com/s/ibarrarealnova/v18/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf\";s:6:\"italic\";s:109:\"http://fonts.gstatic.com/s/ibarrarealnova/v18/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf\";s:9:\"500italic\";s:109:\"http://fonts.gstatic.com/s/ibarrarealnova/v18/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf\";s:9:\"600italic\";s:109:\"http://fonts.gstatic.com/s/ibarrarealnova/v18/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf\";s:9:\"700italic\";s:109:\"http://fonts.gstatic.com/s/ibarrarealnova/v18/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:490;a:8:{s:6:\"family\";s:7:\"Iceberg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/iceberg/v18/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:491;a:8:{s:6:\"family\";s:7:\"Iceland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/iceland/v14/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:492;a:8:{s:6:\"family\";s:5:\"Imbue\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:9:{i:100;s:99:\"http://fonts.gstatic.com/s/imbue/v9/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfOsNNK-Q4xY.ttf\";i:200;s:99:\"http://fonts.gstatic.com/s/imbue/v9/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfOsNNK-Q4xY.ttf\";i:300;s:99:\"http://fonts.gstatic.com/s/imbue/v9/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfOsNNK-Q4xY.ttf\";s:7:\"regular\";s:99:\"http://fonts.gstatic.com/s/imbue/v9/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfOsNNK-Q4xY.ttf\";i:500;s:99:\"http://fonts.gstatic.com/s/imbue/v9/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfOsNNK-Q4xY.ttf\";i:600;s:99:\"http://fonts.gstatic.com/s/imbue/v9/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfOsNNK-Q4xY.ttf\";i:700;s:99:\"http://fonts.gstatic.com/s/imbue/v9/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfOsNNK-Q4xY.ttf\";i:800;s:99:\"http://fonts.gstatic.com/s/imbue/v9/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfOsNNK-Q4xY.ttf\";i:900;s:99:\"http://fonts.gstatic.com/s/imbue/v9/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfOsNNK-Q4xY.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:493;a:8:{s:6:\"family\";s:15:\"Imperial Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/imperialscript/v1/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:494;a:8:{s:6:\"family\";s:7:\"Imprima\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/imprima/v14/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:495;a:8:{s:6:\"family\";s:11:\"Inconsolata\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2021-01-30\";s:5:\"files\";a:8:{i:200;s:114:\"http://fonts.gstatic.com/s/inconsolata/v21/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf\";i:300;s:114:\"http://fonts.gstatic.com/s/inconsolata/v21/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf\";s:7:\"regular\";s:114:\"http://fonts.gstatic.com/s/inconsolata/v21/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf\";i:500;s:114:\"http://fonts.gstatic.com/s/inconsolata/v21/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf\";i:600;s:114:\"http://fonts.gstatic.com/s/inconsolata/v21/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf\";i:700;s:114:\"http://fonts.gstatic.com/s/inconsolata/v21/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf\";i:800;s:114:\"http://fonts.gstatic.com/s/inconsolata/v21/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf\";i:900;s:114:\"http://fonts.gstatic.com/s/inconsolata/v21/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:496;a:8:{s:6:\"family\";s:5:\"Inder\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/inder/v12/w8gUH2YoQe8_4vq6pw-P3U4O.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:497;a:8:{s:6:\"family\";s:12:\"Indie Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/indieflower/v16/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:498;a:8:{s:6:\"family\";s:5:\"Inika\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/inika/v19/rnCm-x5X3QP-phTHRcc2s2XH.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/inika/v19/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:499;a:8:{s:6:\"family\";s:14:\"Inknut Antiqua\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:7:{i:300;s:89:\"http://fonts.gstatic.com/s/inknutantiqua/v12/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf\";s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/inknutantiqua/v12/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf\";i:500;s:89:\"http://fonts.gstatic.com/s/inknutantiqua/v12/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf\";i:600;s:89:\"http://fonts.gstatic.com/s/inknutantiqua/v12/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf\";i:700;s:89:\"http://fonts.gstatic.com/s/inknutantiqua/v12/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf\";i:800;s:89:\"http://fonts.gstatic.com/s/inknutantiqua/v12/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf\";i:900;s:89:\"http://fonts.gstatic.com/s/inknutantiqua/v12/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:500;a:8:{s:6:\"family\";s:10:\"Inria Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:6:{i:300;s:80:\"http://fonts.gstatic.com/s/inriasans/v12/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf\";s:9:\"300italic\";s:83:\"http://fonts.gstatic.com/s/inriasans/v12/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf\";s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/inriasans/v12/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf\";s:6:\"italic\";s:79:\"http://fonts.gstatic.com/s/inriasans/v12/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/inriasans/v12/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf\";s:9:\"700italic\";s:83:\"http://fonts.gstatic.com/s/inriasans/v12/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:501;a:8:{s:6:\"family\";s:11:\"Inria Serif\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:6:{i:300;s:82:\"http://fonts.gstatic.com/s/inriaserif/v12/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf\";s:9:\"300italic\";s:85:\"http://fonts.gstatic.com/s/inriaserif/v12/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf\";s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/inriaserif/v12/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf\";s:6:\"italic\";s:81:\"http://fonts.gstatic.com/s/inriaserif/v12/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/inriaserif/v12/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf\";s:9:\"700italic\";s:85:\"http://fonts.gstatic.com/s/inriaserif/v12/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:502;a:8:{s:6:\"family\";s:11:\"Inspiration\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/inspiration/v1/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:503;a:8:{s:6:\"family\";s:5:\"Inter\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-11-10\";s:5:\"files\";a:9:{i:100;s:99:\"http://fonts.gstatic.com/s/inter/v7/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf\";i:200;s:99:\"http://fonts.gstatic.com/s/inter/v7/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf\";i:300;s:99:\"http://fonts.gstatic.com/s/inter/v7/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf\";s:7:\"regular\";s:99:\"http://fonts.gstatic.com/s/inter/v7/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf\";i:500;s:99:\"http://fonts.gstatic.com/s/inter/v7/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\";i:600;s:99:\"http://fonts.gstatic.com/s/inter/v7/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\";i:700;s:99:\"http://fonts.gstatic.com/s/inter/v7/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\";i:800;s:99:\"http://fonts.gstatic.com/s/inter/v7/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf\";i:900;s:99:\"http://fonts.gstatic.com/s/inter/v7/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:504;a:8:{s:6:\"family\";s:12:\"Irish Grover\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/irishgrover/v12/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:505;a:8:{s:6:\"family\";s:14:\"Island Moments\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/islandmoments/v1/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:506;a:8:{s:6:\"family\";s:9:\"Istok Web\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/istokweb/v18/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf\";s:6:\"italic\";s:76:\"http://fonts.gstatic.com/s/istokweb/v18/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf\";i:700;s:78:\"http://fonts.gstatic.com/s/istokweb/v18/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf\";s:9:\"700italic\";s:80:\"http://fonts.gstatic.com/s/istokweb/v18/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:507;a:8:{s:6:\"family\";s:8:\"Italiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/italiana/v14/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:508;a:8:{s:6:\"family\";s:9:\"Italianno\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/italianno/v14/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:509;a:8:{s:6:\"family\";s:4:\"Itim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:62:\"http://fonts.gstatic.com/s/itim/v8/0nknC9ziJOYewARKkc7ZdwU.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:510;a:8:{s:6:\"family\";s:16:\"Jacques Francois\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/jacquesfrancois/v18/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:511;a:8:{s:6:\"family\";s:23:\"Jacques Francois Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:105:\"http://fonts.gstatic.com/s/jacquesfrancoisshadow/v19/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:512;a:8:{s:6:\"family\";s:5:\"Jaldi\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/jaldi/v10/or3sQ67z0_CI30NUZpD_B6g8.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/jaldi/v10/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:513;a:8:{s:6:\"family\";s:14:\"JetBrains Mono\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:9:\"100italic\";i:9;s:9:\"200italic\";i:10;s:9:\"300italic\";i:11;s:6:\"italic\";i:12;s:9:\"500italic\";i:13;s:9:\"600italic\";i:14;s:9:\"700italic\";i:15;s:9:\"800italic\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:16:{i:100;s:103:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jPVmUsaaDhw.ttf\";i:200;s:103:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjPVmUsaaDhw.ttf\";i:300;s:103:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjPVmUsaaDhw.ttf\";s:7:\"regular\";s:103:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.ttf\";i:500;s:103:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPVmUsaaDhw.ttf\";i:600;s:103:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPVmUsaaDhw.ttf\";i:700;s:103:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPVmUsaaDhw.ttf\";i:800;s:103:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjPVmUsaaDhw.ttf\";s:9:\"100italic\";s:105:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OQk6OThxPA.ttf\";s:9:\"200italic\";s:105:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOQk6OThxPA.ttf\";s:9:\"300italic\";s:105:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOQk6OThxPA.ttf\";s:6:\"italic\";s:105:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOQk6OThxPA.ttf\";s:9:\"500italic\";s:105:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOQk6OThxPA.ttf\";s:9:\"600italic\";s:105:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOQk6OThxPA.ttf\";s:9:\"700italic\";s:105:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOQk6OThxPA.ttf\";s:9:\"800italic\";s:105:\"http://fonts.gstatic.com/s/jetbrainsmono/v11/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOQk6OThxPA.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:514;a:8:{s:6:\"family\";s:14:\"Jim Nightshade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/jimnightshade/v18/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:515;a:8:{s:6:\"family\";s:10:\"Jockey One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/jockeyone/v13/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:516;a:8:{s:6:\"family\";s:12:\"Jolly Lodger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/jollylodger/v18/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:517;a:8:{s:6:\"family\";s:8:\"Jomhuria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-03-24\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/jomhuria/v12/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:518;a:8:{s:6:\"family\";s:9:\"Jomolhari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:7:\"tibetan\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/jomolhari/v12/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:519;a:8:{s:6:\"family\";s:12:\"Josefin Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:9:\"100italic\";i:8;s:9:\"200italic\";i:9;s:9:\"300italic\";i:10;s:6:\"italic\";i:11;s:9:\"500italic\";i:12;s:9:\"600italic\";i:13;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:14:{i:100;s:98:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf\";i:200;s:98:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf\";i:300;s:98:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf\";s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf\";i:500;s:98:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf\";i:600;s:98:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf\";s:9:\"100italic\";s:101:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf\";s:9:\"200italic\";s:101:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf\";s:9:\"300italic\";s:101:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf\";s:6:\"italic\";s:101:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf\";s:9:\"500italic\";s:101:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf\";s:9:\"600italic\";s:101:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf\";s:9:\"700italic\";s:101:\"http://fonts.gstatic.com/s/josefinsans/v23/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:520;a:8:{s:6:\"family\";s:12:\"Josefin Slab\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:9:\"100italic\";i:8;s:9:\"200italic\";i:9;s:9:\"300italic\";i:10;s:6:\"italic\";i:11;s:9:\"500italic\";i:12;s:9:\"600italic\";i:13;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:14:{i:100;s:98:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3k3K6CcEyI.ttf\";i:200;s:98:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3k3K6CcEyI.ttf\";i:300;s:98:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3k3K6CcEyI.ttf\";s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3k3K6CcEyI.ttf\";i:500;s:98:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3k3K6CcEyI.ttf\";i:600;s:98:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3k3K6CcEyI.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3k3K6CcEyI.ttf\";s:9:\"100italic\";s:101:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9L4KZAyK43w.ttf\";s:9:\"200italic\";s:101:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9L4KZAyK43w.ttf\";s:9:\"300italic\";s:101:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9L4KZAyK43w.ttf\";s:6:\"italic\";s:101:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9L4KZAyK43w.ttf\";s:9:\"500italic\";s:101:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9L4KZAyK43w.ttf\";s:9:\"600italic\";s:101:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09L4KZAyK43w.ttf\";s:9:\"700italic\";s:101:\"http://fonts.gstatic.com/s/josefinslab/v18/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09L4KZAyK43w.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:521;a:8:{s:6:\"family\";s:4:\"Jost\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:80:\"http://fonts.gstatic.com/s/jost/v12/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf\";i:200;s:80:\"http://fonts.gstatic.com/s/jost/v12/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf\";i:300;s:80:\"http://fonts.gstatic.com/s/jost/v12/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf\";s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/jost/v12/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf\";i:500;s:80:\"http://fonts.gstatic.com/s/jost/v12/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf\";i:600;s:80:\"http://fonts.gstatic.com/s/jost/v12/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/jost/v12/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf\";i:800;s:80:\"http://fonts.gstatic.com/s/jost/v12/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf\";i:900;s:80:\"http://fonts.gstatic.com/s/jost/v12/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf\";s:9:\"100italic\";s:83:\"http://fonts.gstatic.com/s/jost/v12/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf\";s:9:\"200italic\";s:83:\"http://fonts.gstatic.com/s/jost/v12/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf\";s:9:\"300italic\";s:83:\"http://fonts.gstatic.com/s/jost/v12/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf\";s:6:\"italic\";s:83:\"http://fonts.gstatic.com/s/jost/v12/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf\";s:9:\"500italic\";s:83:\"http://fonts.gstatic.com/s/jost/v12/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf\";s:9:\"600italic\";s:83:\"http://fonts.gstatic.com/s/jost/v12/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf\";s:9:\"700italic\";s:83:\"http://fonts.gstatic.com/s/jost/v12/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf\";s:9:\"800italic\";s:83:\"http://fonts.gstatic.com/s/jost/v12/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf\";s:9:\"900italic\";s:83:\"http://fonts.gstatic.com/s/jost/v12/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:522;a:8:{s:6:\"family\";s:8:\"Joti One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/jotione/v19/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:523;a:8:{s:6:\"family\";s:3:\"Jua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:61:\"http://fonts.gstatic.com/s/jua/v11/co3KmW9ljjAjc-DZCsKgsg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:524;a:8:{s:6:\"family\";s:6:\"Judson\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:3:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/judson/v16/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/judson/v16/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/judson/v16/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:525;a:8:{s:6:\"family\";s:5:\"Julee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/julee/v20/TuGfUVB3RpZPQ6ZLodgzydtk.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:526;a:8:{s:6:\"family\";s:15:\"Julius Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/juliussansone/v12/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:527;a:8:{s:6:\"family\";s:5:\"Junge\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/junge/v18/gokgH670Gl1lUqAdvhB7SnKm.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:528;a:8:{s:6:\"family\";s:4:\"Jura\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:8:\"kayah-li\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:80:\"http://fonts.gstatic.com/s/jura/v22/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf\";s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/jura/v22/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf\";i:500;s:80:\"http://fonts.gstatic.com/s/jura/v22/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf\";i:600;s:80:\"http://fonts.gstatic.com/s/jura/v22/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/jura/v22/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:529;a:8:{s:6:\"family\";s:17:\"Just Another Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/justanotherhand/v17/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:530;a:8:{s:6:\"family\";s:23:\"Just Me Again Down Here\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:103:\"http://fonts.gstatic.com/s/justmeagaindownhere/v22/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:531;a:8:{s:6:\"family\";s:3:\"K2D\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:16:{i:100;s:62:\"http://fonts.gstatic.com/s/k2d/v7/J7aRnpF2V0ErE6UpvrIw74NL.ttf\";s:9:\"100italic\";s:65:\"http://fonts.gstatic.com/s/k2d/v7/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf\";i:200;s:64:\"http://fonts.gstatic.com/s/k2d/v7/J7aenpF2V0Erv4QJlJw85ppSGw.ttf\";s:9:\"200italic\";s:66:\"http://fonts.gstatic.com/s/k2d/v7/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf\";i:300;s:64:\"http://fonts.gstatic.com/s/k2d/v7/J7aenpF2V0Er24cJlJw85ppSGw.ttf\";s:9:\"300italic\";s:66:\"http://fonts.gstatic.com/s/k2d/v7/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf\";s:7:\"regular\";s:60:\"http://fonts.gstatic.com/s/k2d/v7/J7aTnpF2V0ETd68tnLcg7w.ttf\";s:6:\"italic\";s:62:\"http://fonts.gstatic.com/s/k2d/v7/J7aRnpF2V0EjdaUpvrIw74NL.ttf\";i:500;s:64:\"http://fonts.gstatic.com/s/k2d/v7/J7aenpF2V0Erg4YJlJw85ppSGw.ttf\";s:9:\"500italic\";s:66:\"http://fonts.gstatic.com/s/k2d/v7/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf\";i:600;s:64:\"http://fonts.gstatic.com/s/k2d/v7/J7aenpF2V0Err4EJlJw85ppSGw.ttf\";s:9:\"600italic\";s:66:\"http://fonts.gstatic.com/s/k2d/v7/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf\";i:700;s:64:\"http://fonts.gstatic.com/s/k2d/v7/J7aenpF2V0Ery4AJlJw85ppSGw.ttf\";s:9:\"700italic\";s:66:\"http://fonts.gstatic.com/s/k2d/v7/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf\";i:800;s:64:\"http://fonts.gstatic.com/s/k2d/v7/J7aenpF2V0Er14MJlJw85ppSGw.ttf\";s:9:\"800italic\";s:66:\"http://fonts.gstatic.com/s/k2d/v7/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:532;a:8:{s:6:\"family\";s:5:\"Kadwa\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:64:\"http://fonts.gstatic.com/s/kadwa/v8/rnCm-x5V0g7iphTHRcc2s2XH.ttf\";i:700;s:68:\"http://fonts.gstatic.com/s/kadwa/v8/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:533;a:8:{s:6:\"family\";s:12:\"Kaisei Decol\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:3:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/kaiseidecol/v6/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf\";i:500;s:84:\"http://fonts.gstatic.com/s/kaiseidecol/v6/bMrvmSqP45sidWf3QmfFW6iKr3gr00i_qb57kA.ttf\";i:700;s:84:\"http://fonts.gstatic.com/s/kaiseidecol/v6/bMrvmSqP45sidWf3QmfFW6iK534r00i_qb57kA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:534;a:8:{s:6:\"family\";s:16:\"Kaisei HarunoUmi\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:3:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/kaiseiharunoumi/v6/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf\";i:500;s:93:\"http://fonts.gstatic.com/s/kaiseiharunoumi/v6/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMcFwmC9FAU.ttf\";i:700;s:93:\"http://fonts.gstatic.com/s/kaiseiharunoumi/v6/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMcFwmC9FAU.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:535;a:8:{s:6:\"family\";s:11:\"Kaisei Opti\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:3:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/kaiseiopti/v6/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf\";i:500;s:81:\"http://fonts.gstatic.com/s/kaiseiopti/v6/QldXNThJphYb8_g6c2nlIGGqxY1u7f34DYwn.ttf\";i:700;s:81:\"http://fonts.gstatic.com/s/kaiseiopti/v6/QldXNThJphYb8_g6c2nlIGHiw41u7f34DYwn.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:536;a:8:{s:6:\"family\";s:14:\"Kaisei Tokumin\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"800\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:4:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/kaiseitokumin/v6/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf\";i:500;s:88:\"http://fonts.gstatic.com/s/kaiseitokumin/v6/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3khpMIzeI6v.ttf\";i:700;s:88:\"http://fonts.gstatic.com/s/kaiseitokumin/v6/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkhpMIzeI6v.ttf\";i:800;s:88:\"http://fonts.gstatic.com/s/kaiseitokumin/v6/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkhpMIzeI6v.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:537;a:8:{s:6:\"family\";s:5:\"Kalam\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:3:{i:300;s:69:\"http://fonts.gstatic.com/s/kalam/v15/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf\";s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/kalam/v15/YA9dr0Wd4kDdMuhWMibDszkB.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/kalam/v15/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:538;a:8:{s:6:\"family\";s:7:\"Kameron\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2020-09-02\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/kameron/v11/vm82dR7vXErQxuznsL4wL-XIYH8.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/kameron/v11/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:539;a:8:{s:6:\"family\";s:5:\"Kanit\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:18:{i:100;s:68:\"http://fonts.gstatic.com/s/kanit/v11/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf\";s:9:\"100italic\";s:71:\"http://fonts.gstatic.com/s/kanit/v11/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf\";i:200;s:69:\"http://fonts.gstatic.com/s/kanit/v11/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf\";s:9:\"200italic\";s:72:\"http://fonts.gstatic.com/s/kanit/v11/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf\";i:300;s:69:\"http://fonts.gstatic.com/s/kanit/v11/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf\";s:9:\"300italic\";s:72:\"http://fonts.gstatic.com/s/kanit/v11/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf\";s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/kanit/v11/nKKZ-Go6G5tXcoaSEQGodLxA.ttf\";s:6:\"italic\";s:68:\"http://fonts.gstatic.com/s/kanit/v11/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf\";i:500;s:69:\"http://fonts.gstatic.com/s/kanit/v11/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf\";s:9:\"500italic\";s:72:\"http://fonts.gstatic.com/s/kanit/v11/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf\";i:600;s:69:\"http://fonts.gstatic.com/s/kanit/v11/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf\";s:9:\"600italic\";s:72:\"http://fonts.gstatic.com/s/kanit/v11/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/kanit/v11/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf\";s:9:\"700italic\";s:72:\"http://fonts.gstatic.com/s/kanit/v11/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf\";i:800;s:69:\"http://fonts.gstatic.com/s/kanit/v11/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf\";s:9:\"800italic\";s:72:\"http://fonts.gstatic.com/s/kanit/v11/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf\";i:900;s:69:\"http://fonts.gstatic.com/s/kanit/v11/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf\";s:9:\"900italic\";s:72:\"http://fonts.gstatic.com/s/kanit/v11/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:540;a:8:{s:6:\"family\";s:9:\"Kantumruy\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"khmer\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:3:{i:300;s:79:\"http://fonts.gstatic.com/s/kantumruy/v19/syk0-yJ0m7wyVb-f4FOPUtDlpn-UJ1H6Uw.ttf\";s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/kantumruy/v19/sykx-yJ0m7wyVb-f4FO3_vjBrlSILg.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/kantumruy/v19/syk0-yJ0m7wyVb-f4FOPQtflpn-UJ1H6Uw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:541;a:8:{s:6:\"family\";s:9:\"Karantina\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:6:\"hebrew\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:3:{i:300;s:78:\"http://fonts.gstatic.com/s/karantina/v8/buExpo24ccnh31GVMABxXCgf-P5Oaiw4cw.ttf\";s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/karantina/v8/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf\";i:700;s:78:\"http://fonts.gstatic.com/s/karantina/v8/buExpo24ccnh31GVMABxTC8f-P5Oaiw4cw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:542;a:8:{s:6:\"family\";s:5:\"Karla\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:9:\"200italic\";i:8;s:9:\"300italic\";i:9;s:6:\"italic\";i:10;s:9:\"500italic\";i:11;s:9:\"600italic\";i:12;s:9:\"700italic\";i:13;s:9:\"800italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:14:{i:200;s:83:\"http://fonts.gstatic.com/s/karla/v21/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFENLR7fHGw.ttf\";i:300;s:83:\"http://fonts.gstatic.com/s/karla/v21/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFENLR7fHGw.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/karla/v21/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFENLR7fHGw.ttf\";i:500;s:83:\"http://fonts.gstatic.com/s/karla/v21/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFENLR7fHGw.ttf\";i:600;s:83:\"http://fonts.gstatic.com/s/karla/v21/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFENLR7fHGw.ttf\";i:700;s:83:\"http://fonts.gstatic.com/s/karla/v21/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFENLR7fHGw.ttf\";i:800;s:83:\"http://fonts.gstatic.com/s/karla/v21/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFENLR7fHGw.ttf\";s:9:\"200italic\";s:85:\"http://fonts.gstatic.com/s/karla/v21/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lPZbLXGxGR.ttf\";s:9:\"300italic\";s:85:\"http://fonts.gstatic.com/s/karla/v21/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lPZbLXGxGR.ttf\";s:6:\"italic\";s:85:\"http://fonts.gstatic.com/s/karla/v21/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lPZbLXGxGR.ttf\";s:9:\"500italic\";s:85:\"http://fonts.gstatic.com/s/karla/v21/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lPZbLXGxGR.ttf\";s:9:\"600italic\";s:85:\"http://fonts.gstatic.com/s/karla/v21/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElPZbLXGxGR.ttf\";s:9:\"700italic\";s:85:\"http://fonts.gstatic.com/s/karla/v21/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElPZbLXGxGR.ttf\";s:9:\"800italic\";s:85:\"http://fonts.gstatic.com/s/karla/v21/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElPZbLXGxGR.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:543;a:8:{s:6:\"family\";s:5:\"Karma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:5:{i:300;s:69:\"http://fonts.gstatic.com/s/karma/v14/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf\";s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/karma/v14/va9I4kzAzMZRGIBvS-J3kbDP.ttf\";i:500;s:69:\"http://fonts.gstatic.com/s/karma/v14/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf\";i:600;s:69:\"http://fonts.gstatic.com/s/karma/v14/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/karma/v14/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:544;a:8:{s:6:\"family\";s:7:\"Katibeh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/katibeh/v15/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:545;a:8:{s:6:\"family\";s:14:\"Kaushan Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/kaushanscript/v13/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:546;a:8:{s:6:\"family\";s:9:\"Kavivanar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:5:\"tamil\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/kavivanar/v16/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:547;a:8:{s:6:\"family\";s:6:\"Kavoon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/kavoon/v19/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:548;a:8:{s:6:\"family\";s:10:\"Kdam Thmor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"khmer\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/kdamthmor/v19/MwQzbhjs3veF6QwJVf0JkGMViblPtXs.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:549;a:8:{s:6:\"family\";s:10:\"Keania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/keaniaone/v18/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:550;a:8:{s:6:\"family\";s:10:\"Kelly Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/kellyslab/v11/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:551;a:8:{s:6:\"family\";s:5:\"Kenia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/kenia/v22/jizURE5PuHQH9qCONUGswfGM.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:552;a:8:{s:6:\"family\";s:5:\"Khand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:5:{i:300;s:69:\"http://fonts.gstatic.com/s/khand/v12/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf\";s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/khand/v12/TwMA-IINQlQQ0YpVWHU_TBqO.ttf\";i:500;s:69:\"http://fonts.gstatic.com/s/khand/v12/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf\";i:600;s:69:\"http://fonts.gstatic.com/s/khand/v12/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/khand/v12/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:553;a:8:{s:6:\"family\";s:5:\"Khmer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"khmer\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/khmer/v23/MjQImit_vPPwpF-BpN2EeYmD.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:554;a:8:{s:6:\"family\";s:5:\"Khula\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:5:{i:300;s:69:\"http://fonts.gstatic.com/s/khula/v10/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf\";s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/khula/v10/OpNCnoEOns3V7FcJpA_chzJ0.ttf\";i:600;s:69:\"http://fonts.gstatic.com/s/khula/v10/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/khula/v10/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf\";i:800;s:69:\"http://fonts.gstatic.com/s/khula/v10/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:555;a:8:{s:6:\"family\";s:5:\"Kings\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:64:\"http://fonts.gstatic.com/s/kings/v3/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:556;a:8:{s:6:\"family\";s:14:\"Kirang Haerang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/kiranghaerang/v18/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:557;a:8:{s:6:\"family\";s:8:\"Kite One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/kiteone/v18/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:558;a:8:{s:6:\"family\";s:9:\"Kiwi Maru\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:3:{i:300;s:78:\"http://fonts.gstatic.com/s/kiwimaru/v12/R70djykGkuuDep-hRg6gNCi0Vxn9R5ShnA.ttf\";s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/kiwimaru/v12/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf\";i:500;s:78:\"http://fonts.gstatic.com/s/kiwimaru/v12/R70djykGkuuDep-hRg6gbCm0Vxn9R5ShnA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:559;a:8:{s:6:\"family\";s:8:\"Klee One\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"600\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:9:\"greek-ext\";i:2;s:8:\"japanese\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/kleeone/v5/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/kleeone/v5/LDI2apCLNRc6A8oT4pbYF8Osc-bGkqIw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:560;a:8:{s:6:\"family\";s:7:\"Knewave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/knewave/v12/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:561;a:8:{s:6:\"family\";s:4:\"KoHo\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:12:{i:200;s:67:\"http://fonts.gstatic.com/s/koho/v14/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf\";s:9:\"200italic\";s:70:\"http://fonts.gstatic.com/s/koho/v14/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf\";i:300;s:67:\"http://fonts.gstatic.com/s/koho/v14/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf\";s:9:\"300italic\";s:70:\"http://fonts.gstatic.com/s/koho/v14/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf\";s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/koho/v14/K2F-fZ5fmddNBikefJbSOos.ttf\";s:6:\"italic\";s:66:\"http://fonts.gstatic.com/s/koho/v14/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf\";i:500;s:67:\"http://fonts.gstatic.com/s/koho/v14/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf\";s:9:\"500italic\";s:70:\"http://fonts.gstatic.com/s/koho/v14/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf\";i:600;s:67:\"http://fonts.gstatic.com/s/koho/v14/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf\";s:9:\"600italic\";s:70:\"http://fonts.gstatic.com/s/koho/v14/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/koho/v14/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf\";s:9:\"700italic\";s:70:\"http://fonts.gstatic.com/s/koho/v14/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:562;a:8:{s:6:\"family\";s:9:\"Kodchasan\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:12:{i:200;s:79:\"http://fonts.gstatic.com/s/kodchasan/v14/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf\";s:9:\"200italic\";s:81:\"http://fonts.gstatic.com/s/kodchasan/v14/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf\";i:300;s:79:\"http://fonts.gstatic.com/s/kodchasan/v14/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf\";s:9:\"300italic\";s:81:\"http://fonts.gstatic.com/s/kodchasan/v14/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf\";s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/kodchasan/v14/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf\";s:6:\"italic\";s:77:\"http://fonts.gstatic.com/s/kodchasan/v14/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf\";i:500;s:79:\"http://fonts.gstatic.com/s/kodchasan/v14/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf\";s:9:\"500italic\";s:81:\"http://fonts.gstatic.com/s/kodchasan/v14/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf\";i:600;s:79:\"http://fonts.gstatic.com/s/kodchasan/v14/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf\";s:9:\"600italic\";s:81:\"http://fonts.gstatic.com/s/kodchasan/v14/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/kodchasan/v14/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf\";s:9:\"700italic\";s:81:\"http://fonts.gstatic.com/s/kodchasan/v14/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:563;a:8:{s:6:\"family\";s:14:\"Koh Santepheap\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"700\";i:4;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:5:{i:100;s:87:\"http://fonts.gstatic.com/s/kohsantepheap/v7/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVyTtjNJUWU.ttf\";i:300;s:88:\"http://fonts.gstatic.com/s/kohsantepheap/v7/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y5mD9ASHz5.ttf\";s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/kohsantepheap/v7/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf\";i:700;s:88:\"http://fonts.gstatic.com/s/kohsantepheap/v7/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy5mD9ASHz5.ttf\";i:900;s:88:\"http://fonts.gstatic.com/s/kohsantepheap/v7/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny5mD9ASHz5.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:564;a:8:{s:6:\"family\";s:12:\"Kolker Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/kolkerbrush/v1/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:565;a:8:{s:6:\"family\";s:6:\"Kosugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2021-11-10\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/kosugi/v11/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:566;a:8:{s:6:\"family\";s:11:\"Kosugi Maru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2021-11-10\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/kosugimaru/v11/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:567;a:8:{s:6:\"family\";s:9:\"Kotta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/kottaone/v18/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:568;a:8:{s:6:\"family\";s:6:\"Koulen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/koulen/v23/AMOQz46as3KIBPeWgnA9kuYMUg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:569;a:8:{s:6:\"family\";s:6:\"Kranky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/kranky/v13/hESw6XVgJzlPsFnMpheEZo_H_w.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:570;a:8:{s:6:\"family\";s:5:\"Kreon\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v30\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:83:\"http://fonts.gstatic.com/s/kreon/v30/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/kreon/v30/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf\";i:500;s:83:\"http://fonts.gstatic.com/s/kreon/v30/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf\";i:600;s:83:\"http://fonts.gstatic.com/s/kreon/v30/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf\";i:700;s:83:\"http://fonts.gstatic.com/s/kreon/v30/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:571;a:8:{s:6:\"family\";s:6:\"Kristi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/kristi/v15/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:572;a:8:{s:6:\"family\";s:9:\"Krona One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/kronaone/v12/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:573;a:8:{s:6:\"family\";s:4:\"Krub\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:12:{i:200;s:66:\"http://fonts.gstatic.com/s/krub/v7/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf\";s:9:\"200italic\";s:69:\"http://fonts.gstatic.com/s/krub/v7/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf\";i:300;s:66:\"http://fonts.gstatic.com/s/krub/v7/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf\";s:9:\"300italic\";s:69:\"http://fonts.gstatic.com/s/krub/v7/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf\";s:7:\"regular\";s:62:\"http://fonts.gstatic.com/s/krub/v7/sZlLdRyC6CRYXkYQDLlTW6E.ttf\";s:6:\"italic\";s:65:\"http://fonts.gstatic.com/s/krub/v7/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf\";i:500;s:66:\"http://fonts.gstatic.com/s/krub/v7/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf\";s:9:\"500italic\";s:69:\"http://fonts.gstatic.com/s/krub/v7/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf\";i:600;s:66:\"http://fonts.gstatic.com/s/krub/v7/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf\";s:9:\"600italic\";s:69:\"http://fonts.gstatic.com/s/krub/v7/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf\";i:700;s:66:\"http://fonts.gstatic.com/s/krub/v7/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf\";s:9:\"700italic\";s:69:\"http://fonts.gstatic.com/s/krub/v7/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:574;a:8:{s:6:\"family\";s:5:\"Kufam\";s:8:\"variants\";a:12:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:6:\"italic\";i:7;s:9:\"500italic\";i:8;s:9:\"600italic\";i:9;s:9:\"700italic\";i:10;s:9:\"800italic\";i:11;s:9:\"900italic\";}s:7:\"subsets\";a:4:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:12:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/kufam/v17/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf\";i:500;s:83:\"http://fonts.gstatic.com/s/kufam/v17/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf\";i:600;s:83:\"http://fonts.gstatic.com/s/kufam/v17/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf\";i:700;s:83:\"http://fonts.gstatic.com/s/kufam/v17/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf\";i:800;s:83:\"http://fonts.gstatic.com/s/kufam/v17/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf\";i:900;s:83:\"http://fonts.gstatic.com/s/kufam/v17/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf\";s:6:\"italic\";s:85:\"http://fonts.gstatic.com/s/kufam/v17/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf\";s:9:\"500italic\";s:85:\"http://fonts.gstatic.com/s/kufam/v17/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf\";s:9:\"600italic\";s:85:\"http://fonts.gstatic.com/s/kufam/v17/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf\";s:9:\"700italic\";s:85:\"http://fonts.gstatic.com/s/kufam/v17/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf\";s:9:\"800italic\";s:85:\"http://fonts.gstatic.com/s/kufam/v17/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf\";s:9:\"900italic\";s:85:\"http://fonts.gstatic.com/s/kufam/v17/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:575;a:8:{s:6:\"family\";s:10:\"Kulim Park\";s:8:\"variants\";a:10:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:10:{i:200;s:80:\"http://fonts.gstatic.com/s/kulimpark/v12/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf\";s:9:\"200italic\";s:83:\"http://fonts.gstatic.com/s/kulimpark/v12/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf\";i:300;s:80:\"http://fonts.gstatic.com/s/kulimpark/v12/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf\";s:9:\"300italic\";s:83:\"http://fonts.gstatic.com/s/kulimpark/v12/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf\";s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/kulimpark/v12/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf\";s:6:\"italic\";s:79:\"http://fonts.gstatic.com/s/kulimpark/v12/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf\";i:600;s:80:\"http://fonts.gstatic.com/s/kulimpark/v12/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf\";s:9:\"600italic\";s:83:\"http://fonts.gstatic.com/s/kulimpark/v12/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/kulimpark/v12/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf\";s:9:\"700italic\";s:83:\"http://fonts.gstatic.com/s/kulimpark/v12/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:576;a:8:{s:6:\"family\";s:9:\"Kumar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"gujarati\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/kumarone/v15/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:577;a:8:{s:6:\"family\";s:17:\"Kumar One Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"gujarati\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/kumaroneoutline/v16/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:578;a:8:{s:6:\"family\";s:10:\"Kumbh Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:93:\"http://fonts.gstatic.com/s/kumbhsans/v10/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNorqSyNIXIwSP0XD.ttf\";i:200;s:93:\"http://fonts.gstatic.com/s/kumbhsans/v10/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNopqSiNIXIwSP0XD.ttf\";i:300;s:93:\"http://fonts.gstatic.com/s/kumbhsans/v10/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNoq0SiNIXIwSP0XD.ttf\";s:7:\"regular\";s:93:\"http://fonts.gstatic.com/s/kumbhsans/v10/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNorqSiNIXIwSP0XD.ttf\";i:500;s:93:\"http://fonts.gstatic.com/s/kumbhsans/v10/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNorYSiNIXIwSP0XD.ttf\";i:600;s:93:\"http://fonts.gstatic.com/s/kumbhsans/v10/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNoo0TSNIXIwSP0XD.ttf\";i:700;s:93:\"http://fonts.gstatic.com/s/kumbhsans/v10/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNooNTSNIXIwSP0XD.ttf\";i:800;s:93:\"http://fonts.gstatic.com/s/kumbhsans/v10/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNopqTSNIXIwSP0XD.ttf\";i:900;s:93:\"http://fonts.gstatic.com/s/kumbhsans/v10/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNopDTSNIXIwSP0XD.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:579;a:8:{s:6:\"family\";s:6:\"Kurale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:10:\"devanagari\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/kurale/v9/4iCs6KV9e9dXjho6eAT3v02QFg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:580;a:8:{s:6:\"family\";s:15:\"La Belle Aurore\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/labelleaurore/v14/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:581;a:8:{s:6:\"family\";s:7:\"Lacquer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/lacquer/v13/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:582;a:8:{s:6:\"family\";s:5:\"Laila\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:5:{i:300;s:69:\"http://fonts.gstatic.com/s/laila/v11/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf\";s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/laila/v11/LYjMdG_8nE8jDIRdiidIrEIu.ttf\";i:500;s:69:\"http://fonts.gstatic.com/s/laila/v11/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf\";i:600;s:69:\"http://fonts.gstatic.com/s/laila/v11/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/laila/v11/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:583;a:8:{s:6:\"family\";s:11:\"Lakki Reddy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/lakkireddy/v17/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:584;a:8:{s:6:\"family\";s:7:\"Lalezar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/lalezar/v12/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:585;a:8:{s:6:\"family\";s:8:\"Lancelot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/lancelot/v20/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:586;a:8:{s:6:\"family\";s:6:\"Langar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"gurmukhi\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/langar/v24/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:587;a:8:{s:6:\"family\";s:6:\"Lateef\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/lateef/v21/hESw6XVnNCxEvkbMpheEZo_H_w.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:588;a:8:{s:6:\"family\";s:4:\"Lato\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:10:{i:100;s:66:\"http://fonts.gstatic.com/s/lato/v22/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf\";s:9:\"100italic\";s:68:\"http://fonts.gstatic.com/s/lato/v22/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf\";i:300;s:67:\"http://fonts.gstatic.com/s/lato/v22/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf\";s:9:\"300italic\";s:70:\"http://fonts.gstatic.com/s/lato/v22/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf\";s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/lato/v22/S6uyw4BMUTPHvxk6XweuBCY.ttf\";s:6:\"italic\";s:66:\"http://fonts.gstatic.com/s/lato/v22/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/lato/v22/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf\";s:9:\"700italic\";s:70:\"http://fonts.gstatic.com/s/lato/v22/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf\";i:900;s:67:\"http://fonts.gstatic.com/s/lato/v22/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf\";s:9:\"900italic\";s:70:\"http://fonts.gstatic.com/s/lato/v22/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:589;a:8:{s:6:\"family\";s:13:\"League Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/leaguescript/v22/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:590;a:8:{s:6:\"family\";s:12:\"Leckerli One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/leckerlione/v14/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:591;a:8:{s:6:\"family\";s:6:\"Ledger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/ledger/v14/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:592;a:8:{s:6:\"family\";s:6:\"Lekton\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:3:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/lekton/v15/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/lekton/v15/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/lekton/v15/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:593;a:8:{s:6:\"family\";s:5:\"Lemon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/lemon/v12/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:594;a:8:{s:6:\"family\";s:8:\"Lemonada\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:90:\"http://fonts.gstatic.com/s/lemonada/v18/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf\";s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/lemonada/v18/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf\";i:500;s:90:\"http://fonts.gstatic.com/s/lemonada/v18/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf\";i:600;s:90:\"http://fonts.gstatic.com/s/lemonada/v18/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf\";i:700;s:90:\"http://fonts.gstatic.com/s/lemonada/v18/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:595;a:8:{s:6:\"family\";s:6:\"Lexend\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:85:\"http://fonts.gstatic.com/s/lexend/v14/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LBte6KuGEo.ttf\";i:200;s:85:\"http://fonts.gstatic.com/s/lexend/v14/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LBte6KuGEo.ttf\";i:300;s:85:\"http://fonts.gstatic.com/s/lexend/v14/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LBte6KuGEo.ttf\";s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/lexend/v14/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LBte6KuGEo.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/lexend/v14/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/lexend/v14/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LBte6KuGEo.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/lexend/v14/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LBte6KuGEo.ttf\";i:800;s:85:\"http://fonts.gstatic.com/s/lexend/v14/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf\";i:900;s:85:\"http://fonts.gstatic.com/s/lexend/v14/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LBte6KuGEo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:596;a:8:{s:6:\"family\";s:11:\"Lexend Deca\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:96:\"http://fonts.gstatic.com/s/lexenddeca/v15/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxArBPCqLNflg.ttf\";i:200;s:96:\"http://fonts.gstatic.com/s/lexenddeca/v15/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1ArBPCqLNflg.ttf\";i:300;s:96:\"http://fonts.gstatic.com/s/lexenddeca/v15/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1ArBPCqLNflg.ttf\";s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/lexenddeca/v15/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1ArBPCqLNflg.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/lexenddeca/v15/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1ArBPCqLNflg.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/lexenddeca/v15/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspArBPCqLNflg.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/lexenddeca/v15/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pArBPCqLNflg.ttf\";i:800;s:96:\"http://fonts.gstatic.com/s/lexenddeca/v15/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpArBPCqLNflg.ttf\";i:900;s:96:\"http://fonts.gstatic.com/s/lexenddeca/v15/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpArBPCqLNflg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:597;a:8:{s:6:\"family\";s:10:\"Lexend Exa\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:93:\"http://fonts.gstatic.com/s/lexendexa/v22/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf\";i:200;s:93:\"http://fonts.gstatic.com/s/lexendexa/v22/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf\";i:300;s:93:\"http://fonts.gstatic.com/s/lexendexa/v22/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf\";s:7:\"regular\";s:93:\"http://fonts.gstatic.com/s/lexendexa/v22/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf\";i:500;s:93:\"http://fonts.gstatic.com/s/lexendexa/v22/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf\";i:600;s:93:\"http://fonts.gstatic.com/s/lexendexa/v22/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf\";i:700;s:93:\"http://fonts.gstatic.com/s/lexendexa/v22/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf\";i:800;s:93:\"http://fonts.gstatic.com/s/lexendexa/v22/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf\";i:900;s:93:\"http://fonts.gstatic.com/s/lexendexa/v22/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:598;a:8:{s:6:\"family\";s:11:\"Lexend Giga\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:96:\"http://fonts.gstatic.com/s/lexendgiga/v22/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE68oo6eepYQ.ttf\";i:200;s:96:\"http://fonts.gstatic.com/s/lexendgiga/v22/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE68oo6eepYQ.ttf\";i:300;s:96:\"http://fonts.gstatic.com/s/lexendgiga/v22/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE68oo6eepYQ.ttf\";s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/lexendgiga/v22/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE68oo6eepYQ.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/lexendgiga/v22/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE68oo6eepYQ.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/lexendgiga/v22/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E68oo6eepYQ.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/lexendgiga/v22/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E68oo6eepYQ.ttf\";i:800;s:96:\"http://fonts.gstatic.com/s/lexendgiga/v22/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E68oo6eepYQ.ttf\";i:900;s:96:\"http://fonts.gstatic.com/s/lexendgiga/v22/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E68oo6eepYQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:599;a:8:{s:6:\"family\";s:11:\"Lexend Mega\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:96:\"http://fonts.gstatic.com/s/lexendmega/v22/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivveyiq9EqQw.ttf\";i:200;s:96:\"http://fonts.gstatic.com/s/lexendmega/v22/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvveyiq9EqQw.ttf\";i:300;s:96:\"http://fonts.gstatic.com/s/lexendmega/v22/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvveyiq9EqQw.ttf\";s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/lexendmega/v22/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvveyiq9EqQw.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/lexendmega/v22/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvveyiq9EqQw.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/lexendmega/v22/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vveyiq9EqQw.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/lexendmega/v22/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vveyiq9EqQw.ttf\";i:800;s:96:\"http://fonts.gstatic.com/s/lexendmega/v22/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf\";i:900;s:96:\"http://fonts.gstatic.com/s/lexendmega/v22/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vveyiq9EqQw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:600;a:8:{s:6:\"family\";s:11:\"Lexend Peta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:96:\"http://fonts.gstatic.com/s/lexendpeta/v22/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyW1YuRTsnfw.ttf\";i:200;s:96:\"http://fonts.gstatic.com/s/lexendpeta/v22/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByW1YuRTsnfw.ttf\";i:300;s:96:\"http://fonts.gstatic.com/s/lexendpeta/v22/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByW1YuRTsnfw.ttf\";s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/lexendpeta/v22/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByW1YuRTsnfw.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/lexendpeta/v22/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByW1YuRTsnfw.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/lexendpeta/v22/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyW1YuRTsnfw.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/lexendpeta/v22/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyW1YuRTsnfw.ttf\";i:800;s:96:\"http://fonts.gstatic.com/s/lexendpeta/v22/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyW1YuRTsnfw.ttf\";i:900;s:96:\"http://fonts.gstatic.com/s/lexendpeta/v22/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyW1YuRTsnfw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:601;a:8:{s:6:\"family\";s:11:\"Lexend Tera\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:96:\"http://fonts.gstatic.com/s/lexendtera/v22/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITdpz0fYxcrQ.ttf\";i:200;s:96:\"http://fonts.gstatic.com/s/lexendtera/v22/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTdpz0fYxcrQ.ttf\";i:300;s:96:\"http://fonts.gstatic.com/s/lexendtera/v22/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTdpz0fYxcrQ.ttf\";s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/lexendtera/v22/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTdpz0fYxcrQ.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/lexendtera/v22/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTdpz0fYxcrQ.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/lexendtera/v22/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTdpz0fYxcrQ.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/lexendtera/v22/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTdpz0fYxcrQ.ttf\";i:800;s:96:\"http://fonts.gstatic.com/s/lexendtera/v22/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTdpz0fYxcrQ.ttf\";i:900;s:96:\"http://fonts.gstatic.com/s/lexendtera/v22/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTdpz0fYxcrQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:602;a:8:{s:6:\"family\";s:12:\"Lexend Zetta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:98:\"http://fonts.gstatic.com/s/lexendzetta/v22/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0z5jbs8qbts.ttf\";i:200;s:98:\"http://fonts.gstatic.com/s/lexendzetta/v22/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0z5jbs8qbts.ttf\";i:300;s:98:\"http://fonts.gstatic.com/s/lexendzetta/v22/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf\";s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/lexendzetta/v22/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0z5jbs8qbts.ttf\";i:500;s:98:\"http://fonts.gstatic.com/s/lexendzetta/v22/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0z5jbs8qbts.ttf\";i:600;s:98:\"http://fonts.gstatic.com/s/lexendzetta/v22/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0z5jbs8qbts.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/lexendzetta/v22/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0z5jbs8qbts.ttf\";i:800;s:98:\"http://fonts.gstatic.com/s/lexendzetta/v22/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf\";i:900;s:98:\"http://fonts.gstatic.com/s/lexendzetta/v22/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0z5jbs8qbts.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:603;a:8:{s:6:\"family\";s:17:\"Libre Barcode 128\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/librebarcode128/v24/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:604;a:8:{s:6:\"family\";s:22:\"Libre Barcode 128 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:102:\"http://fonts.gstatic.com/s/librebarcode128text/v24/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:605;a:8:{s:6:\"family\";s:16:\"Libre Barcode 39\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/librebarcode39/v17/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:606;a:8:{s:6:\"family\";s:25:\"Libre Barcode 39 Extended\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:109:\"http://fonts.gstatic.com/s/librebarcode39extended/v23/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:607;a:8:{s:6:\"family\";s:30:\"Libre Barcode 39 Extended Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:120:\"http://fonts.gstatic.com/s/librebarcode39extendedtext/v23/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:608;a:8:{s:6:\"family\";s:21:\"Libre Barcode 39 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/librebarcode39text/v24/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:609;a:8:{s:6:\"family\";s:24:\"Libre Barcode EAN13 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:107:\"http://fonts.gstatic.com/s/librebarcodeean13text/v17/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:610;a:8:{s:6:\"family\";s:17:\"Libre Baskerville\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:3:{s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/librebaskerville/v13/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf\";s:6:\"italic\";s:95:\"http://fonts.gstatic.com/s/librebaskerville/v13/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/librebaskerville/v13/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:611;a:8:{s:6:\"family\";s:20:\"Libre Caslon Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/librecaslondisplay/v12/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:612;a:8:{s:6:\"family\";s:17:\"Libre Caslon Text\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v2\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:3:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/librecaslontext/v2/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf\";s:6:\"italic\";s:93:\"http://fonts.gstatic.com/s/librecaslontext/v2/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf\";i:700;s:94:\"http://fonts.gstatic.com/s/librecaslontext/v2/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:613;a:8:{s:6:\"family\";s:14:\"Libre Franklin\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:103:\"http://fonts.gstatic.com/s/librefranklin/v11/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf\";i:200;s:103:\"http://fonts.gstatic.com/s/librefranklin/v11/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf\";i:300;s:103:\"http://fonts.gstatic.com/s/librefranklin/v11/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf\";s:7:\"regular\";s:103:\"http://fonts.gstatic.com/s/librefranklin/v11/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf\";i:500;s:103:\"http://fonts.gstatic.com/s/librefranklin/v11/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf\";i:600;s:103:\"http://fonts.gstatic.com/s/librefranklin/v11/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf\";i:700;s:103:\"http://fonts.gstatic.com/s/librefranklin/v11/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf\";i:800;s:103:\"http://fonts.gstatic.com/s/librefranklin/v11/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf\";i:900;s:103:\"http://fonts.gstatic.com/s/librefranklin/v11/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf\";s:9:\"100italic\";s:105:\"http://fonts.gstatic.com/s/librefranklin/v11/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf\";s:9:\"200italic\";s:105:\"http://fonts.gstatic.com/s/librefranklin/v11/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf\";s:9:\"300italic\";s:105:\"http://fonts.gstatic.com/s/librefranklin/v11/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf\";s:6:\"italic\";s:105:\"http://fonts.gstatic.com/s/librefranklin/v11/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf\";s:9:\"500italic\";s:105:\"http://fonts.gstatic.com/s/librefranklin/v11/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf\";s:9:\"600italic\";s:105:\"http://fonts.gstatic.com/s/librefranklin/v11/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf\";s:9:\"700italic\";s:105:\"http://fonts.gstatic.com/s/librefranklin/v11/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf\";s:9:\"800italic\";s:105:\"http://fonts.gstatic.com/s/librefranklin/v11/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf\";s:9:\"900italic\";s:105:\"http://fonts.gstatic.com/s/librefranklin/v11/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:614;a:8:{s:6:\"family\";s:8:\"Licorice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/licorice/v1/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:615;a:8:{s:6:\"family\";s:11:\"Life Savers\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"700\";i:2;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:3:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/lifesavers/v16/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/lifesavers/v16/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf\";i:800;s:82:\"http://fonts.gstatic.com/s/lifesavers/v16/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:616;a:8:{s:6:\"family\";s:10:\"Lilita One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/lilitaone/v11/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:617;a:8:{s:6:\"family\";s:15:\"Lily Script One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/lilyscriptone/v13/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:618;a:8:{s:6:\"family\";s:9:\"Limelight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/limelight/v14/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:619;a:8:{s:6:\"family\";s:11:\"Linden Hill\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:2:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/lindenhill/v20/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf\";s:6:\"italic\";s:81:\"http://fonts.gstatic.com/s/lindenhill/v20/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:620;a:8:{s:6:\"family\";s:8:\"Literata\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:9:\"200italic\";i:9;s:9:\"300italic\";i:10;s:6:\"italic\";i:11;s:9:\"500italic\";i:12;s:9:\"600italic\";i:13;s:9:\"700italic\";i:14;s:9:\"800italic\";i:15;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2021-03-11\";s:5:\"files\";a:16:{i:200;s:107:\"http://fonts.gstatic.com/s/literata/v23/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf\";i:300;s:107:\"http://fonts.gstatic.com/s/literata/v23/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf\";s:7:\"regular\";s:107:\"http://fonts.gstatic.com/s/literata/v23/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf\";i:500;s:107:\"http://fonts.gstatic.com/s/literata/v23/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf\";i:600;s:107:\"http://fonts.gstatic.com/s/literata/v23/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf\";i:700;s:107:\"http://fonts.gstatic.com/s/literata/v23/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf\";i:800;s:107:\"http://fonts.gstatic.com/s/literata/v23/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf\";i:900;s:107:\"http://fonts.gstatic.com/s/literata/v23/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf\";s:9:\"200italic\";s:110:\"http://fonts.gstatic.com/s/literata/v23/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf\";s:9:\"300italic\";s:110:\"http://fonts.gstatic.com/s/literata/v23/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf\";s:6:\"italic\";s:110:\"http://fonts.gstatic.com/s/literata/v23/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf\";s:9:\"500italic\";s:110:\"http://fonts.gstatic.com/s/literata/v23/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf\";s:9:\"600italic\";s:110:\"http://fonts.gstatic.com/s/literata/v23/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf\";s:9:\"700italic\";s:110:\"http://fonts.gstatic.com/s/literata/v23/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf\";s:9:\"800italic\";s:110:\"http://fonts.gstatic.com/s/literata/v23/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf\";s:9:\"900italic\";s:110:\"http://fonts.gstatic.com/s/literata/v23/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:621;a:8:{s:6:\"family\";s:16:\"Liu Jian Mao Cao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:18:\"chinese-simplified\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-11-10\";s:5:\"files\";a:1:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/liujianmaocao/v13/~ChIKEExpdSBKaWFuIE1hbyBDYW8gACoECAEYAQ==.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:622;a:8:{s:6:\"family\";s:6:\"Livvic\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:16:{i:100;s:70:\"http://fonts.gstatic.com/s/livvic/v11/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf\";s:9:\"100italic\";s:73:\"http://fonts.gstatic.com/s/livvic/v11/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf\";i:200;s:72:\"http://fonts.gstatic.com/s/livvic/v11/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf\";s:9:\"200italic\";s:74:\"http://fonts.gstatic.com/s/livvic/v11/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf\";i:300;s:72:\"http://fonts.gstatic.com/s/livvic/v11/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf\";s:9:\"300italic\";s:74:\"http://fonts.gstatic.com/s/livvic/v11/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf\";s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/livvic/v11/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/livvic/v11/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf\";i:500;s:72:\"http://fonts.gstatic.com/s/livvic/v11/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf\";s:9:\"500italic\";s:74:\"http://fonts.gstatic.com/s/livvic/v11/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf\";i:600;s:72:\"http://fonts.gstatic.com/s/livvic/v11/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf\";s:9:\"600italic\";s:74:\"http://fonts.gstatic.com/s/livvic/v11/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/livvic/v11/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf\";s:9:\"700italic\";s:74:\"http://fonts.gstatic.com/s/livvic/v11/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf\";i:900;s:72:\"http://fonts.gstatic.com/s/livvic/v11/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf\";s:9:\"900italic\";s:74:\"http://fonts.gstatic.com/s/livvic/v11/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:623;a:8:{s:6:\"family\";s:7:\"Lobster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v27\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/lobster/v27/neILzCirqoswsqX9_oWsMqEzSJQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:624;a:8:{s:6:\"family\";s:11:\"Lobster Two\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/lobstertwo/v17/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf\";s:6:\"italic\";s:81:\"http://fonts.gstatic.com/s/lobstertwo/v17/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/lobstertwo/v17/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf\";s:9:\"700italic\";s:85:\"http://fonts.gstatic.com/s/lobstertwo/v17/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:625;a:8:{s:6:\"family\";s:16:\"Londrina Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/londrinaoutline/v21/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:626;a:8:{s:6:\"family\";s:15:\"Londrina Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/londrinashadow/v20/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:627;a:8:{s:6:\"family\";s:15:\"Londrina Sketch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/londrinasketch/v19/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:628;a:8:{s:6:\"family\";s:14:\"Londrina Solid\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:4:{i:100;s:88:\"http://fonts.gstatic.com/s/londrinasolid/v13/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf\";i:300;s:89:\"http://fonts.gstatic.com/s/londrinasolid/v13/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf\";s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/londrinasolid/v13/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf\";i:900;s:89:\"http://fonts.gstatic.com/s/londrinasolid/v13/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:629;a:8:{s:6:\"family\";s:9:\"Long Cang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:18:\"chinese-simplified\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/longcang/v15/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:630;a:8:{s:6:\"family\";s:4:\"Lora\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:6:\"italic\";i:5;s:9:\"500italic\";i:6;s:9:\"600italic\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:8:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/lora/v23/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf\";i:500;s:80:\"http://fonts.gstatic.com/s/lora/v23/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf\";i:600;s:80:\"http://fonts.gstatic.com/s/lora/v23/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/lora/v23/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf\";s:6:\"italic\";s:83:\"http://fonts.gstatic.com/s/lora/v23/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf\";s:9:\"500italic\";s:83:\"http://fonts.gstatic.com/s/lora/v23/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf\";s:9:\"600italic\";s:83:\"http://fonts.gstatic.com/s/lora/v23/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf\";s:9:\"700italic\";s:83:\"http://fonts.gstatic.com/s/lora/v23/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:631;a:8:{s:6:\"family\";s:10:\"Love Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/lovelight/v1/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:632;a:8:{s:6:\"family\";s:21:\"Love Ya Like A Sister\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:99:\"http://fonts.gstatic.com/s/loveyalikeasister/v14/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:633;a:8:{s:6:\"family\";s:17:\"Loved by the King\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/lovedbytheking/v15/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:634;a:8:{s:6:\"family\";s:14:\"Lovers Quarrel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/loversquarrel/v19/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:635;a:8:{s:6:\"family\";s:12:\"Luckiest Guy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/luckiestguy/v17/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:636;a:8:{s:6:\"family\";s:8:\"Lusitana\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/lusitana/v11/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/lusitana/v11/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:637;a:8:{s:6:\"family\";s:7:\"Lustria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/lustria/v11/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:638;a:8:{s:6:\"family\";s:15:\"Luxurious Roman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/luxuriousroman/v1/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:639;a:8:{s:6:\"family\";s:16:\"Luxurious Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/luxuriousscript/v3/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:640;a:8:{s:6:\"family\";s:8:\"M PLUS 1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:4:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v4\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:87:\"http://fonts.gstatic.com/s/mplus1/v4/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe78nZcsGGycA.ttf\";i:200;s:87:\"http://fonts.gstatic.com/s/mplus1/v4/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa78nZcsGGycA.ttf\";i:300;s:87:\"http://fonts.gstatic.com/s/mplus1/v4/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya78nZcsGGycA.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/mplus1/v4/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa78nZcsGGycA.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/mplus1/v4/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya78nZcsGGycA.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/mplus1/v4/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG78nZcsGGycA.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/mplus1/v4/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG78nZcsGGycA.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/mplus1/v4/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG78nZcsGGycA.ttf\";i:900;s:87:\"http://fonts.gstatic.com/s/mplus1/v4/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG78nZcsGGycA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:641;a:8:{s:6:\"family\";s:13:\"M PLUS 1 Code\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:7:{i:100;s:97:\"http://fonts.gstatic.com/s/mplus1code/v5/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHpapwmdZhY.ttf\";i:200;s:97:\"http://fonts.gstatic.com/s/mplus1code/v5/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHpapwmdZhY.ttf\";i:300;s:97:\"http://fonts.gstatic.com/s/mplus1code/v5/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHpapwmdZhY.ttf\";s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/mplus1code/v5/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHpapwmdZhY.ttf\";i:500;s:97:\"http://fonts.gstatic.com/s/mplus1code/v5/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHpapwmdZhY.ttf\";i:600;s:97:\"http://fonts.gstatic.com/s/mplus1code/v5/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HpapwmdZhY.ttf\";i:700;s:97:\"http://fonts.gstatic.com/s/mplus1code/v5/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HpapwmdZhY.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:642;a:8:{s:6:\"family\";s:9:\"M PLUS 1p\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";}s:7:\"subsets\";a:9:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:8:\"japanese\";i:6;s:5:\"latin\";i:7;s:9:\"latin-ext\";i:8;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:7:{i:100;s:75:\"http://fonts.gstatic.com/s/mplus1p/v22/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf\";i:300;s:77:\"http://fonts.gstatic.com/s/mplus1p/v22/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf\";s:7:\"regular\";s:73:\"http://fonts.gstatic.com/s/mplus1p/v22/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf\";i:500;s:77:\"http://fonts.gstatic.com/s/mplus1p/v22/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf\";i:700;s:77:\"http://fonts.gstatic.com/s/mplus1p/v22/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf\";i:800;s:77:\"http://fonts.gstatic.com/s/mplus1p/v22/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf\";i:900;s:77:\"http://fonts.gstatic.com/s/mplus1p/v22/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:643;a:8:{s:6:\"family\";s:8:\"M PLUS 2\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:4:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v4\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:87:\"http://fonts.gstatic.com/s/mplus2/v4/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-VxlqHrzNgAw.ttf\";i:200;s:87:\"http://fonts.gstatic.com/s/mplus2/v4/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6VxlqHrzNgAw.ttf\";i:300;s:87:\"http://fonts.gstatic.com/s/mplus2/v4/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66VxlqHrzNgAw.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/mplus2/v4/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6VxlqHrzNgAw.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/mplus2/v4/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66VxlqHrzNgAw.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/mplus2/v4/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVxlqHrzNgAw.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/mplus2/v4/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVxlqHrzNgAw.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/mplus2/v4/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVxlqHrzNgAw.ttf\";i:900;s:87:\"http://fonts.gstatic.com/s/mplus2/v4/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVxlqHrzNgAw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:644;a:8:{s:6:\"family\";s:17:\"M PLUS Code Latin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:7:{i:100;s:124:\"http://fonts.gstatic.com/s/mpluscodelatin/v3/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6i5MqF9TRwg.ttf\";i:200;s:124:\"http://fonts.gstatic.com/s/mpluscodelatin/v3/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6i5MqF9TRwg.ttf\";i:300;s:124:\"http://fonts.gstatic.com/s/mpluscodelatin/v3/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6i5MqF9TRwg.ttf\";s:7:\"regular\";s:124:\"http://fonts.gstatic.com/s/mpluscodelatin/v3/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6i5MqF9TRwg.ttf\";i:500;s:124:\"http://fonts.gstatic.com/s/mpluscodelatin/v3/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6i5MqF9TRwg.ttf\";i:600;s:124:\"http://fonts.gstatic.com/s/mpluscodelatin/v3/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6i5MqF9TRwg.ttf\";i:700;s:124:\"http://fonts.gstatic.com/s/mpluscodelatin/v3/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6i5MqF9TRwg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:645;a:8:{s:6:\"family\";s:17:\"M PLUS Rounded 1c\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";}s:7:\"subsets\";a:9:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:8:\"japanese\";i:6;s:5:\"latin\";i:7;s:9:\"latin-ext\";i:8;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:7:{i:100;s:93:\"http://fonts.gstatic.com/s/mplusrounded1c/v13/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf\";i:300;s:94:\"http://fonts.gstatic.com/s/mplusrounded1c/v13/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf\";s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/mplusrounded1c/v13/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf\";i:500;s:94:\"http://fonts.gstatic.com/s/mplusrounded1c/v13/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf\";i:700;s:94:\"http://fonts.gstatic.com/s/mplusrounded1c/v13/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf\";i:800;s:94:\"http://fonts.gstatic.com/s/mplusrounded1c/v13/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf\";i:900;s:94:\"http://fonts.gstatic.com/s/mplusrounded1c/v13/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:646;a:8:{s:6:\"family\";s:13:\"Ma Shan Zheng\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:18:\"chinese-simplified\";i:1;s:5:\"latin\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/mashanzheng/v8/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:647;a:8:{s:6:\"family\";s:7:\"Macondo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/macondo/v19/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:648;a:8:{s:6:\"family\";s:18:\"Macondo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/macondoswashcaps/v18/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:649;a:8:{s:6:\"family\";s:4:\"Mada\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:7:{i:200;s:67:\"http://fonts.gstatic.com/s/mada/v14/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf\";i:300;s:67:\"http://fonts.gstatic.com/s/mada/v14/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf\";s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/mada/v14/7Auwp_0qnzeSTTXMLCrX0kU.ttf\";i:500;s:67:\"http://fonts.gstatic.com/s/mada/v14/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf\";i:600;s:67:\"http://fonts.gstatic.com/s/mada/v14/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/mada/v14/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf\";i:900;s:67:\"http://fonts.gstatic.com/s/mada/v14/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:650;a:8:{s:6:\"family\";s:5:\"Magra\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/magra/v12/uK_94ruaZus72k5xIDMfO-ed.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/magra/v12/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:651;a:8:{s:6:\"family\";s:13:\"Maiden Orange\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/maidenorange/v23/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:652;a:8:{s:6:\"family\";s:7:\"Maitree\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:6:{i:200;s:73:\"http://fonts.gstatic.com/s/maitree/v8/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf\";i:300;s:73:\"http://fonts.gstatic.com/s/maitree/v8/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf\";s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/maitree/v8/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf\";i:500;s:73:\"http://fonts.gstatic.com/s/maitree/v8/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf\";i:600;s:73:\"http://fonts.gstatic.com/s/maitree/v8/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf\";i:700;s:73:\"http://fonts.gstatic.com/s/maitree/v8/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:653;a:8:{s:6:\"family\";s:18:\"Major Mono Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/majormonodisplay/v10/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:654;a:8:{s:6:\"family\";s:4:\"Mako\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/mako/v14/H4coBX6Mmc_Z0ST09g478Lo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:655;a:8:{s:6:\"family\";s:4:\"Mali\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:12:{i:200;s:66:\"http://fonts.gstatic.com/s/mali/v7/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf\";s:9:\"200italic\";s:69:\"http://fonts.gstatic.com/s/mali/v7/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf\";i:300;s:66:\"http://fonts.gstatic.com/s/mali/v7/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf\";s:9:\"300italic\";s:69:\"http://fonts.gstatic.com/s/mali/v7/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf\";s:7:\"regular\";s:62:\"http://fonts.gstatic.com/s/mali/v7/N0ba2SRONuN4eCrODlxxOd8.ttf\";s:6:\"italic\";s:65:\"http://fonts.gstatic.com/s/mali/v7/N0bU2SRONuN4SCjECn50Kd_PmA.ttf\";i:500;s:66:\"http://fonts.gstatic.com/s/mali/v7/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf\";s:9:\"500italic\";s:69:\"http://fonts.gstatic.com/s/mali/v7/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf\";i:600;s:66:\"http://fonts.gstatic.com/s/mali/v7/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf\";s:9:\"600italic\";s:69:\"http://fonts.gstatic.com/s/mali/v7/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf\";i:700;s:66:\"http://fonts.gstatic.com/s/mali/v7/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf\";s:9:\"700italic\";s:69:\"http://fonts.gstatic.com/s/mali/v7/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:656;a:8:{s:6:\"family\";s:8:\"Mallanna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/mallanna/v11/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:657;a:8:{s:6:\"family\";s:7:\"Mandali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/mandali/v12/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:658;a:8:{s:6:\"family\";s:7:\"Manjari\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:7:\"regular\";i:2;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:9:\"malayalam\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:3:{i:100;s:72:\"http://fonts.gstatic.com/s/manjari/v7/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf\";s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/manjari/v7/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf\";i:700;s:73:\"http://fonts.gstatic.com/s/manjari/v7/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:659;a:8:{s:6:\"family\";s:7:\"Manrope\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:7:{i:200;s:87:\"http://fonts.gstatic.com/s/manrope/v11/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf\";i:300;s:87:\"http://fonts.gstatic.com/s/manrope/v11/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/manrope/v11/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/manrope/v11/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/manrope/v11/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/manrope/v11/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/manrope/v11/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:660;a:8:{s:6:\"family\";s:8:\"Mansalva\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/mansalva/v7/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:661;a:8:{s:6:\"family\";s:7:\"Manuale\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:9:\"300italic\";i:7;s:6:\"italic\";i:8;s:9:\"500italic\";i:9;s:9:\"600italic\";i:10;s:9:\"700italic\";i:11;s:9:\"800italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:12:{i:300;s:87:\"http://fonts.gstatic.com/s/manuale/v21/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wD1TB_JHHY.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/manuale/v21/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/manuale/v21/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/manuale/v21/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/manuale/v21/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/manuale/v21/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwD1TB_JHHY.ttf\";s:9:\"300italic\";s:90:\"http://fonts.gstatic.com/s/manuale/v21/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zRdIWHYr8M.ttf\";s:6:\"italic\";s:90:\"http://fonts.gstatic.com/s/manuale/v21/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf\";s:9:\"500italic\";s:90:\"http://fonts.gstatic.com/s/manuale/v21/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf\";s:9:\"600italic\";s:90:\"http://fonts.gstatic.com/s/manuale/v21/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf\";s:9:\"700italic\";s:90:\"http://fonts.gstatic.com/s/manuale/v21/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf\";s:9:\"800italic\";s:90:\"http://fonts.gstatic.com/s/manuale/v21/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zRdIWHYr8M.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:662;a:8:{s:6:\"family\";s:9:\"Marcellus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/marcellus/v11/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:663;a:8:{s:6:\"family\";s:12:\"Marcellus SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/marcellussc/v11/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:664;a:8:{s:6:\"family\";s:12:\"Marck Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/marckscript/v14/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:665;a:8:{s:6:\"family\";s:9:\"Margarine\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/margarine/v19/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:666;a:8:{s:6:\"family\";s:12:\"Markazi Text\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/markazitext/v20/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf\";i:500;s:98:\"http://fonts.gstatic.com/s/markazitext/v20/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf\";i:600;s:98:\"http://fonts.gstatic.com/s/markazitext/v20/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/markazitext/v20/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:667;a:8:{s:6:\"family\";s:9:\"Marko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/markoone/v20/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:668;a:8:{s:6:\"family\";s:8:\"Marmelad\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/marmelad/v13/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:669;a:8:{s:6:\"family\";s:6:\"Martel\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:7:{i:200;s:71:\"http://fonts.gstatic.com/s/martel/v9/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf\";i:300;s:71:\"http://fonts.gstatic.com/s/martel/v9/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf\";s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/martel/v9/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf\";i:600;s:71:\"http://fonts.gstatic.com/s/martel/v9/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf\";i:700;s:71:\"http://fonts.gstatic.com/s/martel/v9/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf\";i:800;s:71:\"http://fonts.gstatic.com/s/martel/v9/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf\";i:900;s:71:\"http://fonts.gstatic.com/s/martel/v9/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:670;a:8:{s:6:\"family\";s:11:\"Martel Sans\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:7:{i:200;s:82:\"http://fonts.gstatic.com/s/martelsans/v10/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf\";i:300;s:82:\"http://fonts.gstatic.com/s/martelsans/v10/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf\";s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/martelsans/v10/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf\";i:600;s:82:\"http://fonts.gstatic.com/s/martelsans/v10/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/martelsans/v10/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf\";i:800;s:82:\"http://fonts.gstatic.com/s/martelsans/v10/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf\";i:900;s:82:\"http://fonts.gstatic.com/s/martelsans/v10/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:671;a:8:{s:6:\"family\";s:6:\"Marvel\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:4:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/marvel/v10/nwpVtKeoNgBV0qaIkV7ED366zg.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/marvel/v10/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/marvel/v10/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf\";s:9:\"700italic\";s:74:\"http://fonts.gstatic.com/s/marvel/v10/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:672;a:8:{s:6:\"family\";s:4:\"Mate\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/mate/v12/m8JdjftRd7WZ2z28WoXSaLU.ttf\";s:6:\"italic\";s:66:\"http://fonts.gstatic.com/s/mate/v12/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:673;a:8:{s:6:\"family\";s:7:\"Mate SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/matesc/v19/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:674;a:8:{s:6:\"family\";s:9:\"Maven Pro\";s:8:\"variants\";a:6:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v28\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:6:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/mavenpro/v28/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf\";i:500;s:91:\"http://fonts.gstatic.com/s/mavenpro/v28/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf\";i:600;s:91:\"http://fonts.gstatic.com/s/mavenpro/v28/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf\";i:700;s:91:\"http://fonts.gstatic.com/s/mavenpro/v28/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf\";i:800;s:91:\"http://fonts.gstatic.com/s/mavenpro/v28/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf\";i:900;s:91:\"http://fonts.gstatic.com/s/mavenpro/v28/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:675;a:8:{s:6:\"family\";s:7:\"McLaren\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/mclaren/v11/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:676;a:8:{s:6:\"family\";s:9:\"Mea Culpa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:73:\"http://fonts.gstatic.com/s/meaculpa/v1/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:677;a:8:{s:6:\"family\";s:6:\"Meddon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/meddon/v18/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:678;a:8:{s:6:\"family\";s:13:\"MedievalSharp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/medievalsharp/v22/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:679;a:8:{s:6:\"family\";s:10:\"Medula One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/medulaone/v17/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:680;a:8:{s:6:\"family\";s:12:\"Meera Inimai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:5:\"tamil\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/meerainimai/v10/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:681;a:8:{s:6:\"family\";s:6:\"Megrim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/megrim/v14/46kulbz5WjvLqJZlbWXgd0RY1g.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:682;a:8:{s:6:\"family\";s:11:\"Meie Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/meiescript/v19/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:683;a:8:{s:6:\"family\";s:11:\"Meow Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/meowscript/v3/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:684;a:8:{s:6:\"family\";s:8:\"Merienda\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/merienda/v12/gNMHW3x8Qoy5_mf8uVMCOou6_dvg.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/merienda/v12/gNMAW3x8Qoy5_mf8uWu-Fa-y1sfpPES4.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:685;a:8:{s:6:\"family\";s:12:\"Merienda One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/meriendaone/v14/H4cgBXaMndbflEq6kyZ1ht6YgoyyYzFzFw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:686;a:8:{s:6:\"family\";s:12:\"Merriweather\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v28\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:8:{i:300;s:86:\"http://fonts.gstatic.com/s/merriweather/v28/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf\";s:9:\"300italic\";s:88:\"http://fonts.gstatic.com/s/merriweather/v28/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf\";s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/merriweather/v28/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf\";s:6:\"italic\";s:84:\"http://fonts.gstatic.com/s/merriweather/v28/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf\";i:700;s:86:\"http://fonts.gstatic.com/s/merriweather/v28/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf\";s:9:\"700italic\";s:88:\"http://fonts.gstatic.com/s/merriweather/v28/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf\";i:900;s:86:\"http://fonts.gstatic.com/s/merriweather/v28/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf\";s:9:\"900italic\";s:88:\"http://fonts.gstatic.com/s/merriweather/v28/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:687;a:8:{s:6:\"family\";s:17:\"Merriweather Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:9:\"300italic\";i:7;s:6:\"italic\";i:8;s:9:\"500italic\";i:9;s:9:\"600italic\";i:10;s:9:\"700italic\";i:11;s:9:\"800italic\";}s:7:\"subsets\";a:4:{i:0;s:12:\"cyrillic-ext\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:12:{i:300;s:110:\"http://fonts.gstatic.com/s/merriweathersans/v20/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf\";s:7:\"regular\";s:110:\"http://fonts.gstatic.com/s/merriweathersans/v20/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf\";i:500;s:110:\"http://fonts.gstatic.com/s/merriweathersans/v20/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf\";i:600;s:110:\"http://fonts.gstatic.com/s/merriweathersans/v20/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf\";i:700;s:110:\"http://fonts.gstatic.com/s/merriweathersans/v20/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf\";i:800;s:110:\"http://fonts.gstatic.com/s/merriweathersans/v20/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf\";s:9:\"300italic\";s:112:\"http://fonts.gstatic.com/s/merriweathersans/v20/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf\";s:6:\"italic\";s:112:\"http://fonts.gstatic.com/s/merriweathersans/v20/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf\";s:9:\"500italic\";s:112:\"http://fonts.gstatic.com/s/merriweathersans/v20/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf\";s:9:\"600italic\";s:112:\"http://fonts.gstatic.com/s/merriweathersans/v20/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf\";s:9:\"700italic\";s:112:\"http://fonts.gstatic.com/s/merriweathersans/v20/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf\";s:9:\"800italic\";s:112:\"http://fonts.gstatic.com/s/merriweathersans/v20/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:688;a:8:{s:6:\"family\";s:5:\"Metal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v26\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/metal/v26/lW-wwjUJIXTo7i3nnoQAUdN2.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:689;a:8:{s:6:\"family\";s:11:\"Metal Mania\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/metalmania/v20/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:690;a:8:{s:6:\"family\";s:12:\"Metamorphous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/metamorphous/v16/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:691;a:8:{s:6:\"family\";s:11:\"Metrophobic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:79:\"http://fonts.gstatic.com/s/metrophobic/v17/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:692;a:8:{s:6:\"family\";s:8:\"Michroma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/michroma/v14/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:693;a:8:{s:6:\"family\";s:7:\"Milonga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/milonga/v18/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:694;a:8:{s:6:\"family\";s:9:\"Miltonian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/miltonian/v24/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:695;a:8:{s:6:\"family\";s:16:\"Miltonian Tattoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v26\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/miltoniantattoo/v26/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:696;a:8:{s:6:\"family\";s:4:\"Mina\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:7:\"bengali\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:62:\"http://fonts.gstatic.com/s/mina/v9/-nFzOGc18vARrz9j7i3y65o.ttf\";i:700;s:66:\"http://fonts.gstatic.com/s/mina/v9/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:697;a:8:{s:6:\"family\";s:7:\"Miniver\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/miniver/v19/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:698;a:8:{s:6:\"family\";s:12:\"Miriam Libre\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:6:\"hebrew\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/miriamlibre/v10/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/miriamlibre/v10/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:699;a:8:{s:6:\"family\";s:5:\"Mirza\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:4:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/mirza/v13/co3ImWlikiN5EurdKMewsrvI.ttf\";i:500;s:69:\"http://fonts.gstatic.com/s/mirza/v13/co3FmWlikiN5EtIpAeO4mafBomDi.ttf\";i:600;s:69:\"http://fonts.gstatic.com/s/mirza/v13/co3FmWlikiN5EtIFBuO4mafBomDi.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/mirza/v13/co3FmWlikiN5EtJhB-O4mafBomDi.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:700;a:8:{s:6:\"family\";s:14:\"Miss Fajardose\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/missfajardose/v20/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:701;a:8:{s:6:\"family\";s:4:\"Mitr\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:6:{i:200;s:66:\"http://fonts.gstatic.com/s/mitr/v9/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf\";i:300;s:66:\"http://fonts.gstatic.com/s/mitr/v9/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf\";s:7:\"regular\";s:62:\"http://fonts.gstatic.com/s/mitr/v9/pxiLypw5ucZFyTsyMJj_b1o.ttf\";i:500;s:66:\"http://fonts.gstatic.com/s/mitr/v9/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf\";i:600;s:66:\"http://fonts.gstatic.com/s/mitr/v9/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf\";i:700;s:66:\"http://fonts.gstatic.com/s/mitr/v9/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:702;a:8:{s:6:\"family\";s:14:\"Mochiy Pop One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/mochiypopone/v5/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:703;a:8:{s:6:\"family\";s:16:\"Mochiy Pop P One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/mochiypoppone/v5/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:704;a:8:{s:6:\"family\";s:5:\"Modak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/modak/v16/EJRYQgs1XtIEsnMH8BVZ76KU.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:705;a:8:{s:6:\"family\";s:14:\"Modern Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/modernantiqua/v20/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:706;a:8:{s:6:\"family\";s:5:\"Mogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"gujarati\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/mogra/v17/f0X40eSs8c95TBo4DvLmxtnG.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:707;a:8:{s:6:\"family\";s:6:\"Mohave\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:9:\"300italic\";i:6;s:6:\"italic\";i:7;s:9:\"500italic\";i:8;s:9:\"600italic\";i:9;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:10:{i:300;s:84:\"http://fonts.gstatic.com/s/mohave/v6/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvCQopLSvBk.ttf\";s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/mohave/v6/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvCQopLSvBk.ttf\";i:500;s:84:\"http://fonts.gstatic.com/s/mohave/v6/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvCQopLSvBk.ttf\";i:600;s:84:\"http://fonts.gstatic.com/s/mohave/v6/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvCQopLSvBk.ttf\";i:700;s:84:\"http://fonts.gstatic.com/s/mohave/v6/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvCQopLSvBk.ttf\";s:9:\"300italic\";s:87:\"http://fonts.gstatic.com/s/mohave/v6/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOaprDXrBlSVw.ttf\";s:6:\"italic\";s:87:\"http://fonts.gstatic.com/s/mohave/v6/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOaprDXrBlSVw.ttf\";s:9:\"500italic\";s:87:\"http://fonts.gstatic.com/s/mohave/v6/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOaprDXrBlSVw.ttf\";s:9:\"600italic\";s:87:\"http://fonts.gstatic.com/s/mohave/v6/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSaprDXrBlSVw.ttf\";s:9:\"700italic\";s:87:\"http://fonts.gstatic.com/s/mohave/v6/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSaprDXrBlSVw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:708;a:8:{s:6:\"family\";s:7:\"Molengo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/molengo/v14/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:709;a:8:{s:6:\"family\";s:5:\"Molle\";s:8:\"variants\";a:1:{i:0;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:6:\"italic\";s:68:\"http://fonts.gstatic.com/s/molle/v19/E21n_dL5hOXFhWEsXzgmVydREus.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:710;a:8:{s:6:\"family\";s:5:\"Monda\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/monda/v14/TK3tWkYFABsmjvpmNBsLvPdG.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/monda/v14/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:711;a:8:{s:6:\"family\";s:8:\"Monofett\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/monofett/v20/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:712;a:8:{s:6:\"family\";s:7:\"Monoton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/monoton/v13/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:713;a:8:{s:6:\"family\";s:20:\"Monsieur La Doulaise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/monsieurladoulaise/v12/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:714;a:8:{s:6:\"family\";s:7:\"Montaga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/montaga/v11/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:715;a:8:{s:6:\"family\";s:12:\"Montagu Slab\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v2\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:7:{i:100;s:114:\"http://fonts.gstatic.com/s/montaguslab/v2/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P9Fs7bOSO7.ttf\";i:200;s:114:\"http://fonts.gstatic.com/s/montaguslab/v2/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP9Fs7bOSO7.ttf\";i:300;s:114:\"http://fonts.gstatic.com/s/montaguslab/v2/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP9Fs7bOSO7.ttf\";s:7:\"regular\";s:114:\"http://fonts.gstatic.com/s/montaguslab/v2/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP9Fs7bOSO7.ttf\";i:500;s:114:\"http://fonts.gstatic.com/s/montaguslab/v2/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP9Fs7bOSO7.ttf\";i:600;s:114:\"http://fonts.gstatic.com/s/montaguslab/v2/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP9Fs7bOSO7.ttf\";i:700;s:114:\"http://fonts.gstatic.com/s/montaguslab/v2/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP9Fs7bOSO7.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:716;a:8:{s:6:\"family\";s:10:\"MonteCarlo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/montecarlo/v5/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:717;a:8:{s:6:\"family\";s:6:\"Montez\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/montez/v16/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:718;a:8:{s:6:\"family\";s:10:\"Montserrat\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:94:\"http://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf\";i:200;s:94:\"http://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-Y3tcoqK5.ttf\";i:300;s:94:\"http://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-Y3tcoqK5.ttf\";s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf\";i:500;s:94:\"http://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-Y3tcoqK5.ttf\";i:600;s:94:\"http://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-Y3tcoqK5.ttf\";i:700;s:94:\"http://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf\";i:800;s:94:\"http://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-Y3tcoqK5.ttf\";i:900;s:94:\"http://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-Y3tcoqK5.ttf\";s:9:\"100italic\";s:97:\"http://fonts.gstatic.com/s/montserrat/v23/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX9-p7K5ILg.ttf\";s:9:\"200italic\";s:97:\"http://fonts.gstatic.com/s/montserrat/v23/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX9-p7K5ILg.ttf\";s:9:\"300italic\";s:97:\"http://fonts.gstatic.com/s/montserrat/v23/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX9-p7K5ILg.ttf\";s:6:\"italic\";s:97:\"http://fonts.gstatic.com/s/montserrat/v23/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX9-p7K5ILg.ttf\";s:9:\"500italic\";s:97:\"http://fonts.gstatic.com/s/montserrat/v23/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX9-p7K5ILg.ttf\";s:9:\"600italic\";s:97:\"http://fonts.gstatic.com/s/montserrat/v23/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX9-p7K5ILg.ttf\";s:9:\"700italic\";s:97:\"http://fonts.gstatic.com/s/montserrat/v23/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX9-p7K5ILg.ttf\";s:9:\"800italic\";s:97:\"http://fonts.gstatic.com/s/montserrat/v23/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX9-p7K5ILg.ttf\";s:9:\"900italic\";s:97:\"http://fonts.gstatic.com/s/montserrat/v23/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX9-p7K5ILg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:719;a:8:{s:6:\"family\";s:21:\"Montserrat Alternates\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:18:{i:100;s:104:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf\";s:9:\"100italic\";s:107:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf\";i:200;s:106:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf\";s:9:\"200italic\";s:108:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf\";i:300;s:106:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf\";s:9:\"300italic\";s:108:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf\";s:7:\"regular\";s:102:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf\";s:6:\"italic\";s:104:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf\";i:500;s:106:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf\";s:9:\"500italic\";s:108:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf\";i:600;s:106:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf\";s:9:\"600italic\";s:108:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf\";i:700;s:106:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf\";s:9:\"700italic\";s:108:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf\";i:800;s:106:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf\";s:9:\"800italic\";s:108:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf\";i:900;s:106:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf\";s:9:\"900italic\";s:108:\"http://fonts.gstatic.com/s/montserratalternates/v16/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:720;a:8:{s:6:\"family\";s:20:\"Montserrat Subrayada\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:99:\"http://fonts.gstatic.com/s/montserratsubrayada/v15/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf\";i:700;s:103:\"http://fonts.gstatic.com/s/montserratsubrayada/v15/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:721;a:8:{s:6:\"family\";s:11:\"Moo Lah Lah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/moolahlah/v1/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:722;a:8:{s:6:\"family\";s:10:\"Moon Dance\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/moondance/v1/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:723;a:8:{s:6:\"family\";s:4:\"Moul\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/moul/v23/nuF2D__FSo_3E-RYiJCy-00.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:724;a:8:{s:6:\"family\";s:8:\"Moulpali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v26\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/moulpali/v26/H4ckBXKMl9HagUWymyY6wr-wg763.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:725;a:8:{s:6:\"family\";s:22:\"Mountains of Christmas\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:103:\"http://fonts.gstatic.com/s/mountainsofchristmas/v18/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf\";i:700;s:107:\"http://fonts.gstatic.com/s/mountainsofchristmas/v18/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:726;a:8:{s:6:\"family\";s:13:\"Mouse Memoirs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/mousememoirs/v11/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:727;a:8:{s:6:\"family\";s:10:\"Mr Bedfort\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/mrbedfort/v19/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:728;a:8:{s:6:\"family\";s:8:\"Mr Dafoe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/mrdafoe/v12/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:729;a:8:{s:6:\"family\";s:14:\"Mr De Haviland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/mrdehaviland/v12/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:730;a:8:{s:6:\"family\";s:19:\"Mrs Saint Delafield\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/mrssaintdelafield/v11/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:731;a:8:{s:6:\"family\";s:13:\"Mrs Sheppards\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/mrssheppards/v19/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:732;a:8:{s:6:\"family\";s:5:\"Mukta\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:7:{i:200;s:69:\"http://fonts.gstatic.com/s/mukta/v12/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf\";i:300;s:69:\"http://fonts.gstatic.com/s/mukta/v12/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf\";s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/mukta/v12/iJWKBXyXfDDVXYnGp32S0H3f.ttf\";i:500;s:69:\"http://fonts.gstatic.com/s/mukta/v12/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf\";i:600;s:69:\"http://fonts.gstatic.com/s/mukta/v12/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/mukta/v12/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf\";i:800;s:69:\"http://fonts.gstatic.com/s/mukta/v12/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:733;a:8:{s:6:\"family\";s:11:\"Mukta Mahee\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:8:\"gurmukhi\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:7:{i:200;s:82:\"http://fonts.gstatic.com/s/muktamahee/v13/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf\";i:300;s:82:\"http://fonts.gstatic.com/s/muktamahee/v13/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf\";s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/muktamahee/v13/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf\";i:500;s:82:\"http://fonts.gstatic.com/s/muktamahee/v13/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf\";i:600;s:82:\"http://fonts.gstatic.com/s/muktamahee/v13/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/muktamahee/v13/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf\";i:800;s:82:\"http://fonts.gstatic.com/s/muktamahee/v13/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:734;a:8:{s:6:\"family\";s:11:\"Mukta Malar\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:5:\"tamil\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:7:{i:200;s:82:\"http://fonts.gstatic.com/s/muktamalar/v10/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf\";i:300;s:82:\"http://fonts.gstatic.com/s/muktamalar/v10/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf\";s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/muktamalar/v10/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf\";i:500;s:82:\"http://fonts.gstatic.com/s/muktamalar/v10/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf\";i:600;s:82:\"http://fonts.gstatic.com/s/muktamalar/v10/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/muktamalar/v10/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf\";i:800;s:82:\"http://fonts.gstatic.com/s/muktamalar/v10/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:735;a:8:{s:6:\"family\";s:11:\"Mukta Vaani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:8:\"gujarati\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:7:{i:200;s:82:\"http://fonts.gstatic.com/s/muktavaani/v11/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf\";i:300;s:82:\"http://fonts.gstatic.com/s/muktavaani/v11/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf\";s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/muktavaani/v11/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf\";i:500;s:82:\"http://fonts.gstatic.com/s/muktavaani/v11/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf\";i:600;s:82:\"http://fonts.gstatic.com/s/muktavaani/v11/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/muktavaani/v11/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf\";i:800;s:82:\"http://fonts.gstatic.com/s/muktavaani/v11/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:736;a:8:{s:6:\"family\";s:6:\"Mulish\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:9:\"200italic\";i:9;s:9:\"300italic\";i:10;s:6:\"italic\";i:11;s:9:\"500italic\";i:12;s:9:\"600italic\";i:13;s:9:\"700italic\";i:14;s:9:\"800italic\";i:15;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:16:{i:200;s:85:\"http://fonts.gstatic.com/s/mulish/v10/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf\";i:300;s:85:\"http://fonts.gstatic.com/s/mulish/v10/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf\";s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/mulish/v10/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/mulish/v10/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/mulish/v10/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/mulish/v10/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf\";i:800;s:85:\"http://fonts.gstatic.com/s/mulish/v10/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf\";i:900;s:85:\"http://fonts.gstatic.com/s/mulish/v10/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf\";s:9:\"200italic\";s:88:\"http://fonts.gstatic.com/s/mulish/v10/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf\";s:9:\"300italic\";s:88:\"http://fonts.gstatic.com/s/mulish/v10/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf\";s:6:\"italic\";s:88:\"http://fonts.gstatic.com/s/mulish/v10/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf\";s:9:\"500italic\";s:88:\"http://fonts.gstatic.com/s/mulish/v10/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf\";s:9:\"600italic\";s:88:\"http://fonts.gstatic.com/s/mulish/v10/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf\";s:9:\"700italic\";s:88:\"http://fonts.gstatic.com/s/mulish/v10/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf\";s:9:\"800italic\";s:88:\"http://fonts.gstatic.com/s/mulish/v10/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf\";s:9:\"900italic\";s:88:\"http://fonts.gstatic.com/s/mulish/v10/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:737;a:8:{s:6:\"family\";s:7:\"Murecho\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:8:\"japanese\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v4\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:86:\"http://fonts.gstatic.com/s/murecho/v4/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf\";i:200;s:86:\"http://fonts.gstatic.com/s/murecho/v4/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf\";i:300;s:86:\"http://fonts.gstatic.com/s/murecho/v4/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWZLCpUOaM6.ttf\";s:7:\"regular\";s:86:\"http://fonts.gstatic.com/s/murecho/v4/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf\";i:500;s:86:\"http://fonts.gstatic.com/s/murecho/v4/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf\";i:600;s:86:\"http://fonts.gstatic.com/s/murecho/v4/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWZLCpUOaM6.ttf\";i:700;s:86:\"http://fonts.gstatic.com/s/murecho/v4/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf\";i:800;s:86:\"http://fonts.gstatic.com/s/murecho/v4/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf\";i:900;s:86:\"http://fonts.gstatic.com/s/murecho/v4/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWZLCpUOaM6.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:738;a:8:{s:6:\"family\";s:12:\"MuseoModerno\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:99:\"http://fonts.gstatic.com/s/museomoderno/v19/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf\";i:200;s:99:\"http://fonts.gstatic.com/s/museomoderno/v19/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf\";i:300;s:99:\"http://fonts.gstatic.com/s/museomoderno/v19/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf\";s:7:\"regular\";s:99:\"http://fonts.gstatic.com/s/museomoderno/v19/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf\";i:500;s:99:\"http://fonts.gstatic.com/s/museomoderno/v19/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf\";i:600;s:99:\"http://fonts.gstatic.com/s/museomoderno/v19/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf\";i:700;s:99:\"http://fonts.gstatic.com/s/museomoderno/v19/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf\";i:800;s:99:\"http://fonts.gstatic.com/s/museomoderno/v19/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf\";i:900;s:99:\"http://fonts.gstatic.com/s/museomoderno/v19/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:739;a:8:{s:6:\"family\";s:13:\"Mystery Quest\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/mysteryquest/v18/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:740;a:8:{s:6:\"family\";s:3:\"NTR\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:61:\"http://fonts.gstatic.com/s/ntr/v13/RLpzK5Xy0ZjiGGhs5TA4bg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:741;a:8:{s:6:\"family\";s:18:\"Nanum Brush Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/nanumbrushscript/v20/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:742;a:8:{s:6:\"family\";s:12:\"Nanum Gothic\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"700\";i:2;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2019-07-22\";s:5:\"files\";a:3:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/nanumgothic/v17/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/nanumgothic/v17/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf\";i:800;s:85:\"http://fonts.gstatic.com/s/nanumgothic/v17/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:743;a:8:{s:6:\"family\";s:19:\"Nanum Gothic Coding\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/nanumgothiccoding/v17/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf\";i:700;s:100:\"http://fonts.gstatic.com/s/nanumgothiccoding/v17/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:744;a:8:{s:6:\"family\";s:14:\"Nanum Myeongjo\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"700\";i:2;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:3:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/nanummyeongjo/v19/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf\";i:700;s:89:\"http://fonts.gstatic.com/s/nanummyeongjo/v19/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf\";i:800;s:89:\"http://fonts.gstatic.com/s/nanummyeongjo/v19/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:745;a:8:{s:6:\"family\";s:16:\"Nanum Pen Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2019-07-16\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/nanumpenscript/v15/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:746;a:8:{s:6:\"family\";s:11:\"Neonderthaw\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2022-01-12\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/neonderthaw/v1/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:747;a:8:{s:6:\"family\";s:9:\"Nerko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/nerkoone/v13/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:748;a:8:{s:6:\"family\";s:6:\"Neucha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/neucha/v15/q5uGsou0JOdh94bvugNsCxVEgA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:749;a:8:{s:6:\"family\";s:6:\"Neuton\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:6:{i:200;s:72:\"http://fonts.gstatic.com/s/neuton/v16/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf\";i:300;s:72:\"http://fonts.gstatic.com/s/neuton/v16/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf\";s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/neuton/v16/UMBTrPtMoH62xUZyyII7civlBw.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/neuton/v16/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/neuton/v16/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf\";i:800;s:72:\"http://fonts.gstatic.com/s/neuton/v16/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:750;a:8:{s:6:\"family\";s:10:\"New Rocker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/newrocker/v14/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:751;a:8:{s:6:\"family\";s:11:\"New Tegomin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/newtegomin/v8/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:752;a:8:{s:6:\"family\";s:10:\"News Cycle\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/newscycle/v20/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/newscycle/v20/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:753;a:8:{s:6:\"family\";s:10:\"Newsreader\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:9:\"200italic\";i:8;s:9:\"300italic\";i:9;s:6:\"italic\";i:10;s:9:\"500italic\";i:11;s:9:\"600italic\";i:12;s:9:\"700italic\";i:13;s:9:\"800italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:14:{i:200;s:111:\"http://fonts.gstatic.com/s/newsreader/v7/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ADOxEPjCggA.ttf\";i:300;s:111:\"http://fonts.gstatic.com/s/newsreader/v7/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ADOxEPjCggA.ttf\";s:7:\"regular\";s:111:\"http://fonts.gstatic.com/s/newsreader/v7/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADOxEPjCggA.ttf\";i:500;s:111:\"http://fonts.gstatic.com/s/newsreader/v7/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ADOxEPjCggA.ttf\";i:600;s:111:\"http://fonts.gstatic.com/s/newsreader/v7/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADOxEPjCggA.ttf\";i:700;s:111:\"http://fonts.gstatic.com/s/newsreader/v7/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADOxEPjCggA.ttf\";i:800;s:111:\"http://fonts.gstatic.com/s/newsreader/v7/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADOxEPjCggA.ttf\";s:9:\"200italic\";s:113:\"http://fonts.gstatic.com/s/newsreader/v7/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZAHDWwgECi.ttf\";s:9:\"300italic\";s:113:\"http://fonts.gstatic.com/s/newsreader/v7/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZAHDWwgECi.ttf\";s:6:\"italic\";s:113:\"http://fonts.gstatic.com/s/newsreader/v7/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZAHDWwgECi.ttf\";s:9:\"500italic\";s:113:\"http://fonts.gstatic.com/s/newsreader/v7/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZAHDWwgECi.ttf\";s:9:\"600italic\";s:113:\"http://fonts.gstatic.com/s/newsreader/v7/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZAHDWwgECi.ttf\";s:9:\"700italic\";s:113:\"http://fonts.gstatic.com/s/newsreader/v7/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZAHDWwgECi.ttf\";s:9:\"800italic\";s:113:\"http://fonts.gstatic.com/s/newsreader/v7/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZAHDWwgECi.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:754;a:8:{s:6:\"family\";s:7:\"Niconne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/niconne/v13/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:755;a:8:{s:6:\"family\";s:7:\"Niramit\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:12:{i:200;s:73:\"http://fonts.gstatic.com/s/niramit/v8/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf\";s:9:\"200italic\";s:76:\"http://fonts.gstatic.com/s/niramit/v8/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf\";i:300;s:73:\"http://fonts.gstatic.com/s/niramit/v8/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf\";s:9:\"300italic\";s:76:\"http://fonts.gstatic.com/s/niramit/v8/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf\";s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/niramit/v8/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf\";s:6:\"italic\";s:72:\"http://fonts.gstatic.com/s/niramit/v8/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf\";i:500;s:73:\"http://fonts.gstatic.com/s/niramit/v8/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf\";s:9:\"500italic\";s:76:\"http://fonts.gstatic.com/s/niramit/v8/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf\";i:600;s:73:\"http://fonts.gstatic.com/s/niramit/v8/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf\";s:9:\"600italic\";s:76:\"http://fonts.gstatic.com/s/niramit/v8/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf\";i:700;s:73:\"http://fonts.gstatic.com/s/niramit/v8/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf\";s:9:\"700italic\";s:76:\"http://fonts.gstatic.com/s/niramit/v8/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:756;a:8:{s:6:\"family\";s:9:\"Nixie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/nixieone/v14/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:757;a:8:{s:6:\"family\";s:6:\"Nobile\";s:8:\"variants\";a:6:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:6:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/nobile/v15/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/nobile/v15/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf\";i:500;s:72:\"http://fonts.gstatic.com/s/nobile/v15/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf\";s:9:\"500italic\";s:74:\"http://fonts.gstatic.com/s/nobile/v15/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/nobile/v15/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf\";s:9:\"700italic\";s:74:\"http://fonts.gstatic.com/s/nobile/v15/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:758;a:8:{s:6:\"family\";s:6:\"Nokora\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"700\";i:4;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v25\";s:12:\"lastModified\";s:10:\"2021-11-18\";s:5:\"files\";a:5:{i:100;s:71:\"http://fonts.gstatic.com/s/nokora/v25/~CgoKBk5va29yYRhkIAAqBAgBGAE=.ttf\";i:300;s:71:\"http://fonts.gstatic.com/s/nokora/v25/~CgsKBk5va29yYRisAiAAKgQIARgB.ttf\";s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/nokora/v25/~CggKBk5va29yYSAAKgQIARgB.ttf\";i:700;s:71:\"http://fonts.gstatic.com/s/nokora/v25/~CgsKBk5va29yYRi8BSAAKgQIARgB.ttf\";i:900;s:71:\"http://fonts.gstatic.com/s/nokora/v25/~CgsKBk5va29yYRiEByAAKgQIARgB.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:759;a:8:{s:6:\"family\";s:7:\"Norican\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/norican/v12/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:760;a:8:{s:6:\"family\";s:7:\"Nosifer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/nosifer/v11/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:761;a:8:{s:6:\"family\";s:7:\"Notable\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/notable/v12/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:762;a:8:{s:6:\"family\";s:20:\"Nothing You Could Do\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/nothingyoucoulddo/v13/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:763;a:8:{s:6:\"family\";s:12:\"Noticia Text\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/noticiatext/v14/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf\";s:6:\"italic\";s:83:\"http://fonts.gstatic.com/s/noticiatext/v14/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/noticiatext/v14/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf\";s:9:\"700italic\";s:87:\"http://fonts.gstatic.com/s/noticiatext/v14/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:764;a:8:{s:6:\"family\";s:16:\"Noto Kufi Arabic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:6:\"arabic\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:106:\"http://fonts.gstatic.com/s/notokufiarabic/v13/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obPnLSmf5yD.ttf\";i:200;s:106:\"http://fonts.gstatic.com/s/notokufiarabic/v13/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bPnLSmf5yD.ttf\";i:300;s:106:\"http://fonts.gstatic.com/s/notokufiarabic/v13/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bPnLSmf5yD.ttf\";s:7:\"regular\";s:106:\"http://fonts.gstatic.com/s/notokufiarabic/v13/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bPnLSmf5yD.ttf\";i:500;s:106:\"http://fonts.gstatic.com/s/notokufiarabic/v13/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bPnLSmf5yD.ttf\";i:600;s:106:\"http://fonts.gstatic.com/s/notokufiarabic/v13/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbPnLSmf5yD.ttf\";i:700;s:106:\"http://fonts.gstatic.com/s/notokufiarabic/v13/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbPnLSmf5yD.ttf\";i:800;s:106:\"http://fonts.gstatic.com/s/notokufiarabic/v13/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbPnLSmf5yD.ttf\";i:900;s:106:\"http://fonts.gstatic.com/s/notokufiarabic/v13/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbPnLSmf5yD.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:765;a:8:{s:6:\"family\";s:10:\"Noto Music\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"music\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/notomusic/v13/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:766;a:8:{s:6:\"family\";s:17:\"Noto Naskh Arabic\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:6:\"arabic\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:109:\"http://fonts.gstatic.com/s/notonaskharabic/v16/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5krK0z9_Mnuw.ttf\";i:500;s:109:\"http://fonts.gstatic.com/s/notonaskharabic/v16/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85krK0z9_Mnuw.ttf\";i:600;s:109:\"http://fonts.gstatic.com/s/notonaskharabic/v16/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkrK0z9_Mnuw.ttf\";i:700;s:109:\"http://fonts.gstatic.com/s/notonaskharabic/v16/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkrK0z9_Mnuw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:767;a:8:{s:6:\"family\";s:18:\"Noto Nastaliq Urdu\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:6:\"arabic\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:2:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/notonastaliqurdu/v11/LhW4MUPbN-oZdNFcBy1-DJYsEoTq5puHSPANO9blOA.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/notonastaliqurdu/v11/LhW7MUPbN-oZdNFcBy1-DJYsEoTq5pu_9N8pM_35MVRvQw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:768;a:8:{s:6:\"family\";s:17:\"Noto Rashi Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:6:\"hebrew\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:109:\"http://fonts.gstatic.com/s/notorashihebrew/v16/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkRyq6Nf2pfA.ttf\";i:200;s:109:\"http://fonts.gstatic.com/s/notorashihebrew/v16/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkRyq6Nf2pfA.ttf\";i:300;s:109:\"http://fonts.gstatic.com/s/notorashihebrew/v16/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkRyq6Nf2pfA.ttf\";s:7:\"regular\";s:109:\"http://fonts.gstatic.com/s/notorashihebrew/v16/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkRyq6Nf2pfA.ttf\";i:500;s:109:\"http://fonts.gstatic.com/s/notorashihebrew/v16/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkRyq6Nf2pfA.ttf\";i:600;s:109:\"http://fonts.gstatic.com/s/notorashihebrew/v16/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkRyq6Nf2pfA.ttf\";i:700;s:109:\"http://fonts.gstatic.com/s/notorashihebrew/v16/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkRyq6Nf2pfA.ttf\";i:800;s:109:\"http://fonts.gstatic.com/s/notorashihebrew/v16/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkRyq6Nf2pfA.ttf\";i:900;s:109:\"http://fonts.gstatic.com/s/notorashihebrew/v16/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkRyq6Nf2pfA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:769;a:8:{s:6:\"family\";s:9:\"Noto Sans\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:10:\"devanagari\";i:3;s:5:\"greek\";i:4;s:9:\"greek-ext\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v25\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/notosans/v25/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf\";s:6:\"italic\";s:76:\"http://fonts.gstatic.com/s/notosans/v25/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf\";i:700;s:78:\"http://fonts.gstatic.com/s/notosans/v25/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf\";s:9:\"700italic\";s:80:\"http://fonts.gstatic.com/s/notosans/v25/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:770;a:8:{s:6:\"family\";s:15:\"Noto Sans Adlam\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"adlam\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/notosansadlam/v15/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf\";i:500;s:104:\"http://fonts.gstatic.com/s/notosansadlam/v15/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGnBZLwhuvk.ttf\";i:600;s:104:\"http://fonts.gstatic.com/s/notosansadlam/v15/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGnBZLwhuvk.ttf\";i:700;s:104:\"http://fonts.gstatic.com/s/notosansadlam/v15/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGnBZLwhuvk.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:771;a:8:{s:6:\"family\";s:24:\"Noto Sans Adlam Unjoined\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"adlam\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:124:\"http://fonts.gstatic.com/s/notosansadlamunjoined/v15/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMEe-E3slUg.ttf\";i:500;s:124:\"http://fonts.gstatic.com/s/notosansadlamunjoined/v15/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMEe-E3slUg.ttf\";i:600;s:124:\"http://fonts.gstatic.com/s/notosansadlamunjoined/v15/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMEe-E3slUg.ttf\";i:700;s:124:\"http://fonts.gstatic.com/s/notosansadlamunjoined/v15/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMEe-E3slUg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:772;a:8:{s:6:\"family\";s:31:\"Noto Sans Anatolian Hieroglyphs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:21:\"anatolian-hieroglyphs\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:123:\"http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v13/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:773;a:8:{s:6:\"family\";s:16:\"Noto Sans Arabic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:6:\"arabic\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:124:\"http://fonts.gstatic.com/s/notosansarabic/v14/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vu3CBFQLaig.ttf\";i:200;s:124:\"http://fonts.gstatic.com/s/notosansarabic/v14/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvu3CBFQLaig.ttf\";i:300;s:124:\"http://fonts.gstatic.com/s/notosansarabic/v14/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvu3CBFQLaig.ttf\";s:7:\"regular\";s:124:\"http://fonts.gstatic.com/s/notosansarabic/v14/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf\";i:500;s:124:\"http://fonts.gstatic.com/s/notosansarabic/v14/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvu3CBFQLaig.ttf\";i:600;s:124:\"http://fonts.gstatic.com/s/notosansarabic/v14/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvu3CBFQLaig.ttf\";i:700;s:124:\"http://fonts.gstatic.com/s/notosansarabic/v14/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvu3CBFQLaig.ttf\";i:800;s:124:\"http://fonts.gstatic.com/s/notosansarabic/v14/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvu3CBFQLaig.ttf\";i:900;s:124:\"http://fonts.gstatic.com/s/notosansarabic/v14/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvu3CBFQLaig.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:774;a:8:{s:6:\"family\";s:18:\"Noto Sans Armenian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:8:\"armenian\";}s:7:\"version\";s:3:\"v28\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:9:{i:100;s:128:\"http://fonts.gstatic.com/s/notosansarmenian/v28/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0iYy6zF3Eg.ttf\";i:200;s:128:\"http://fonts.gstatic.com/s/notosansarmenian/v28/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60iYy6zF3Eg.ttf\";i:300;s:128:\"http://fonts.gstatic.com/s/notosansarmenian/v28/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60iYy6zF3Eg.ttf\";s:7:\"regular\";s:128:\"http://fonts.gstatic.com/s/notosansarmenian/v28/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf\";i:500;s:128:\"http://fonts.gstatic.com/s/notosansarmenian/v28/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60iYy6zF3Eg.ttf\";i:600;s:128:\"http://fonts.gstatic.com/s/notosansarmenian/v28/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0iYy6zF3Eg.ttf\";i:700;s:128:\"http://fonts.gstatic.com/s/notosansarmenian/v28/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0iYy6zF3Eg.ttf\";i:800;s:128:\"http://fonts.gstatic.com/s/notosansarmenian/v28/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0iYy6zF3Eg.ttf\";i:900;s:128:\"http://fonts.gstatic.com/s/notosansarmenian/v28/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0iYy6zF3Eg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:775;a:8:{s:6:\"family\";s:17:\"Noto Sans Avestan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"avestan\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosansavestan/v13/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:776;a:8:{s:6:\"family\";s:18:\"Noto Sans Balinese\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:8:\"balinese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:111:\"http://fonts.gstatic.com/s/notosansbalinese/v15/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf\";i:500;s:111:\"http://fonts.gstatic.com/s/notosansbalinese/v15/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhE5Vd222PPY.ttf\";i:600;s:111:\"http://fonts.gstatic.com/s/notosansbalinese/v15/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahE5Vd222PPY.ttf\";i:700;s:111:\"http://fonts.gstatic.com/s/notosansbalinese/v15/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahE5Vd222PPY.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:777;a:8:{s:6:\"family\";s:15:\"Noto Sans Bamum\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"bamum\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/notosansbamum/v16/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf\";i:500;s:104:\"http://fonts.gstatic.com/s/notosansbamum/v16/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_gLykxEkxA.ttf\";i:600;s:104:\"http://fonts.gstatic.com/s/notosansbamum/v16/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_gLykxEkxA.ttf\";i:700;s:104:\"http://fonts.gstatic.com/s/notosansbamum/v16/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_gLykxEkxA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:778;a:8:{s:6:\"family\";s:19:\"Noto Sans Bassa Vah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:9:\"bassa-vah\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:95:\"http://fonts.gstatic.com/s/notosansbassavah/v13/PN_sRee-r3f7LnqsD5sax12gjZn7mBpL_4c2VNUQptE.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:779;a:8:{s:6:\"family\";s:15:\"Noto Sans Batak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"batak\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/notosansbatak/v13/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:780;a:8:{s:6:\"family\";s:17:\"Noto Sans Bengali\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:7:\"bengali\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:126:\"http://fonts.gstatic.com/s/notosansbengali/v14/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudCk8izI0lc.ttf\";i:200;s:126:\"http://fonts.gstatic.com/s/notosansbengali/v14/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudCk8izI0lc.ttf\";i:300;s:126:\"http://fonts.gstatic.com/s/notosansbengali/v14/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudCk8izI0lc.ttf\";s:7:\"regular\";s:126:\"http://fonts.gstatic.com/s/notosansbengali/v14/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf\";i:500;s:126:\"http://fonts.gstatic.com/s/notosansbengali/v14/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudCk8izI0lc.ttf\";i:600;s:126:\"http://fonts.gstatic.com/s/notosansbengali/v14/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudCk8izI0lc.ttf\";i:700;s:126:\"http://fonts.gstatic.com/s/notosansbengali/v14/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudCk8izI0lc.ttf\";i:800;s:126:\"http://fonts.gstatic.com/s/notosansbengali/v14/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudCk8izI0lc.ttf\";i:900;s:126:\"http://fonts.gstatic.com/s/notosansbengali/v14/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudCk8izI0lc.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:781;a:8:{s:6:\"family\";s:19:\"Noto Sans Bhaiksuki\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:9:\"bhaiksuki\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/notosansbhaiksuki/v13/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:782;a:8:{s:6:\"family\";s:16:\"Noto Sans Brahmi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"brahmi\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosansbrahmi/v13/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:783;a:8:{s:6:\"family\";s:18:\"Noto Sans Buginese\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:8:\"buginese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/notosansbuginese/v13/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:784;a:8:{s:6:\"family\";s:15:\"Noto Sans Buhid\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"buhid\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/notosansbuhid/v13/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:785;a:8:{s:6:\"family\";s:29:\"Noto Sans Canadian Aboriginal\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:19:\"canadian-aboriginal\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:136:\"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v15/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_yAsg0q0uhQ.ttf\";i:200;s:136:\"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v15/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_yAsg0q0uhQ.ttf\";i:300;s:136:\"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v15/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_yAsg0q0uhQ.ttf\";s:7:\"regular\";s:136:\"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v15/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf\";i:500;s:136:\"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v15/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_yAsg0q0uhQ.ttf\";i:600;s:136:\"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v15/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_yAsg0q0uhQ.ttf\";i:700;s:136:\"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v15/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_yAsg0q0uhQ.ttf\";i:800;s:136:\"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v15/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_yAsg0q0uhQ.ttf\";i:900;s:136:\"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v15/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_yAsg0q0uhQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:786;a:8:{s:6:\"family\";s:16:\"Noto Sans Carian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"carian\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosanscarian/v13/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:787;a:8:{s:6:\"family\";s:28:\"Noto Sans Caucasian Albanian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:18:\"caucasian-albanian\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:116:\"http://fonts.gstatic.com/s/notosanscaucasianalbanian/v14/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:788;a:8:{s:6:\"family\";s:16:\"Noto Sans Chakma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"chakma\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosanschakma/v13/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:789;a:8:{s:6:\"family\";s:14:\"Noto Sans Cham\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:4:\"cham\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:102:\"http://fonts.gstatic.com/s/notosanscham/v15/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0cv7GykboaLg.ttf\";i:200;s:102:\"http://fonts.gstatic.com/s/notosanscham/v15/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcv7GykboaLg.ttf\";i:300;s:102:\"http://fonts.gstatic.com/s/notosanscham/v15/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcv7GykboaLg.ttf\";s:7:\"regular\";s:102:\"http://fonts.gstatic.com/s/notosanscham/v15/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf\";i:500;s:102:\"http://fonts.gstatic.com/s/notosanscham/v15/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcv7GykboaLg.ttf\";i:600;s:102:\"http://fonts.gstatic.com/s/notosanscham/v15/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscv7GykboaLg.ttf\";i:700;s:102:\"http://fonts.gstatic.com/s/notosanscham/v15/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscv7GykboaLg.ttf\";i:800;s:102:\"http://fonts.gstatic.com/s/notosanscham/v15/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscv7GykboaLg.ttf\";i:900;s:102:\"http://fonts.gstatic.com/s/notosanscham/v15/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscv7GykboaLg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:790;a:8:{s:6:\"family\";s:18:\"Noto Sans Cherokee\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:8:\"cherokee\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:111:\"http://fonts.gstatic.com/s/notosanscherokee/v15/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODkm5rAffjl0.ttf\";i:200;s:111:\"http://fonts.gstatic.com/s/notosanscherokee/v15/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDkm5rAffjl0.ttf\";i:300;s:111:\"http://fonts.gstatic.com/s/notosanscherokee/v15/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDkm5rAffjl0.ttf\";s:7:\"regular\";s:111:\"http://fonts.gstatic.com/s/notosanscherokee/v15/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf\";i:500;s:111:\"http://fonts.gstatic.com/s/notosanscherokee/v15/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDkm5rAffjl0.ttf\";i:600;s:111:\"http://fonts.gstatic.com/s/notosanscherokee/v15/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDkm5rAffjl0.ttf\";i:700;s:111:\"http://fonts.gstatic.com/s/notosanscherokee/v15/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDkm5rAffjl0.ttf\";i:800;s:111:\"http://fonts.gstatic.com/s/notosanscherokee/v15/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDkm5rAffjl0.ttf\";i:900;s:111:\"http://fonts.gstatic.com/s/notosanscherokee/v15/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDkm5rAffjl0.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:791;a:8:{s:6:\"family\";s:16:\"Noto Sans Coptic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"coptic\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosanscoptic/v13/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:792;a:8:{s:6:\"family\";s:19:\"Noto Sans Cuneiform\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:9:\"cuneiform\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/notosanscuneiform/v13/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:793;a:8:{s:6:\"family\";s:17:\"Noto Sans Cypriot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"cypriot\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosanscypriot/v13/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:794;a:8:{s:6:\"family\";s:17:\"Noto Sans Deseret\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"deseret\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosansdeseret/v13/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:795;a:8:{s:6:\"family\";s:20:\"Noto Sans Devanagari\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:10:\"devanagari\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:101:\"http://fonts.gstatic.com/s/notosansdevanagari/v14/TuGAUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv1E1fxxPDT4d_AU.ttf\";i:200;s:102:\"http://fonts.gstatic.com/s/notosansdevanagari/v14/TuGBUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv1GZXjxlIzIU5RwD.ttf\";i:300;s:102:\"http://fonts.gstatic.com/s/notosansdevanagari/v14/TuGBUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv1H9XTxlIzIU5RwD.ttf\";s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/notosansdevanagari/v14/TuGOUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv2lRdRhtCC4d.ttf\";i:500;s:102:\"http://fonts.gstatic.com/s/notosansdevanagari/v14/TuGBUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv1GlXDxlIzIU5RwD.ttf\";i:600;s:102:\"http://fonts.gstatic.com/s/notosansdevanagari/v14/TuGBUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv1GJWzxlIzIU5RwD.ttf\";i:700;s:102:\"http://fonts.gstatic.com/s/notosansdevanagari/v14/TuGBUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv1HtWjxlIzIU5RwD.ttf\";i:800;s:102:\"http://fonts.gstatic.com/s/notosansdevanagari/v14/TuGBUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv1HxWTxlIzIU5RwD.ttf\";i:900;s:102:\"http://fonts.gstatic.com/s/notosansdevanagari/v14/TuGBUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv1HVWDxlIzIU5RwD.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:796;a:8:{s:6:\"family\";s:17:\"Noto Sans Display\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:18:{i:100;s:126:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTGQ2iHrvWM.ttf\";i:200;s:126:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTGQ2iHrvWM.ttf\";i:300;s:126:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTGQ2iHrvWM.ttf\";s:7:\"regular\";s:126:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTGQ2iHrvWM.ttf\";i:500;s:126:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTGQ2iHrvWM.ttf\";i:600;s:126:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTGQ2iHrvWM.ttf\";i:700;s:126:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTGQ2iHrvWM.ttf\";i:800;s:126:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTGQ2iHrvWM.ttf\";i:900;s:126:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTGQ2iHrvWM.ttf\";s:9:\"100italic\";s:129:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa3gPurWM9uQ.ttf\";s:9:\"200italic\";s:129:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa3gPurWM9uQ.ttf\";s:9:\"300italic\";s:129:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka3gPurWM9uQ.ttf\";s:6:\"italic\";s:129:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa3gPurWM9uQ.ttf\";s:9:\"500italic\";s:129:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka3gPurWM9uQ.ttf\";s:9:\"600italic\";s:129:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa3gPurWM9uQ.ttf\";s:9:\"700italic\";s:129:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa3gPurWM9uQ.ttf\";s:9:\"800italic\";s:129:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa3gPurWM9uQ.ttf\";s:9:\"900italic\";s:129:\"http://fonts.gstatic.com/s/notosansdisplay/v13/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa3gPurWM9uQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:797;a:8:{s:6:\"family\";s:18:\"Noto Sans Duployan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:8:\"duployan\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/notosansduployan/v14/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:798;a:8:{s:6:\"family\";s:30:\"Noto Sans Egyptian Hieroglyphs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:20:\"egyptian-hieroglyphs\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:121:\"http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v24/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:799;a:8:{s:6:\"family\";s:17:\"Noto Sans Elbasan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"elbasan\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosanselbasan/v13/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:800;a:8:{s:6:\"family\";s:17:\"Noto Sans Elymaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"elymaic\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosanselymaic/v13/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:801;a:8:{s:6:\"family\";s:18:\"Noto Sans Georgian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:8:\"georgian\";}s:7:\"version\";s:3:\"v28\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:9:{i:100;s:128:\"http://fonts.gstatic.com/s/notosansgeorgian/v28/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj-f5WK0OQV.ttf\";i:200;s:128:\"http://fonts.gstatic.com/s/notosansgeorgian/v28/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj-f5WK0OQV.ttf\";i:300;s:128:\"http://fonts.gstatic.com/s/notosansgeorgian/v28/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj-f5WK0OQV.ttf\";s:7:\"regular\";s:128:\"http://fonts.gstatic.com/s/notosansgeorgian/v28/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf\";i:500;s:128:\"http://fonts.gstatic.com/s/notosansgeorgian/v28/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj-f5WK0OQV.ttf\";i:600;s:128:\"http://fonts.gstatic.com/s/notosansgeorgian/v28/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j-f5WK0OQV.ttf\";i:700;s:128:\"http://fonts.gstatic.com/s/notosansgeorgian/v28/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j-f5WK0OQV.ttf\";i:800;s:128:\"http://fonts.gstatic.com/s/notosansgeorgian/v28/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j-f5WK0OQV.ttf\";i:900;s:128:\"http://fonts.gstatic.com/s/notosansgeorgian/v28/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j-f5WK0OQV.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:802;a:8:{s:6:\"family\";s:20:\"Noto Sans Glagolitic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:10:\"glagolitic\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/notosansglagolitic/v13/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:803;a:8:{s:6:\"family\";s:16:\"Noto Sans Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"gothic\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosansgothic/v13/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:804;a:8:{s:6:\"family\";s:17:\"Noto Sans Grantha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"grantha\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosansgrantha/v13/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:805;a:8:{s:6:\"family\";s:18:\"Noto Sans Gujarati\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:8:\"gujarati\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:96:\"http://fonts.gstatic.com/s/notosansgujarati/v14/wlpugx_HC1ti5ViekvcxnhMlCVo3f5pNuJBHVa6nAVMh.ttf\";i:200;s:98:\"http://fonts.gstatic.com/s/notosansgujarati/v14/wlpvgx_HC1ti5ViekvcxnhMlCVo3f5pNFLFnf4CrCEo4gg.ttf\";i:300;s:98:\"http://fonts.gstatic.com/s/notosansgujarati/v14/wlpvgx_HC1ti5ViekvcxnhMlCVo3f5pNcLJnf4CrCEo4gg.ttf\";s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/notosansgujarati/v14/wlpsgx_HC1ti5ViekvcxnhMlCVo3f5p13JpDd6u3AQ.ttf\";i:500;s:98:\"http://fonts.gstatic.com/s/notosansgujarati/v14/wlpvgx_HC1ti5ViekvcxnhMlCVo3f5pNKLNnf4CrCEo4gg.ttf\";i:600;s:98:\"http://fonts.gstatic.com/s/notosansgujarati/v14/wlpvgx_HC1ti5ViekvcxnhMlCVo3f5pNBLRnf4CrCEo4gg.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/notosansgujarati/v14/wlpvgx_HC1ti5ViekvcxnhMlCVo3f5pNYLVnf4CrCEo4gg.ttf\";i:800;s:98:\"http://fonts.gstatic.com/s/notosansgujarati/v14/wlpvgx_HC1ti5ViekvcxnhMlCVo3f5pNfLZnf4CrCEo4gg.ttf\";i:900;s:98:\"http://fonts.gstatic.com/s/notosansgujarati/v14/wlpvgx_HC1ti5ViekvcxnhMlCVo3f5pNWLdnf4CrCEo4gg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:806;a:8:{s:6:\"family\";s:23:\"Noto Sans Gunjala Gondi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:13:\"gunjala-gondi\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/notosansgunjalagondi/v13/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:807;a:8:{s:6:\"family\";s:18:\"Noto Sans Gurmukhi\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:8:\"gurmukhi\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:128:\"http://fonts.gstatic.com/s/notosansgurmukhi/v14/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3bxZ_trdp7h.ttf\";i:200;s:128:\"http://fonts.gstatic.com/s/notosansgurmukhi/v14/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OenbxZ_trdp7h.ttf\";i:300;s:128:\"http://fonts.gstatic.com/s/notosansgurmukhi/v14/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0QenbxZ_trdp7h.ttf\";s:7:\"regular\";s:128:\"http://fonts.gstatic.com/s/notosansgurmukhi/v14/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf\";i:500;s:128:\"http://fonts.gstatic.com/s/notosansgurmukhi/v14/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enbxZ_trdp7h.ttf\";i:600;s:128:\"http://fonts.gstatic.com/s/notosansgurmukhi/v14/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXbxZ_trdp7h.ttf\";i:700;s:128:\"http://fonts.gstatic.com/s/notosansgurmukhi/v14/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXbxZ_trdp7h.ttf\";i:800;s:128:\"http://fonts.gstatic.com/s/notosansgurmukhi/v14/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXbxZ_trdp7h.ttf\";i:900;s:128:\"http://fonts.gstatic.com/s/notosansgurmukhi/v14/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXbxZ_trdp7h.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:808;a:8:{s:6:\"family\";s:12:\"Noto Sans HK\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:16:\"chinese-hongkong\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:6:{i:100;s:82:\"http://fonts.gstatic.com/s/notosanshk/v19/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf\";i:300;s:84:\"http://fonts.gstatic.com/s/notosanshk/v19/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf\";s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/notosanshk/v19/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf\";i:500;s:84:\"http://fonts.gstatic.com/s/notosanshk/v19/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf\";i:700;s:84:\"http://fonts.gstatic.com/s/notosanshk/v19/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf\";i:900;s:84:\"http://fonts.gstatic.com/s/notosanshk/v19/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:809;a:8:{s:6:\"family\";s:25:\"Noto Sans Hanifi Rohingya\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:15:\"hanifi-rohingya\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:126:\"http://fonts.gstatic.com/s/notosanshanifirohingya/v14/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6vvcudK8rN.ttf\";i:500;s:126:\"http://fonts.gstatic.com/s/notosanshanifirohingya/v14/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6vvcudK8rN.ttf\";i:600;s:126:\"http://fonts.gstatic.com/s/notosanshanifirohingya/v14/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6vvcudK8rN.ttf\";i:700;s:126:\"http://fonts.gstatic.com/s/notosanshanifirohingya/v14/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6vvcudK8rN.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:810;a:8:{s:6:\"family\";s:17:\"Noto Sans Hanunoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"hanunoo\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosanshanunoo/v13/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:811;a:8:{s:6:\"family\";s:16:\"Noto Sans Hatran\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"hatran\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosanshatran/v13/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:812;a:8:{s:6:\"family\";s:16:\"Noto Sans Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:6:\"hebrew\";}s:7:\"version\";s:3:\"v31\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:124:\"http://fonts.gstatic.com/s/notosanshebrew/v31/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utoiJltutR2g.ttf\";i:200;s:124:\"http://fonts.gstatic.com/s/notosanshebrew/v31/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtoiJltutR2g.ttf\";i:300;s:124:\"http://fonts.gstatic.com/s/notosanshebrew/v31/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtoiJltutR2g.ttf\";s:7:\"regular\";s:124:\"http://fonts.gstatic.com/s/notosanshebrew/v31/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf\";i:500;s:124:\"http://fonts.gstatic.com/s/notosanshebrew/v31/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtoiJltutR2g.ttf\";i:600;s:124:\"http://fonts.gstatic.com/s/notosanshebrew/v31/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2toiJltutR2g.ttf\";i:700;s:124:\"http://fonts.gstatic.com/s/notosanshebrew/v31/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2toiJltutR2g.ttf\";i:800;s:124:\"http://fonts.gstatic.com/s/notosanshebrew/v31/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942toiJltutR2g.ttf\";i:900;s:124:\"http://fonts.gstatic.com/s/notosanshebrew/v31/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2toiJltutR2g.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:813;a:8:{s:6:\"family\";s:26:\"Noto Sans Imperial Aramaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:16:\"imperial-aramaic\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:111:\"http://fonts.gstatic.com/s/notosansimperialaramaic/v13/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:814;a:8:{s:6:\"family\";s:29:\"Noto Sans Indic Siyaq Numbers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:19:\"indic-siyaq-numbers\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:117:\"http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v13/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:815;a:8:{s:6:\"family\";s:31:\"Noto Sans Inscriptional Pahlavi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:21:\"inscriptional-pahlavi\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:123:\"http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v13/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:816;a:8:{s:6:\"family\";s:32:\"Noto Sans Inscriptional Parthian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:22:\"inscriptional-parthian\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:125:\"http://fonts.gstatic.com/s/notosansinscriptionalparthian/v13/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:817;a:8:{s:6:\"family\";s:12:\"Noto Sans JP\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v40\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:6:{i:100;s:82:\"http://fonts.gstatic.com/s/notosansjp/v40/-F6ofjtqLzI2JPCgQBnw7HFQoggM-FNthvIU.otf\";i:300;s:84:\"http://fonts.gstatic.com/s/notosansjp/v40/-F6pfjtqLzI2JPCgQBnw7HFQaioq1H1hj-sNFQ.otf\";s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/notosansjp/v40/-F62fjtqLzI2JPCgQBnw7HFowAIO2lZ9hg.otf\";i:500;s:84:\"http://fonts.gstatic.com/s/notosansjp/v40/-F6pfjtqLzI2JPCgQBnw7HFQMisq1H1hj-sNFQ.otf\";i:700;s:84:\"http://fonts.gstatic.com/s/notosansjp/v40/-F6pfjtqLzI2JPCgQBnw7HFQei0q1H1hj-sNFQ.otf\";i:900;s:84:\"http://fonts.gstatic.com/s/notosansjp/v40/-F6pfjtqLzI2JPCgQBnw7HFQQi8q1H1hj-sNFQ.otf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:818;a:8:{s:6:\"family\";s:18:\"Noto Sans Javanese\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:8:\"javanese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:2:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/notosansjavanese/v13/2V0AKJkDAIA6Hp4zoSScDjV0Y-eoHAHJ8r88Rp29eA.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/notosansjavanese/v13/2V0DKJkDAIA6Hp4zoSScDjV0Y-eoHAHxTpAYTrahcTyFxQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:819;a:8:{s:6:\"family\";s:12:\"Noto Sans KR\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v25\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:6:{i:100;s:82:\"http://fonts.gstatic.com/s/notosanskr/v25/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf\";i:300;s:84:\"http://fonts.gstatic.com/s/notosanskr/v25/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf\";s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/notosanskr/v25/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf\";i:500;s:84:\"http://fonts.gstatic.com/s/notosanskr/v25/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf\";i:700;s:84:\"http://fonts.gstatic.com/s/notosanskr/v25/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf\";i:900;s:84:\"http://fonts.gstatic.com/s/notosanskr/v25/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:820;a:8:{s:6:\"family\";s:16:\"Noto Sans Kaithi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"kaithi\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosanskaithi/v13/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:821;a:8:{s:6:\"family\";s:17:\"Noto Sans Kannada\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:7:\"kannada\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:126:\"http://fonts.gstatic.com/s/notosanskannada/v13/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzSIMLsPKrkY.ttf\";i:200;s:126:\"http://fonts.gstatic.com/s/notosanskannada/v13/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzSIMLsPKrkY.ttf\";i:300;s:126:\"http://fonts.gstatic.com/s/notosanskannada/v13/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzSIMLsPKrkY.ttf\";s:7:\"regular\";s:126:\"http://fonts.gstatic.com/s/notosanskannada/v13/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf\";i:500;s:126:\"http://fonts.gstatic.com/s/notosanskannada/v13/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzSIMLsPKrkY.ttf\";i:600;s:126:\"http://fonts.gstatic.com/s/notosanskannada/v13/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzSIMLsPKrkY.ttf\";i:700;s:126:\"http://fonts.gstatic.com/s/notosanskannada/v13/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzSIMLsPKrkY.ttf\";i:800;s:126:\"http://fonts.gstatic.com/s/notosanskannada/v13/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzSIMLsPKrkY.ttf\";i:900;s:126:\"http://fonts.gstatic.com/s/notosanskannada/v13/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzSIMLsPKrkY.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:822;a:8:{s:6:\"family\";s:18:\"Noto Sans Kayah Li\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:8:\"kayah-li\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:110:\"http://fonts.gstatic.com/s/notosanskayahli/v14/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf\";i:500;s:110:\"http://fonts.gstatic.com/s/notosanskayahli/v14/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZH4EXLuKVM.ttf\";i:600;s:110:\"http://fonts.gstatic.com/s/notosanskayahli/v14/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZH4EXLuKVM.ttf\";i:700;s:110:\"http://fonts.gstatic.com/s/notosanskayahli/v14/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZH4EXLuKVM.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:823;a:8:{s:6:\"family\";s:20:\"Noto Sans Kharoshthi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:10:\"kharoshthi\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/notosanskharoshthi/v13/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:824;a:8:{s:6:\"family\";s:15:\"Noto Sans Khmer\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:5:\"khmer\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:9:{i:100;s:121:\"http://fonts.gstatic.com/s/notosanskhmer/v12/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz4kAbrddiA.ttf\";i:200;s:121:\"http://fonts.gstatic.com/s/notosanskhmer/v12/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz4kAbrddiA.ttf\";i:300;s:121:\"http://fonts.gstatic.com/s/notosanskhmer/v12/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz4kAbrddiA.ttf\";s:7:\"regular\";s:121:\"http://fonts.gstatic.com/s/notosanskhmer/v12/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf\";i:500;s:121:\"http://fonts.gstatic.com/s/notosanskhmer/v12/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz4kAbrddiA.ttf\";i:600;s:121:\"http://fonts.gstatic.com/s/notosanskhmer/v12/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z4kAbrddiA.ttf\";i:700;s:121:\"http://fonts.gstatic.com/s/notosanskhmer/v12/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z4kAbrddiA.ttf\";i:800;s:121:\"http://fonts.gstatic.com/s/notosanskhmer/v12/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z4kAbrddiA.ttf\";i:900;s:121:\"http://fonts.gstatic.com/s/notosanskhmer/v12/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z4kAbrddiA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:825;a:8:{s:6:\"family\";s:16:\"Noto Sans Khojki\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"khojki\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosanskhojki/v13/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:826;a:8:{s:6:\"family\";s:19:\"Noto Sans Khudawadi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:9:\"khudawadi\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/notosanskhudawadi/v13/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:827;a:8:{s:6:\"family\";s:13:\"Noto Sans Lao\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:3:\"lao\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:9:{i:100;s:117:\"http://fonts.gstatic.com/s/notosanslao/v16/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdf5MK3riB2w.ttf\";i:200;s:117:\"http://fonts.gstatic.com/s/notosanslao/v16/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdf5MK3riB2w.ttf\";i:300;s:117:\"http://fonts.gstatic.com/s/notosanslao/v16/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdf5MK3riB2w.ttf\";s:7:\"regular\";s:117:\"http://fonts.gstatic.com/s/notosanslao/v16/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf\";i:500;s:117:\"http://fonts.gstatic.com/s/notosanslao/v16/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdf5MK3riB2w.ttf\";i:600;s:117:\"http://fonts.gstatic.com/s/notosanslao/v16/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8Hdf5MK3riB2w.ttf\";i:700;s:117:\"http://fonts.gstatic.com/s/notosanslao/v16/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdf5MK3riB2w.ttf\";i:800;s:117:\"http://fonts.gstatic.com/s/notosanslao/v16/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdf5MK3riB2w.ttf\";i:900;s:117:\"http://fonts.gstatic.com/s/notosanslao/v16/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdf5MK3riB2w.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:828;a:8:{s:6:\"family\";s:16:\"Noto Sans Lepcha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"lepcha\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosanslepcha/v13/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:829;a:8:{s:6:\"family\";s:15:\"Noto Sans Limbu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"limbu\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/notosanslimbu/v13/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:830;a:8:{s:6:\"family\";s:18:\"Noto Sans Linear A\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:8:\"linear-a\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:93:\"http://fonts.gstatic.com/s/notosanslineara/v14/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:831;a:8:{s:6:\"family\";s:18:\"Noto Sans Linear B\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:8:\"linear-b\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:93:\"http://fonts.gstatic.com/s/notosanslinearb/v13/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:832;a:8:{s:6:\"family\";s:14:\"Noto Sans Lisu\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:4:\"lisu\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:102:\"http://fonts.gstatic.com/s/notosanslisu/v15/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf\";i:500;s:102:\"http://fonts.gstatic.com/s/notosanslisu/v15/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt29IlxkVdig.ttf\";i:600;s:102:\"http://fonts.gstatic.com/s/notosanslisu/v15/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st29IlxkVdig.ttf\";i:700;s:102:\"http://fonts.gstatic.com/s/notosanslisu/v15/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst29IlxkVdig.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:833;a:8:{s:6:\"family\";s:16:\"Noto Sans Lycian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"lycian\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosanslycian/v13/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:834;a:8:{s:6:\"family\";s:16:\"Noto Sans Lydian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"lydian\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosanslydian/v13/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:835;a:8:{s:6:\"family\";s:18:\"Noto Sans Mahajani\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:8:\"mahajani\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/notosansmahajani/v13/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:836;a:8:{s:6:\"family\";s:19:\"Noto Sans Malayalam\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:9:\"malayalam\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:9:{i:100;s:131:\"http://fonts.gstatic.com/s/notosansmalayalam/v13/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9BFzEr6HxEA.ttf\";i:200;s:131:\"http://fonts.gstatic.com/s/notosansmalayalam/v13/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9BFzEr6HxEA.ttf\";i:300;s:131:\"http://fonts.gstatic.com/s/notosansmalayalam/v13/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9BFzEr6HxEA.ttf\";s:7:\"regular\";s:131:\"http://fonts.gstatic.com/s/notosansmalayalam/v13/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf\";i:500;s:131:\"http://fonts.gstatic.com/s/notosansmalayalam/v13/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9BFzEr6HxEA.ttf\";i:600;s:131:\"http://fonts.gstatic.com/s/notosansmalayalam/v13/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9BFzEr6HxEA.ttf\";i:700;s:131:\"http://fonts.gstatic.com/s/notosansmalayalam/v13/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9BFzEr6HxEA.ttf\";i:800;s:131:\"http://fonts.gstatic.com/s/notosansmalayalam/v13/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9BFzEr6HxEA.ttf\";i:900;s:131:\"http://fonts.gstatic.com/s/notosansmalayalam/v13/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9BFzEr6HxEA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:837;a:8:{s:6:\"family\";s:17:\"Noto Sans Mandaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"mandaic\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosansmandaic/v13/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:838;a:8:{s:6:\"family\";s:20:\"Noto Sans Manichaean\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:10:\"manichaean\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/notosansmanichaean/v13/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:839;a:8:{s:6:\"family\";s:17:\"Noto Sans Marchen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"marchen\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosansmarchen/v13/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:840;a:8:{s:6:\"family\";s:23:\"Noto Sans Masaram Gondi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:13:\"masaram-gondi\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/notosansmasaramgondi/v13/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:841;a:8:{s:6:\"family\";s:14:\"Noto Sans Math\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:4:\"math\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/notosansmath/v13/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:842;a:8:{s:6:\"family\";s:24:\"Noto Sans Mayan Numerals\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:14:\"mayan-numerals\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:107:\"http://fonts.gstatic.com/s/notosansmayannumerals/v13/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:843;a:8:{s:6:\"family\";s:21:\"Noto Sans Medefaidrin\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:11:\"medefaidrin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:118:\"http://fonts.gstatic.com/s/notosansmedefaidrin/v15/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf\";i:500;s:118:\"http://fonts.gstatic.com/s/notosansmedefaidrin/v15/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlT318e5A3rw.ttf\";i:600;s:118:\"http://fonts.gstatic.com/s/notosansmedefaidrin/v15/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlT318e5A3rw.ttf\";i:700;s:118:\"http://fonts.gstatic.com/s/notosansmedefaidrin/v15/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlT318e5A3rw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:844;a:8:{s:6:\"family\";s:22:\"Noto Sans Meetei Mayek\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:12:\"meetei-mayek\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:118:\"http://fonts.gstatic.com/s/notosansmeeteimayek/v7/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TW5PgeFYVa.ttf\";i:200;s:118:\"http://fonts.gstatic.com/s/notosansmeeteimayek/v7/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTW5PgeFYVa.ttf\";i:300;s:118:\"http://fonts.gstatic.com/s/notosansmeeteimayek/v7/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTW5PgeFYVa.ttf\";s:7:\"regular\";s:118:\"http://fonts.gstatic.com/s/notosansmeeteimayek/v7/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf\";i:500;s:118:\"http://fonts.gstatic.com/s/notosansmeeteimayek/v7/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTW5PgeFYVa.ttf\";i:600;s:118:\"http://fonts.gstatic.com/s/notosansmeeteimayek/v7/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTW5PgeFYVa.ttf\";i:700;s:118:\"http://fonts.gstatic.com/s/notosansmeeteimayek/v7/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTW5PgeFYVa.ttf\";i:800;s:118:\"http://fonts.gstatic.com/s/notosansmeeteimayek/v7/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTW5PgeFYVa.ttf\";i:900;s:118:\"http://fonts.gstatic.com/s/notosansmeeteimayek/v7/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTW5PgeFYVa.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:845;a:8:{s:6:\"family\";s:18:\"Noto Sans Meroitic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:8:\"meroitic\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/notosansmeroitic/v14/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:846;a:8:{s:6:\"family\";s:14:\"Noto Sans Miao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:4:\"miao\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/notosansmiao/v13/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:847;a:8:{s:6:\"family\";s:14:\"Noto Sans Modi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:4:\"modi\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/notosansmodi/v13/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:848;a:8:{s:6:\"family\";s:19:\"Noto Sans Mongolian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:9:\"mongolian\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/notosansmongolian/v13/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:849;a:8:{s:6:\"family\";s:14:\"Noto Sans Mono\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:9:{i:100;s:119:\"http://fonts.gstatic.com/s/notosansmono/v14/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49rXVEQQL8Y.ttf\";i:200;s:119:\"http://fonts.gstatic.com/s/notosansmono/v14/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49rXVEQQL8Y.ttf\";i:300;s:119:\"http://fonts.gstatic.com/s/notosansmono/v14/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49rXVEQQL8Y.ttf\";s:7:\"regular\";s:119:\"http://fonts.gstatic.com/s/notosansmono/v14/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49rXVEQQL8Y.ttf\";i:500;s:119:\"http://fonts.gstatic.com/s/notosansmono/v14/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49rXVEQQL8Y.ttf\";i:600;s:119:\"http://fonts.gstatic.com/s/notosansmono/v14/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49rXVEQQL8Y.ttf\";i:700;s:119:\"http://fonts.gstatic.com/s/notosansmono/v14/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49rXVEQQL8Y.ttf\";i:800;s:119:\"http://fonts.gstatic.com/s/notosansmono/v14/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49rXVEQQL8Y.ttf\";i:900;s:119:\"http://fonts.gstatic.com/s/notosansmono/v14/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49rXVEQQL8Y.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:850;a:8:{s:6:\"family\";s:13:\"Noto Sans Mro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:3:\"mro\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/notosansmro/v13/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:851;a:8:{s:6:\"family\";s:17:\"Noto Sans Multani\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"multani\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosansmultani/v13/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:852;a:8:{s:6:\"family\";s:17:\"Noto Sans Myanmar\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:7:\"myanmar\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:9:{i:100;s:94:\"http://fonts.gstatic.com/s/notosansmyanmar/v17/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uEapkAC3AY.ttf\";i:200;s:95:\"http://fonts.gstatic.com/s/notosansmyanmar/v17/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98EwiEwLxR-r.ttf\";i:300;s:95:\"http://fonts.gstatic.com/s/notosansmyanmar/v17/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9MEwiEwLxR-r.ttf\";s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosansmyanmar/v17/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf\";i:500;s:95:\"http://fonts.gstatic.com/s/notosansmyanmar/v17/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cEwiEwLxR-r.ttf\";i:600;s:95:\"http://fonts.gstatic.com/s/notosansmyanmar/v17/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sEwiEwLxR-r.ttf\";i:700;s:95:\"http://fonts.gstatic.com/s/notosansmyanmar/v17/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88EwiEwLxR-r.ttf\";i:800;s:95:\"http://fonts.gstatic.com/s/notosansmyanmar/v17/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8MEwiEwLxR-r.ttf\";i:900;s:95:\"http://fonts.gstatic.com/s/notosansmyanmar/v17/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cEwiEwLxR-r.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:853;a:8:{s:6:\"family\";s:14:\"Noto Sans N Ko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:3:\"nko\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/notosansnko/v15/6NUP8FqDKBaKKjnr6P8v-sxPpvVBVNmme3gf.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:854;a:8:{s:6:\"family\";s:19:\"Noto Sans Nabataean\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:9:\"nabataean\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/notosansnabataean/v13/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:855;a:8:{s:6:\"family\";s:21:\"Noto Sans New Tai Lue\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:11:\"new-tai-lue\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:99:\"http://fonts.gstatic.com/s/notosansnewtailue/v13/H4c5BW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wwY55O4AS32A.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:856;a:8:{s:6:\"family\";s:14:\"Noto Sans Newa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:4:\"newa\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/notosansnewa/v13/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:857;a:8:{s:6:\"family\";s:15:\"Noto Sans Nushu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"nushu\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/notosansnushu/v16/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:858;a:8:{s:6:\"family\";s:15:\"Noto Sans Ogham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"ogham\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/notosansogham/v13/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:859;a:8:{s:6:\"family\";s:18:\"Noto Sans Ol Chiki\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:8:\"ol-chiki\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:110:\"http://fonts.gstatic.com/s/notosansolchiki/v15/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf\";i:500;s:110:\"http://fonts.gstatic.com/s/notosansolchiki/v15/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267I6gVrz5gQ.ttf\";i:600;s:110:\"http://fonts.gstatic.com/s/notosansolchiki/v15/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67I6gVrz5gQ.ttf\";i:700;s:110:\"http://fonts.gstatic.com/s/notosansolchiki/v15/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67I6gVrz5gQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:860;a:8:{s:6:\"family\";s:23:\"Noto Sans Old Hungarian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:13:\"old-hungarian\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/notosansoldhungarian/v13/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:861;a:8:{s:6:\"family\";s:20:\"Noto Sans Old Italic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:10:\"old-italic\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/notosansolditalic/v13/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:862;a:8:{s:6:\"family\";s:27:\"Noto Sans Old North Arabian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:17:\"old-north-arabian\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:113:\"http://fonts.gstatic.com/s/notosansoldnortharabian/v13/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:863;a:8:{s:6:\"family\";s:20:\"Noto Sans Old Permic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:10:\"old-permic\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/notosansoldpermic/v14/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:864;a:8:{s:6:\"family\";s:21:\"Noto Sans Old Persian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:11:\"old-persian\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/notosansoldpersian/v13/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:865;a:8:{s:6:\"family\";s:21:\"Noto Sans Old Sogdian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:11:\"old-sogdian\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/notosansoldsogdian/v13/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:866;a:8:{s:6:\"family\";s:27:\"Noto Sans Old South Arabian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:17:\"old-south-arabian\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:113:\"http://fonts.gstatic.com/s/notosansoldsoutharabian/v13/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:867;a:8:{s:6:\"family\";s:20:\"Noto Sans Old Turkic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:10:\"old-turkic\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/notosansoldturkic/v13/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:868;a:8:{s:6:\"family\";s:15:\"Noto Sans Oriya\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:7:\"regular\";i:2;s:3:\"700\";i:3;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:5:\"oriya\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{i:100;s:89:\"http://fonts.gstatic.com/s/notosansoriya/v14/AYCRpXfzfccDCstK_hrjDyADv5efgKfHRKhxIh_G.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/notosansoriya/v14/AYCTpXfzfccDCstK_hrjDyADv5en5K3DZq1hIg.ttf\";i:700;s:91:\"http://fonts.gstatic.com/s/notosansoriya/v14/AYCWpXfzfccDCstK_hrjDyADv5efWILnboZ9KwbfIQ.ttf\";i:900;s:91:\"http://fonts.gstatic.com/s/notosansoriya/v14/AYCWpXfzfccDCstK_hrjDyADv5efYIDnboZ9KwbfIQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:869;a:8:{s:6:\"family\";s:15:\"Noto Sans Osage\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"osage\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/notosansosage/v13/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:870;a:8:{s:6:\"family\";s:17:\"Noto Sans Osmanya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"osmanya\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosansosmanya/v13/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:871;a:8:{s:6:\"family\";s:22:\"Noto Sans Pahawh Hmong\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:12:\"pahawh-hmong\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:102:\"http://fonts.gstatic.com/s/notosanspahawhhmong/v13/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:872;a:8:{s:6:\"family\";s:19:\"Noto Sans Palmyrene\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:9:\"palmyrene\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/notosanspalmyrene/v13/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:873;a:8:{s:6:\"family\";s:21:\"Noto Sans Pau Cin Hau\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:11:\"pau-cin-hau\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:99:\"http://fonts.gstatic.com/s/notosanspaucinhau/v14/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:874;a:8:{s:6:\"family\";s:18:\"Noto Sans Phags Pa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:8:\"phags-pa\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:93:\"http://fonts.gstatic.com/s/notosansphagspa/v13/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:875;a:8:{s:6:\"family\";s:20:\"Noto Sans Phoenician\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:10:\"phoenician\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/notosansphoenician/v13/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:876;a:8:{s:6:\"family\";s:25:\"Noto Sans Psalter Pahlavi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:15:\"psalter-pahlavi\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:109:\"http://fonts.gstatic.com/s/notosanspsalterpahlavi/v13/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:877;a:8:{s:6:\"family\";s:16:\"Noto Sans Rejang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"rejang\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosansrejang/v13/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:878;a:8:{s:6:\"family\";s:15:\"Noto Sans Runic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"runic\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/notosansrunic/v13/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:879;a:8:{s:6:\"family\";s:12:\"Noto Sans SC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:18:\"chinese-simplified\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:6:{i:100;s:82:\"http://fonts.gstatic.com/s/notosanssc/v24/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf\";i:300;s:84:\"http://fonts.gstatic.com/s/notosanssc/v24/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf\";s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/notosanssc/v24/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf\";i:500;s:84:\"http://fonts.gstatic.com/s/notosanssc/v24/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf\";i:700;s:84:\"http://fonts.gstatic.com/s/notosanssc/v24/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf\";i:900;s:84:\"http://fonts.gstatic.com/s/notosanssc/v24/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:880;a:8:{s:6:\"family\";s:19:\"Noto Sans Samaritan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:9:\"samaritan\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/notosanssamaritan/v13/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:881;a:8:{s:6:\"family\";s:20:\"Noto Sans Saurashtra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:10:\"saurashtra\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/notosanssaurashtra/v13/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:882;a:8:{s:6:\"family\";s:17:\"Noto Sans Sharada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"sharada\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosanssharada/v13/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:883;a:8:{s:6:\"family\";s:17:\"Noto Sans Shavian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"shavian\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosansshavian/v13/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:884;a:8:{s:6:\"family\";s:17:\"Noto Sans Siddham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"siddham\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosanssiddham/v13/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:885;a:8:{s:6:\"family\";s:17:\"Noto Sans Sinhala\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:7:\"sinhala\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:126:\"http://fonts.gstatic.com/s/notosanssinhala/v21/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5lgLpJwbQRM.ttf\";i:200;s:126:\"http://fonts.gstatic.com/s/notosanssinhala/v21/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5lgLpJwbQRM.ttf\";i:300;s:126:\"http://fonts.gstatic.com/s/notosanssinhala/v21/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5lgLpJwbQRM.ttf\";s:7:\"regular\";s:126:\"http://fonts.gstatic.com/s/notosanssinhala/v21/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf\";i:500;s:126:\"http://fonts.gstatic.com/s/notosanssinhala/v21/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5lgLpJwbQRM.ttf\";i:600;s:126:\"http://fonts.gstatic.com/s/notosanssinhala/v21/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5lgLpJwbQRM.ttf\";i:700;s:126:\"http://fonts.gstatic.com/s/notosanssinhala/v21/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5lgLpJwbQRM.ttf\";i:800;s:126:\"http://fonts.gstatic.com/s/notosanssinhala/v21/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5lgLpJwbQRM.ttf\";i:900;s:126:\"http://fonts.gstatic.com/s/notosanssinhala/v21/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5lgLpJwbQRM.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:886;a:8:{s:6:\"family\";s:17:\"Noto Sans Sogdian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"sogdian\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosanssogdian/v13/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:887;a:8:{s:6:\"family\";s:22:\"Noto Sans Sora Sompeng\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:12:\"sora-sompeng\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:119:\"http://fonts.gstatic.com/s/notosanssorasompeng/v15/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf\";i:500;s:119:\"http://fonts.gstatic.com/s/notosanssorasompeng/v15/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DpZXJQd4Mu.ttf\";i:600;s:119:\"http://fonts.gstatic.com/s/notosanssorasompeng/v15/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDpZXJQd4Mu.ttf\";i:700;s:119:\"http://fonts.gstatic.com/s/notosanssorasompeng/v15/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDpZXJQd4Mu.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:888;a:8:{s:6:\"family\";s:17:\"Noto Sans Soyombo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"soyombo\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosanssoyombo/v13/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:889;a:8:{s:6:\"family\";s:19:\"Noto Sans Sundanese\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:9:\"sundanese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:113:\"http://fonts.gstatic.com/s/notosanssundanese/v15/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf\";i:500;s:113:\"http://fonts.gstatic.com/s/notosanssundanese/v15/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHCizv7fQES.ttf\";i:600;s:113:\"http://fonts.gstatic.com/s/notosanssundanese/v15/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HCizv7fQES.ttf\";i:700;s:113:\"http://fonts.gstatic.com/s/notosanssundanese/v15/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HCizv7fQES.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:890;a:8:{s:6:\"family\";s:22:\"Noto Sans Syloti Nagri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:12:\"syloti-nagri\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-09\";s:5:\"files\";a:1:{s:7:\"regular\";s:102:\"http://fonts.gstatic.com/s/notosanssylotinagri/v13/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:891;a:8:{s:6:\"family\";s:17:\"Noto Sans Symbols\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:7:\"symbols\";}s:7:\"version\";s:3:\"v30\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:109:\"http://fonts.gstatic.com/s/notosanssymbols/v30/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gavVFRkzrbQ.ttf\";i:200;s:109:\"http://fonts.gstatic.com/s/notosanssymbols/v30/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gavVFRkzrbQ.ttf\";i:300;s:109:\"http://fonts.gstatic.com/s/notosanssymbols/v30/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gavVFRkzrbQ.ttf\";s:7:\"regular\";s:109:\"http://fonts.gstatic.com/s/notosanssymbols/v30/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf\";i:500;s:109:\"http://fonts.gstatic.com/s/notosanssymbols/v30/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gavVFRkzrbQ.ttf\";i:600;s:109:\"http://fonts.gstatic.com/s/notosanssymbols/v30/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggavVFRkzrbQ.ttf\";i:700;s:109:\"http://fonts.gstatic.com/s/notosanssymbols/v30/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggavVFRkzrbQ.ttf\";i:800;s:109:\"http://fonts.gstatic.com/s/notosanssymbols/v30/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_QggavVFRkzrbQ.ttf\";i:900;s:109:\"http://fonts.gstatic.com/s/notosanssymbols/v30/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1AggavVFRkzrbQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:892;a:8:{s:6:\"family\";s:19:\"Noto Sans Symbols 2\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"symbols\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:95:\"http://fonts.gstatic.com/s/notosanssymbols2/v13/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:893;a:8:{s:6:\"family\";s:16:\"Noto Sans Syriac\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:7:\"regular\";i:2;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:6:\"syriac\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:3:{i:100;s:92:\"http://fonts.gstatic.com/s/notosanssyriac/v13/KtkwAKuMeZjqPnXgyqribqzQqgW0D-e9XaRE7sX5Cg.ttf\";s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosanssyriac/v13/Ktk2AKuMeZjqPnXgyqribqzQqgW0N4O3WYZB_sU.ttf\";i:900;s:93:\"http://fonts.gstatic.com/s/notosanssyriac/v13/KtkxAKuMeZjqPnXgyqribqzQqgW0DweafY5q4szgE-Q.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:894;a:8:{s:6:\"family\";s:12:\"Noto Sans TC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:19:\"chinese-traditional\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:6:{i:100;s:82:\"http://fonts.gstatic.com/s/notosanstc/v24/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf\";i:300;s:84:\"http://fonts.gstatic.com/s/notosanstc/v24/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf\";s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/notosanstc/v24/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf\";i:500;s:84:\"http://fonts.gstatic.com/s/notosanstc/v24/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf\";i:700;s:84:\"http://fonts.gstatic.com/s/notosanstc/v24/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf\";i:900;s:84:\"http://fonts.gstatic.com/s/notosanstc/v24/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:895;a:8:{s:6:\"family\";s:17:\"Noto Sans Tagalog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"tagalog\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosanstagalog/v13/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:896;a:8:{s:6:\"family\";s:18:\"Noto Sans Tagbanwa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:8:\"tagbanwa\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/notosanstagbanwa/v13/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:897;a:8:{s:6:\"family\";s:16:\"Noto Sans Tai Le\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"tai-le\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/notosanstaile/v13/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:898;a:8:{s:6:\"family\";s:18:\"Noto Sans Tai Tham\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:8:\"tai-tham\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:110:\"http://fonts.gstatic.com/s/notosanstaitham/v15/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf\";i:500;s:110:\"http://fonts.gstatic.com/s/notosanstaitham/v15/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPgquyaRGKMw.ttf\";i:600;s:110:\"http://fonts.gstatic.com/s/notosanstaitham/v15/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPgquyaRGKMw.ttf\";i:700;s:110:\"http://fonts.gstatic.com/s/notosanstaitham/v15/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPgquyaRGKMw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:899;a:8:{s:6:\"family\";s:18:\"Noto Sans Tai Viet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:8:\"tai-viet\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:93:\"http://fonts.gstatic.com/s/notosanstaiviet/v13/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:900;a:8:{s:6:\"family\";s:15:\"Noto Sans Takri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"takri\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/notosanstakri/v13/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:901;a:8:{s:6:\"family\";s:15:\"Noto Sans Tamil\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:5:\"tamil\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:121:\"http://fonts.gstatic.com/s/notosanstamil/v14/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0RqKDt_EvT.ttf\";i:200;s:121:\"http://fonts.gstatic.com/s/notosanstamil/v14/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70RqKDt_EvT.ttf\";i:300;s:121:\"http://fonts.gstatic.com/s/notosanstamil/v14/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70RqKDt_EvT.ttf\";s:7:\"regular\";s:121:\"http://fonts.gstatic.com/s/notosanstamil/v14/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf\";i:500;s:121:\"http://fonts.gstatic.com/s/notosanstamil/v14/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70RqKDt_EvT.ttf\";i:600;s:121:\"http://fonts.gstatic.com/s/notosanstamil/v14/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0RqKDt_EvT.ttf\";i:700;s:121:\"http://fonts.gstatic.com/s/notosanstamil/v14/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0RqKDt_EvT.ttf\";i:800;s:121:\"http://fonts.gstatic.com/s/notosanstamil/v14/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0RqKDt_EvT.ttf\";i:900;s:121:\"http://fonts.gstatic.com/s/notosanstamil/v14/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0RqKDt_EvT.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:902;a:8:{s:6:\"family\";s:26:\"Noto Sans Tamil Supplement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:16:\"tamil-supplement\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:111:\"http://fonts.gstatic.com/s/notosanstamilsupplement/v17/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:903;a:8:{s:6:\"family\";s:16:\"Noto Sans Telugu\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:6:\"telugu\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:9:{i:100;s:124:\"http://fonts.gstatic.com/s/notosanstelugu/v12/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqQUbf-3v37w.ttf\";i:200;s:124:\"http://fonts.gstatic.com/s/notosanstelugu/v12/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqQUbf-3v37w.ttf\";i:300;s:124:\"http://fonts.gstatic.com/s/notosanstelugu/v12/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqQUbf-3v37w.ttf\";s:7:\"regular\";s:124:\"http://fonts.gstatic.com/s/notosanstelugu/v12/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf\";i:500;s:124:\"http://fonts.gstatic.com/s/notosanstelugu/v12/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqQUbf-3v37w.ttf\";i:600;s:124:\"http://fonts.gstatic.com/s/notosanstelugu/v12/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqQUbf-3v37w.ttf\";i:700;s:124:\"http://fonts.gstatic.com/s/notosanstelugu/v12/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqQUbf-3v37w.ttf\";i:800;s:124:\"http://fonts.gstatic.com/s/notosanstelugu/v12/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqQUbf-3v37w.ttf\";i:900;s:124:\"http://fonts.gstatic.com/s/notosanstelugu/v12/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqQUbf-3v37w.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:904;a:8:{s:6:\"family\";s:16:\"Noto Sans Thaana\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:6:\"thaana\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:106:\"http://fonts.gstatic.com/s/notosansthaana/v14/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLhnu4-tbNu.ttf\";i:200;s:106:\"http://fonts.gstatic.com/s/notosansthaana/v14/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLhnu4-tbNu.ttf\";i:300;s:106:\"http://fonts.gstatic.com/s/notosansthaana/v14/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLhnu4-tbNu.ttf\";s:7:\"regular\";s:106:\"http://fonts.gstatic.com/s/notosansthaana/v14/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf\";i:500;s:106:\"http://fonts.gstatic.com/s/notosansthaana/v14/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLhnu4-tbNu.ttf\";i:600;s:106:\"http://fonts.gstatic.com/s/notosansthaana/v14/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLhnu4-tbNu.ttf\";i:700;s:106:\"http://fonts.gstatic.com/s/notosansthaana/v14/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLhnu4-tbNu.ttf\";i:800;s:106:\"http://fonts.gstatic.com/s/notosansthaana/v14/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLhnu4-tbNu.ttf\";i:900;s:106:\"http://fonts.gstatic.com/s/notosansthaana/v14/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLhnu4-tbNu.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:905;a:8:{s:6:\"family\";s:14:\"Noto Sans Thai\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:4:\"thai\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:119:\"http://fonts.gstatic.com/s/notosansthai/v14/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzF-QRvzzXg.ttf\";i:200;s:119:\"http://fonts.gstatic.com/s/notosansthai/v14/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzF-QRvzzXg.ttf\";i:300;s:119:\"http://fonts.gstatic.com/s/notosansthai/v14/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzF-QRvzzXg.ttf\";s:7:\"regular\";s:119:\"http://fonts.gstatic.com/s/notosansthai/v14/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf\";i:500;s:119:\"http://fonts.gstatic.com/s/notosansthai/v14/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzF-QRvzzXg.ttf\";i:600;s:119:\"http://fonts.gstatic.com/s/notosansthai/v14/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzF-QRvzzXg.ttf\";i:700;s:119:\"http://fonts.gstatic.com/s/notosansthai/v14/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzF-QRvzzXg.ttf\";i:800;s:119:\"http://fonts.gstatic.com/s/notosansthai/v14/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzF-QRvzzXg.ttf\";i:900;s:119:\"http://fonts.gstatic.com/s/notosansthai/v14/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzF-QRvzzXg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:906;a:8:{s:6:\"family\";s:21:\"Noto Sans Thai Looped\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:4:\"thai\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:9:{i:100;s:102:\"http://fonts.gstatic.com/s/notosansthailooped/v10/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AYeCT_Wfd1.ttf\";i:200;s:104:\"http://fonts.gstatic.com/s/notosansthailooped/v10/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4UgrzUO5sKA.ttf\";i:300;s:104:\"http://fonts.gstatic.com/s/notosansthailooped/v10/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4UgrzUO5sKA.ttf\";s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/notosansthailooped/v10/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf\";i:500;s:104:\"http://fonts.gstatic.com/s/notosansthailooped/v10/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4UgrzUO5sKA.ttf\";i:600;s:104:\"http://fonts.gstatic.com/s/notosansthailooped/v10/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4UgrzUO5sKA.ttf\";i:700;s:104:\"http://fonts.gstatic.com/s/notosansthailooped/v10/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4UgrzUO5sKA.ttf\";i:800;s:104:\"http://fonts.gstatic.com/s/notosansthailooped/v10/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4UgrzUO5sKA.ttf\";i:900;s:104:\"http://fonts.gstatic.com/s/notosansthailooped/v10/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4UgrzUO5sKA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:907;a:8:{s:6:\"family\";s:18:\"Noto Sans Tifinagh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:8:\"tifinagh\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/notosanstifinagh/v13/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:908;a:8:{s:6:\"family\";s:17:\"Noto Sans Tirhuta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"tirhuta\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notosanstirhuta/v13/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:909;a:8:{s:6:\"family\";s:18:\"Noto Sans Ugaritic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:8:\"ugaritic\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/notosansugaritic/v13/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:910;a:8:{s:6:\"family\";s:13:\"Noto Sans Vai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:3:\"vai\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/notosansvai/v13/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:911;a:8:{s:6:\"family\";s:16:\"Noto Sans Wancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"wancho\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notosanswancho/v13/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:912;a:8:{s:6:\"family\";s:21:\"Noto Sans Warang Citi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:11:\"warang-citi\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/notosanswarangciti/v13/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:913;a:8:{s:6:\"family\";s:12:\"Noto Sans Yi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:2:\"yi\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/notosansyi/v13/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:914;a:8:{s:6:\"family\";s:26:\"Noto Sans Zanabazar Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:16:\"zanabazar-square\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:111:\"http://fonts.gstatic.com/s/notosanszanabazarsquare/v13/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:915;a:8:{s:6:\"family\";s:10:\"Noto Serif\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/notoserif/v20/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf\";s:6:\"italic\";s:79:\"http://fonts.gstatic.com/s/notoserif/v20/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/notoserif/v20/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf\";s:9:\"700italic\";s:83:\"http://fonts.gstatic.com/s/notoserif/v20/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:916;a:8:{s:6:\"family\";s:15:\"Noto Serif Ahom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:4:\"ahom\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/notoserifahom/v13/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:917;a:8:{s:6:\"family\";s:19:\"Noto Serif Armenian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:8:\"armenian\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:9:{i:100;s:131:\"http://fonts.gstatic.com/s/notoserifarmenian/v12/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8ObxvXagGdkbg.ttf\";i:200;s:131:\"http://fonts.gstatic.com/s/notoserifarmenian/v12/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8KbxvXagGdkbg.ttf\";i:300;s:131:\"http://fonts.gstatic.com/s/notoserifarmenian/v12/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbxvXagGdkbg.ttf\";s:7:\"regular\";s:131:\"http://fonts.gstatic.com/s/notoserifarmenian/v12/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8KbxvXagGdkbg.ttf\";i:500;s:131:\"http://fonts.gstatic.com/s/notoserifarmenian/v12/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbxvXagGdkbg.ttf\";i:600;s:131:\"http://fonts.gstatic.com/s/notoserifarmenian/v12/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbxvXagGdkbg.ttf\";i:700;s:131:\"http://fonts.gstatic.com/s/notoserifarmenian/v12/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbxvXagGdkbg.ttf\";i:800;s:131:\"http://fonts.gstatic.com/s/notoserifarmenian/v12/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8WbxvXagGdkbg.ttf\";i:900;s:131:\"http://fonts.gstatic.com/s/notoserifarmenian/v12/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbxvXagGdkbg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:918;a:8:{s:6:\"family\";s:19:\"Noto Serif Balinese\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:8:\"balinese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/notoserifbalinese/v13/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:919;a:8:{s:6:\"family\";s:18:\"Noto Serif Bengali\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:7:\"bengali\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:128:\"http://fonts.gstatic.com/s/notoserifbengali/v13/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qn4LjQH8yD.ttf\";i:200;s:128:\"http://fonts.gstatic.com/s/notoserifbengali/v13/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqn4LjQH8yD.ttf\";i:300;s:128:\"http://fonts.gstatic.com/s/notoserifbengali/v13/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqn4LjQH8yD.ttf\";s:7:\"regular\";s:128:\"http://fonts.gstatic.com/s/notoserifbengali/v13/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqn4LjQH8yD.ttf\";i:500;s:128:\"http://fonts.gstatic.com/s/notoserifbengali/v13/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqn4LjQH8yD.ttf\";i:600;s:128:\"http://fonts.gstatic.com/s/notoserifbengali/v13/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqn4LjQH8yD.ttf\";i:700;s:128:\"http://fonts.gstatic.com/s/notoserifbengali/v13/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqn4LjQH8yD.ttf\";i:800;s:128:\"http://fonts.gstatic.com/s/notoserifbengali/v13/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqn4LjQH8yD.ttf\";i:900;s:128:\"http://fonts.gstatic.com/s/notoserifbengali/v13/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqn4LjQH8yD.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:920;a:8:{s:6:\"family\";s:21:\"Noto Serif Devanagari\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:10:\"devanagari\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:135:\"http://fonts.gstatic.com/s/notoserifdevanagari/v13/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-HMUe1u_dv.ttf\";i:200;s:135:\"http://fonts.gstatic.com/s/notoserifdevanagari/v13/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-HMUe1u_dv.ttf\";i:300;s:135:\"http://fonts.gstatic.com/s/notoserifdevanagari/v13/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-HMUe1u_dv.ttf\";s:7:\"regular\";s:135:\"http://fonts.gstatic.com/s/notoserifdevanagari/v13/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-HMUe1u_dv.ttf\";i:500;s:135:\"http://fonts.gstatic.com/s/notoserifdevanagari/v13/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-HMUe1u_dv.ttf\";i:600;s:135:\"http://fonts.gstatic.com/s/notoserifdevanagari/v13/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-HMUe1u_dv.ttf\";i:700;s:135:\"http://fonts.gstatic.com/s/notoserifdevanagari/v13/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-HMUe1u_dv.ttf\";i:800;s:135:\"http://fonts.gstatic.com/s/notoserifdevanagari/v13/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-HMUe1u_dv.ttf\";i:900;s:135:\"http://fonts.gstatic.com/s/notoserifdevanagari/v13/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-HMUe1u_dv.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:921;a:8:{s:6:\"family\";s:18:\"Noto Serif Display\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:18:{i:100;s:128:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gKaDU9hvzC.ttf\";i:200;s:128:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgKaDU9hvzC.ttf\";i:300;s:128:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgKaDU9hvzC.ttf\";s:7:\"regular\";s:128:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgKaDU9hvzC.ttf\";i:500;s:128:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgKaDU9hvzC.ttf\";i:600;s:128:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgKaDU9hvzC.ttf\";i:700;s:128:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgKaDU9hvzC.ttf\";i:800;s:128:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgKaDU9hvzC.ttf\";i:900;s:128:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgKaDU9hvzC.ttf\";s:9:\"100italic\";s:131:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjEfg-zCmf4.ttf\";s:9:\"200italic\";s:131:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjEfg-zCmf4.ttf\";s:9:\"300italic\";s:131:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjEfg-zCmf4.ttf\";s:6:\"italic\";s:131:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjEfg-zCmf4.ttf\";s:9:\"500italic\";s:131:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjEfg-zCmf4.ttf\";s:9:\"600italic\";s:131:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjEfg-zCmf4.ttf\";s:9:\"700italic\";s:131:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjEfg-zCmf4.ttf\";s:9:\"800italic\";s:131:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjEfg-zCmf4.ttf\";s:9:\"900italic\";s:131:\"http://fonts.gstatic.com/s/notoserifdisplay/v12/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjEfg-zCmf4.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:922;a:8:{s:6:\"family\";s:16:\"Noto Serif Dogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"dogra\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/notoserifdogra/v13/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:923;a:8:{s:6:\"family\";s:19:\"Noto Serif Ethiopic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:8:\"ethiopic\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:9:{i:100;s:131:\"http://fonts.gstatic.com/s/notoserifethiopic/v12/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjkaO9UVLyiw.ttf\";i:200;s:131:\"http://fonts.gstatic.com/s/notoserifethiopic/v12/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjkaO9UVLyiw.ttf\";i:300;s:131:\"http://fonts.gstatic.com/s/notoserifethiopic/v12/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjkaO9UVLyiw.ttf\";s:7:\"regular\";s:131:\"http://fonts.gstatic.com/s/notoserifethiopic/v12/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjkaO9UVLyiw.ttf\";i:500;s:131:\"http://fonts.gstatic.com/s/notoserifethiopic/v12/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjkaO9UVLyiw.ttf\";i:600;s:131:\"http://fonts.gstatic.com/s/notoserifethiopic/v12/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjkaO9UVLyiw.ttf\";i:700;s:131:\"http://fonts.gstatic.com/s/notoserifethiopic/v12/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjkaO9UVLyiw.ttf\";i:800;s:131:\"http://fonts.gstatic.com/s/notoserifethiopic/v12/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjkaO9UVLyiw.ttf\";i:900;s:131:\"http://fonts.gstatic.com/s/notoserifethiopic/v12/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjkaO9UVLyiw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:924;a:8:{s:6:\"family\";s:19:\"Noto Serif Georgian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:8:\"georgian\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:9:{i:100;s:131:\"http://fonts.gstatic.com/s/notoserifgeorgian/v12/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfdzTw-FgZxQ.ttf\";i:200;s:131:\"http://fonts.gstatic.com/s/notoserifgeorgian/v12/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofdzTw-FgZxQ.ttf\";i:300;s:131:\"http://fonts.gstatic.com/s/notoserifgeorgian/v12/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofdzTw-FgZxQ.ttf\";s:7:\"regular\";s:131:\"http://fonts.gstatic.com/s/notoserifgeorgian/v12/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofdzTw-FgZxQ.ttf\";i:500;s:131:\"http://fonts.gstatic.com/s/notoserifgeorgian/v12/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofdzTw-FgZxQ.ttf\";i:600;s:131:\"http://fonts.gstatic.com/s/notoserifgeorgian/v12/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fdzTw-FgZxQ.ttf\";i:700;s:131:\"http://fonts.gstatic.com/s/notoserifgeorgian/v12/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fdzTw-FgZxQ.ttf\";i:800;s:131:\"http://fonts.gstatic.com/s/notoserifgeorgian/v12/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fdzTw-FgZxQ.ttf\";i:900;s:131:\"http://fonts.gstatic.com/s/notoserifgeorgian/v12/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fdzTw-FgZxQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:925;a:8:{s:6:\"family\";s:18:\"Noto Serif Grantha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:7:\"grantha\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/notoserifgrantha/v13/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:926;a:8:{s:6:\"family\";s:19:\"Noto Serif Gujarati\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:8:\"gujarati\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:113:\"http://fonts.gstatic.com/s/notoserifgujarati/v15/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzuM1Kf-OJu.ttf\";i:200;s:113:\"http://fonts.gstatic.com/s/notoserifgujarati/v15/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzuM1Kf-OJu.ttf\";i:300;s:113:\"http://fonts.gstatic.com/s/notoserifgujarati/v15/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzuM1Kf-OJu.ttf\";s:7:\"regular\";s:113:\"http://fonts.gstatic.com/s/notoserifgujarati/v15/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzuM1Kf-OJu.ttf\";i:500;s:113:\"http://fonts.gstatic.com/s/notoserifgujarati/v15/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzuM1Kf-OJu.ttf\";i:600;s:113:\"http://fonts.gstatic.com/s/notoserifgujarati/v15/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zuM1Kf-OJu.ttf\";i:700;s:113:\"http://fonts.gstatic.com/s/notoserifgujarati/v15/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zuM1Kf-OJu.ttf\";i:800;s:113:\"http://fonts.gstatic.com/s/notoserifgujarati/v15/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zuM1Kf-OJu.ttf\";i:900;s:113:\"http://fonts.gstatic.com/s/notoserifgujarati/v15/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zuM1Kf-OJu.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:927;a:8:{s:6:\"family\";s:19:\"Noto Serif Gurmukhi\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:8:\"gurmukhi\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:113:\"http://fonts.gstatic.com/s/notoserifgurmukhi/v11/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTNmqVU7y6l.ttf\";i:200;s:113:\"http://fonts.gstatic.com/s/notoserifgurmukhi/v11/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTNmqVU7y6l.ttf\";i:300;s:113:\"http://fonts.gstatic.com/s/notoserifgurmukhi/v11/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTNmqVU7y6l.ttf\";s:7:\"regular\";s:113:\"http://fonts.gstatic.com/s/notoserifgurmukhi/v11/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTNmqVU7y6l.ttf\";i:500;s:113:\"http://fonts.gstatic.com/s/notoserifgurmukhi/v11/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTNmqVU7y6l.ttf\";i:600;s:113:\"http://fonts.gstatic.com/s/notoserifgurmukhi/v11/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTNmqVU7y6l.ttf\";i:700;s:113:\"http://fonts.gstatic.com/s/notoserifgurmukhi/v11/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTNmqVU7y6l.ttf\";i:800;s:113:\"http://fonts.gstatic.com/s/notoserifgurmukhi/v11/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTNmqVU7y6l.ttf\";i:900;s:113:\"http://fonts.gstatic.com/s/notoserifgurmukhi/v11/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTNmqVU7y6l.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:928;a:8:{s:6:\"family\";s:17:\"Noto Serif Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:6:\"hebrew\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:126:\"http://fonts.gstatic.com/s/notoserifhebrew/v13/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAG8_vlQxz24.ttf\";i:200;s:126:\"http://fonts.gstatic.com/s/notoserifhebrew/v13/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAG8_vlQxz24.ttf\";i:300;s:126:\"http://fonts.gstatic.com/s/notoserifhebrew/v13/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAG8_vlQxz24.ttf\";s:7:\"regular\";s:126:\"http://fonts.gstatic.com/s/notoserifhebrew/v13/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAG8_vlQxz24.ttf\";i:500;s:126:\"http://fonts.gstatic.com/s/notoserifhebrew/v13/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAG8_vlQxz24.ttf\";i:600;s:126:\"http://fonts.gstatic.com/s/notoserifhebrew/v13/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAG8_vlQxz24.ttf\";i:700;s:126:\"http://fonts.gstatic.com/s/notoserifhebrew/v13/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAG8_vlQxz24.ttf\";i:800;s:126:\"http://fonts.gstatic.com/s/notoserifhebrew/v13/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAG8_vlQxz24.ttf\";i:900;s:126:\"http://fonts.gstatic.com/s/notoserifhebrew/v13/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAG8_vlQxz24.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:929;a:8:{s:6:\"family\";s:13:\"Noto Serif JP\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:7:{i:200;s:86:\"http://fonts.gstatic.com/s/notoserifjp/v19/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf\";i:300;s:86:\"http://fonts.gstatic.com/s/notoserifjp/v19/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf\";s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/notoserifjp/v19/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf\";i:500;s:86:\"http://fonts.gstatic.com/s/notoserifjp/v19/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf\";i:600;s:86:\"http://fonts.gstatic.com/s/notoserifjp/v19/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf\";i:700;s:86:\"http://fonts.gstatic.com/s/notoserifjp/v19/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf\";i:900;s:86:\"http://fonts.gstatic.com/s/notoserifjp/v19/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:930;a:8:{s:6:\"family\";s:13:\"Noto Serif KR\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:7:{i:200;s:86:\"http://fonts.gstatic.com/s/notoserifkr/v17/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf\";i:300;s:86:\"http://fonts.gstatic.com/s/notoserifkr/v17/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf\";s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/notoserifkr/v17/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf\";i:500;s:86:\"http://fonts.gstatic.com/s/notoserifkr/v17/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf\";i:600;s:86:\"http://fonts.gstatic.com/s/notoserifkr/v17/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf\";i:700;s:86:\"http://fonts.gstatic.com/s/notoserifkr/v17/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf\";i:900;s:86:\"http://fonts.gstatic.com/s/notoserifkr/v17/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:931;a:8:{s:6:\"family\";s:18:\"Noto Serif Kannada\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:7:\"kannada\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:111:\"http://fonts.gstatic.com/s/notoserifkannada/v15/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceRJ71svgcI.ttf\";i:200;s:111:\"http://fonts.gstatic.com/s/notoserifkannada/v15/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceRJ71svgcI.ttf\";i:300;s:111:\"http://fonts.gstatic.com/s/notoserifkannada/v15/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceRJ71svgcI.ttf\";s:7:\"regular\";s:111:\"http://fonts.gstatic.com/s/notoserifkannada/v15/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceRJ71svgcI.ttf\";i:500;s:111:\"http://fonts.gstatic.com/s/notoserifkannada/v15/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceRJ71svgcI.ttf\";i:600;s:111:\"http://fonts.gstatic.com/s/notoserifkannada/v15/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceRJ71svgcI.ttf\";i:700;s:111:\"http://fonts.gstatic.com/s/notoserifkannada/v15/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceRJ71svgcI.ttf\";i:800;s:111:\"http://fonts.gstatic.com/s/notoserifkannada/v15/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceRJ71svgcI.ttf\";i:900;s:111:\"http://fonts.gstatic.com/s/notoserifkannada/v15/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceRJ71svgcI.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:932;a:8:{s:6:\"family\";s:16:\"Noto Serif Khmer\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:5:\"khmer\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:9:{i:100;s:124:\"http://fonts.gstatic.com/s/notoserifkhmer/v12/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wXEZK9Xo4xg.ttf\";i:200;s:124:\"http://fonts.gstatic.com/s/notoserifkhmer/v12/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wXEZK9Xo4xg.ttf\";i:300;s:124:\"http://fonts.gstatic.com/s/notoserifkhmer/v12/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wXEZK9Xo4xg.ttf\";s:7:\"regular\";s:124:\"http://fonts.gstatic.com/s/notoserifkhmer/v12/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wXEZK9Xo4xg.ttf\";i:500;s:124:\"http://fonts.gstatic.com/s/notoserifkhmer/v12/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wXEZK9Xo4xg.ttf\";i:600;s:124:\"http://fonts.gstatic.com/s/notoserifkhmer/v12/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwXEZK9Xo4xg.ttf\";i:700;s:124:\"http://fonts.gstatic.com/s/notoserifkhmer/v12/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwXEZK9Xo4xg.ttf\";i:800;s:124:\"http://fonts.gstatic.com/s/notoserifkhmer/v12/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwXEZK9Xo4xg.ttf\";i:900;s:124:\"http://fonts.gstatic.com/s/notoserifkhmer/v12/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwXEZK9Xo4xg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:933;a:8:{s:6:\"family\";s:14:\"Noto Serif Lao\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:3:\"lao\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:9:{i:100;s:119:\"http://fonts.gstatic.com/s/notoseriflao/v12/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvOjlmyhHHQ.ttf\";i:200;s:119:\"http://fonts.gstatic.com/s/notoseriflao/v12/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvOjlmyhHHQ.ttf\";i:300;s:119:\"http://fonts.gstatic.com/s/notoseriflao/v12/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvOjlmyhHHQ.ttf\";s:7:\"regular\";s:119:\"http://fonts.gstatic.com/s/notoseriflao/v12/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvOjlmyhHHQ.ttf\";i:500;s:119:\"http://fonts.gstatic.com/s/notoseriflao/v12/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvOjlmyhHHQ.ttf\";i:600;s:119:\"http://fonts.gstatic.com/s/notoseriflao/v12/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvOjlmyhHHQ.ttf\";i:700;s:119:\"http://fonts.gstatic.com/s/notoseriflao/v12/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvOjlmyhHHQ.ttf\";i:800;s:119:\"http://fonts.gstatic.com/s/notoseriflao/v12/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvOjlmyhHHQ.ttf\";i:900;s:119:\"http://fonts.gstatic.com/s/notoseriflao/v12/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvOjlmyhHHQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:934;a:8:{s:6:\"family\";s:20:\"Noto Serif Malayalam\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:9:\"malayalam\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:116:\"http://fonts.gstatic.com/s/notoserifmalayalam/v14/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fnVwHpQVySg.ttf\";i:200;s:116:\"http://fonts.gstatic.com/s/notoserifmalayalam/v14/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfnVwHpQVySg.ttf\";i:300;s:116:\"http://fonts.gstatic.com/s/notoserifmalayalam/v14/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfnVwHpQVySg.ttf\";s:7:\"regular\";s:116:\"http://fonts.gstatic.com/s/notoserifmalayalam/v14/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfnVwHpQVySg.ttf\";i:500;s:116:\"http://fonts.gstatic.com/s/notoserifmalayalam/v14/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfnVwHpQVySg.ttf\";i:600;s:116:\"http://fonts.gstatic.com/s/notoserifmalayalam/v14/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfnVwHpQVySg.ttf\";i:700;s:116:\"http://fonts.gstatic.com/s/notoserifmalayalam/v14/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfnVwHpQVySg.ttf\";i:800;s:116:\"http://fonts.gstatic.com/s/notoserifmalayalam/v14/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfnVwHpQVySg.ttf\";i:900;s:116:\"http://fonts.gstatic.com/s/notoserifmalayalam/v14/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfnVwHpQVySg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:935;a:8:{s:6:\"family\";s:18:\"Noto Serif Myanmar\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:7:\"myanmar\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:9:{i:100;s:96:\"http://fonts.gstatic.com/s/notoserifmyanmar/v10/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDsU9X6RPzQ.ttf\";i:200;s:98:\"http://fonts.gstatic.com/s/notoserifmyanmar/v10/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMefv2TeXJng.ttf\";i:300;s:98:\"http://fonts.gstatic.com/s/notoserifmyanmar/v10/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMefv2TeXJng.ttf\";s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/notoserifmyanmar/v10/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf\";i:500;s:98:\"http://fonts.gstatic.com/s/notoserifmyanmar/v10/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMefv2TeXJng.ttf\";i:600;s:98:\"http://fonts.gstatic.com/s/notoserifmyanmar/v10/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMefv2TeXJng.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/notoserifmyanmar/v10/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMefv2TeXJng.ttf\";i:800;s:98:\"http://fonts.gstatic.com/s/notoserifmyanmar/v10/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMefv2TeXJng.ttf\";i:900;s:98:\"http://fonts.gstatic.com/s/notoserifmyanmar/v10/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMefv2TeXJng.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:936;a:8:{s:6:\"family\";s:33:\"Noto Serif Nyiakeng Puachue Hmong\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:22:\"nyiakeng-puachue-hmong\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:144:\"http://fonts.gstatic.com/s/notoserifnyiakengpuachuehmong/v14/5h1jibMoOmIC3YuzLC-NZyLDZC8iwh-MTC8ggAjEhePFNRVcneAFp44kcYMUkNqVKhqPDFvbZkrZmb0.ttf\";i:500;s:144:\"http://fonts.gstatic.com/s/notoserifnyiakengpuachuehmong/v14/5h1jibMoOmIC3YuzLC-NZyLDZC8iwh-MTC8ggAjEhePFNRVcneAFp44kcYMUkNqVKiiPDFvbZkrZmb0.ttf\";i:600;s:144:\"http://fonts.gstatic.com/s/notoserifnyiakengpuachuehmong/v14/5h1jibMoOmIC3YuzLC-NZyLDZC8iwh-MTC8ggAjEhePFNRVcneAFp44kcYMUkNqVKsSIDFvbZkrZmb0.ttf\";i:700;s:144:\"http://fonts.gstatic.com/s/notoserifnyiakengpuachuehmong/v14/5h1jibMoOmIC3YuzLC-NZyLDZC8iwh-MTC8ggAjEhePFNRVcneAFp44kcYMUkNqVKv2IDFvbZkrZmb0.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:937;a:8:{s:6:\"family\";s:13:\"Noto Serif SC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:18:\"chinese-simplified\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:7:{i:200;s:86:\"http://fonts.gstatic.com/s/notoserifsc/v19/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf\";i:300;s:86:\"http://fonts.gstatic.com/s/notoserifsc/v19/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf\";s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/notoserifsc/v19/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf\";i:500;s:86:\"http://fonts.gstatic.com/s/notoserifsc/v19/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf\";i:600;s:86:\"http://fonts.gstatic.com/s/notoserifsc/v19/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf\";i:700;s:86:\"http://fonts.gstatic.com/s/notoserifsc/v19/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf\";i:900;s:86:\"http://fonts.gstatic.com/s/notoserifsc/v19/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:938;a:8:{s:6:\"family\";s:18:\"Noto Serif Sinhala\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:7:\"sinhala\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:128:\"http://fonts.gstatic.com/s/notoserifsinhala/v13/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMsxaLRn3W-.ttf\";i:200;s:128:\"http://fonts.gstatic.com/s/notoserifsinhala/v13/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MsxaLRn3W-.ttf\";i:300;s:128:\"http://fonts.gstatic.com/s/notoserifsinhala/v13/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MsxaLRn3W-.ttf\";s:7:\"regular\";s:128:\"http://fonts.gstatic.com/s/notoserifsinhala/v13/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MsxaLRn3W-.ttf\";i:500;s:128:\"http://fonts.gstatic.com/s/notoserifsinhala/v13/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MsxaLRn3W-.ttf\";i:600;s:128:\"http://fonts.gstatic.com/s/notoserifsinhala/v13/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMsxaLRn3W-.ttf\";i:700;s:128:\"http://fonts.gstatic.com/s/notoserifsinhala/v13/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMsxaLRn3W-.ttf\";i:800;s:128:\"http://fonts.gstatic.com/s/notoserifsinhala/v13/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMsxaLRn3W-.ttf\";i:900;s:128:\"http://fonts.gstatic.com/s/notoserifsinhala/v13/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMsxaLRn3W-.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:939;a:8:{s:6:\"family\";s:13:\"Noto Serif TC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:19:\"chinese-traditional\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:7:{i:200;s:86:\"http://fonts.gstatic.com/s/notoseriftc/v20/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf\";i:300;s:86:\"http://fonts.gstatic.com/s/notoseriftc/v20/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf\";s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/notoseriftc/v20/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf\";i:500;s:86:\"http://fonts.gstatic.com/s/notoseriftc/v20/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf\";i:600;s:86:\"http://fonts.gstatic.com/s/notoseriftc/v20/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf\";i:700;s:86:\"http://fonts.gstatic.com/s/notoseriftc/v20/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf\";i:900;s:86:\"http://fonts.gstatic.com/s/notoseriftc/v20/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:940;a:8:{s:6:\"family\";s:16:\"Noto Serif Tamil\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"tamil\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:18:{i:100;s:124:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R8Pz3v8Etew.ttf\";i:200;s:124:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R8Pz3v8Etew.ttf\";i:300;s:124:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R8Pz3v8Etew.ttf\";s:7:\"regular\";s:124:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R8Pz3v8Etew.ttf\";i:500;s:124:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R8Pz3v8Etew.ttf\";i:600;s:124:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR8Pz3v8Etew.ttf\";i:700;s:124:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR8Pz3v8Etew.ttf\";i:800;s:124:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR8Pz3v8Etew.ttf\";i:900;s:124:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR8Pz3v8Etew.ttf\";s:9:\"100italic\";s:126:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svbzncQ9e3wx.ttf\";s:9:\"200italic\";s:126:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_bzncQ9e3wx.ttf\";s:9:\"300italic\";s:126:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_bzncQ9e3wx.ttf\";s:6:\"italic\";s:126:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_bzncQ9e3wx.ttf\";s:9:\"500italic\";s:126:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_bzncQ9e3wx.ttf\";s:9:\"600italic\";s:126:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPbzncQ9e3wx.ttf\";s:9:\"700italic\";s:126:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPbzncQ9e3wx.ttf\";s:9:\"800italic\";s:126:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPbzncQ9e3wx.ttf\";s:9:\"900italic\";s:126:\"http://fonts.gstatic.com/s/notoseriftamil/v14/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPbzncQ9e3wx.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:941;a:8:{s:6:\"family\";s:17:\"Noto Serif Tangut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"tangut\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/notoseriftangut/v13/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:942;a:8:{s:6:\"family\";s:17:\"Noto Serif Telugu\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:6:\"telugu\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:109:\"http://fonts.gstatic.com/s/notoseriftelugu/v14/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwuY2fjgrZYA.ttf\";i:200;s:109:\"http://fonts.gstatic.com/s/notoseriftelugu/v14/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwuY2fjgrZYA.ttf\";i:300;s:109:\"http://fonts.gstatic.com/s/notoseriftelugu/v14/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwuY2fjgrZYA.ttf\";s:7:\"regular\";s:109:\"http://fonts.gstatic.com/s/notoseriftelugu/v14/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwuY2fjgrZYA.ttf\";i:500;s:109:\"http://fonts.gstatic.com/s/notoseriftelugu/v14/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwuY2fjgrZYA.ttf\";i:600;s:109:\"http://fonts.gstatic.com/s/notoseriftelugu/v14/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewuY2fjgrZYA.ttf\";i:700;s:109:\"http://fonts.gstatic.com/s/notoseriftelugu/v14/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewuY2fjgrZYA.ttf\";i:800;s:109:\"http://fonts.gstatic.com/s/notoseriftelugu/v14/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewuY2fjgrZYA.ttf\";i:900;s:109:\"http://fonts.gstatic.com/s/notoseriftelugu/v14/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewuY2fjgrZYA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:943;a:8:{s:6:\"family\";s:15:\"Noto Serif Thai\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:4:\"thai\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:121:\"http://fonts.gstatic.com/s/notoserifthai/v13/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRRCmsdu0Qx.ttf\";i:200;s:121:\"http://fonts.gstatic.com/s/notoserifthai/v13/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RRCmsdu0Qx.ttf\";i:300;s:121:\"http://fonts.gstatic.com/s/notoserifthai/v13/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RRCmsdu0Qx.ttf\";s:7:\"regular\";s:121:\"http://fonts.gstatic.com/s/notoserifthai/v13/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RRCmsdu0Qx.ttf\";i:500;s:121:\"http://fonts.gstatic.com/s/notoserifthai/v13/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RRCmsdu0Qx.ttf\";i:600;s:121:\"http://fonts.gstatic.com/s/notoserifthai/v13/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORRCmsdu0Qx.ttf\";i:700;s:121:\"http://fonts.gstatic.com/s/notoserifthai/v13/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORRCmsdu0Qx.ttf\";i:800;s:121:\"http://fonts.gstatic.com/s/notoserifthai/v13/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORRCmsdu0Qx.ttf\";i:900;s:121:\"http://fonts.gstatic.com/s/notoserifthai/v13/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORRCmsdu0Qx.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:944;a:8:{s:6:\"family\";s:18:\"Noto Serif Tibetan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:7:\"tibetan\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:111:\"http://fonts.gstatic.com/s/notoseriftibetan/v14/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPS7rdSy_32c.ttf\";i:200;s:111:\"http://fonts.gstatic.com/s/notoseriftibetan/v14/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPS7rdSy_32c.ttf\";i:300;s:111:\"http://fonts.gstatic.com/s/notoseriftibetan/v14/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPS7rdSy_32c.ttf\";s:7:\"regular\";s:111:\"http://fonts.gstatic.com/s/notoseriftibetan/v14/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPS7rdSy_32c.ttf\";i:500;s:111:\"http://fonts.gstatic.com/s/notoseriftibetan/v14/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPS7rdSy_32c.ttf\";i:600;s:111:\"http://fonts.gstatic.com/s/notoseriftibetan/v14/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPS7rdSy_32c.ttf\";i:700;s:111:\"http://fonts.gstatic.com/s/notoseriftibetan/v14/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPS7rdSy_32c.ttf\";i:800;s:111:\"http://fonts.gstatic.com/s/notoseriftibetan/v14/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPS7rdSy_32c.ttf\";i:900;s:111:\"http://fonts.gstatic.com/s/notoseriftibetan/v14/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPS7rdSy_32c.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:945;a:8:{s:6:\"family\";s:17:\"Noto Serif Yezidi\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:6:\"yezidi\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:109:\"http://fonts.gstatic.com/s/notoserifyezidi/v14/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkrlGJgmVCqg.ttf\";i:500;s:109:\"http://fonts.gstatic.com/s/notoserifyezidi/v14/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkrlGJgmVCqg.ttf\";i:600;s:109:\"http://fonts.gstatic.com/s/notoserifyezidi/v14/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkrlGJgmVCqg.ttf\";i:700;s:109:\"http://fonts.gstatic.com/s/notoserifyezidi/v14/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkrlGJgmVCqg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:946;a:8:{s:6:\"family\";s:22:\"Noto Traditional Nushu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"nushu\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:103:\"http://fonts.gstatic.com/s/nototraditionalnushu/v14/SZco3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67J011GNh6SYA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:947;a:8:{s:6:\"family\";s:8:\"Nova Cut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/novacut/v22/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:948;a:8:{s:6:\"family\";s:9:\"Nova Flat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/novaflat/v22/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:949;a:8:{s:6:\"family\";s:9:\"Nova Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"greek\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/novamono/v16/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:950;a:8:{s:6:\"family\";s:9:\"Nova Oval\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/novaoval/v22/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:951;a:8:{s:6:\"family\";s:10:\"Nova Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/novaround/v19/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:952;a:8:{s:6:\"family\";s:11:\"Nova Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/novascript/v23/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:953;a:8:{s:6:\"family\";s:9:\"Nova Slim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/novaslim/v22/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:954;a:8:{s:6:\"family\";s:11:\"Nova Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/novasquare/v18/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:955;a:8:{s:6:\"family\";s:6:\"Numans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/numans/v13/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:956;a:8:{s:6:\"family\";s:6:\"Nunito\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:9:\"200italic\";i:9;s:9:\"300italic\";i:10;s:6:\"italic\";i:11;s:9:\"500italic\";i:12;s:9:\"600italic\";i:13;s:9:\"700italic\";i:14;s:9:\"800italic\";i:15;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:16:{i:200;s:85:\"http://fonts.gstatic.com/s/nunito/v22/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM9jo7eTWk.ttf\";i:300;s:85:\"http://fonts.gstatic.com/s/nunito/v22/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM9jo7eTWk.ttf\";s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/nunito/v22/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM9jo7eTWk.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/nunito/v22/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM9jo7eTWk.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/nunito/v22/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM9jo7eTWk.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/nunito/v22/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM9jo7eTWk.ttf\";i:800;s:85:\"http://fonts.gstatic.com/s/nunito/v22/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM9jo7eTWk.ttf\";i:900;s:85:\"http://fonts.gstatic.com/s/nunito/v22/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM9jo7eTWk.ttf\";s:9:\"200italic\";s:88:\"http://fonts.gstatic.com/s/nunito/v22/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3iqzbXWnoeg.ttf\";s:9:\"300italic\";s:88:\"http://fonts.gstatic.com/s/nunito/v22/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3iqzbXWnoeg.ttf\";s:6:\"italic\";s:88:\"http://fonts.gstatic.com/s/nunito/v22/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3iqzbXWnoeg.ttf\";s:9:\"500italic\";s:88:\"http://fonts.gstatic.com/s/nunito/v22/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3iqzbXWnoeg.ttf\";s:9:\"600italic\";s:88:\"http://fonts.gstatic.com/s/nunito/v22/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3iqzbXWnoeg.ttf\";s:9:\"700italic\";s:88:\"http://fonts.gstatic.com/s/nunito/v22/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3iqzbXWnoeg.ttf\";s:9:\"800italic\";s:88:\"http://fonts.gstatic.com/s/nunito/v22/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3iqzbXWnoeg.ttf\";s:9:\"900italic\";s:88:\"http://fonts.gstatic.com/s/nunito/v22/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3iqzbXWnoeg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:957;a:8:{s:6:\"family\";s:11:\"Nunito Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:14:{i:200;s:82:\"http://fonts.gstatic.com/s/nunitosans/v11/pe03MImSLYBIv1o4X1M8cc9yAv5qWVAgVol-.ttf\";s:9:\"200italic\";s:85:\"http://fonts.gstatic.com/s/nunitosans/v11/pe01MImSLYBIv1o4X1M8cce4GxZrU1QCU5l-06Y.ttf\";i:300;s:82:\"http://fonts.gstatic.com/s/nunitosans/v11/pe03MImSLYBIv1o4X1M8cc8WAf5qWVAgVol-.ttf\";s:9:\"300italic\";s:85:\"http://fonts.gstatic.com/s/nunitosans/v11/pe01MImSLYBIv1o4X1M8cce4G3JoU1QCU5l-06Y.ttf\";s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/nunitosans/v11/pe0qMImSLYBIv1o4X1M8cfe6Kdpickwp.ttf\";s:6:\"italic\";s:81:\"http://fonts.gstatic.com/s/nunitosans/v11/pe0oMImSLYBIv1o4X1M8cce4I95Ad1wpT5A.ttf\";i:600;s:82:\"http://fonts.gstatic.com/s/nunitosans/v11/pe03MImSLYBIv1o4X1M8cc9iB_5qWVAgVol-.ttf\";s:9:\"600italic\";s:85:\"http://fonts.gstatic.com/s/nunitosans/v11/pe01MImSLYBIv1o4X1M8cce4GwZuU1QCU5l-06Y.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/nunitosans/v11/pe03MImSLYBIv1o4X1M8cc8GBv5qWVAgVol-.ttf\";s:9:\"700italic\";s:85:\"http://fonts.gstatic.com/s/nunitosans/v11/pe01MImSLYBIv1o4X1M8cce4G2JvU1QCU5l-06Y.ttf\";i:800;s:82:\"http://fonts.gstatic.com/s/nunitosans/v11/pe03MImSLYBIv1o4X1M8cc8aBf5qWVAgVol-.ttf\";s:9:\"800italic\";s:85:\"http://fonts.gstatic.com/s/nunitosans/v11/pe01MImSLYBIv1o4X1M8cce4G35sU1QCU5l-06Y.ttf\";i:900;s:82:\"http://fonts.gstatic.com/s/nunitosans/v11/pe03MImSLYBIv1o4X1M8cc8-BP5qWVAgVol-.ttf\";s:9:\"900italic\";s:85:\"http://fonts.gstatic.com/s/nunitosans/v11/pe01MImSLYBIv1o4X1M8cce4G1ptU1QCU5l-06Y.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:958;a:8:{s:6:\"family\";s:11:\"Odibee Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/odibeesans/v12/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:959;a:8:{s:6:\"family\";s:14:\"Odor Mean Chey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v25\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/odormeanchey/v25/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:960;a:8:{s:6:\"family\";s:7:\"Offside\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/offside/v18/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:961;a:8:{s:6:\"family\";s:2:\"Oi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:5:\"tamil\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-01\";s:5:\"files\";a:1:{s:7:\"regular\";s:58:\"http://fonts.gstatic.com/s/oi/v13/w8gXH2EuRqtaut6yjBOG.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:962;a:8:{s:6:\"family\";s:15:\"Old Standard TT\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:3:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/oldstandardtt/v17/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf\";s:6:\"italic\";s:89:\"http://fonts.gstatic.com/s/oldstandardtt/v17/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf\";i:700;s:91:\"http://fonts.gstatic.com/s/oldstandardtt/v17/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:963;a:8:{s:6:\"family\";s:9:\"Oldenburg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/oldenburg/v18/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:964;a:8:{s:6:\"family\";s:3:\"Ole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:60:\"http://fonts.gstatic.com/s/ole/v1/dFazZf6Z-rd89fw69qJ_ew.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:965;a:8:{s:6:\"family\";s:11:\"Oleo Script\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/oleoscript/v12/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/oleoscript/v12/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:966;a:8:{s:6:\"family\";s:22:\"Oleo Script Swash Caps\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:102:\"http://fonts.gstatic.com/s/oleoscriptswashcaps/v11/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf\";i:700;s:106:\"http://fonts.gstatic.com/s/oleoscriptswashcaps/v11/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:967;a:8:{s:6:\"family\";s:9:\"Oooh Baby\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:73:\"http://fonts.gstatic.com/s/ooohbaby/v1/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:968;a:8:{s:6:\"family\";s:9:\"Open Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:9:\"300italic\";i:7;s:6:\"italic\";i:8;s:9:\"500italic\";i:9;s:9:\"600italic\";i:10;s:9:\"700italic\";i:11;s:9:\"800italic\";}s:7:\"subsets\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v27\";s:12:\"lastModified\";s:10:\"2021-10-28\";s:5:\"files\";a:12:{i:300;s:108:\"http://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4nY1M2xLER.ttf\";s:7:\"regular\";s:108:\"http://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf\";i:500;s:108:\"http://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4nY1M2xLER.ttf\";i:600;s:108:\"http://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4nY1M2xLER.ttf\";i:700;s:108:\"http://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4nY1M2xLER.ttf\";i:800;s:108:\"http://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4nY1M2xLER.ttf\";s:9:\"300italic\";s:111:\"http://fonts.gstatic.com/s/opensans/v27/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf\";s:6:\"italic\";s:111:\"http://fonts.gstatic.com/s/opensans/v27/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVcUwaERZjA.ttf\";s:9:\"500italic\";s:111:\"http://fonts.gstatic.com/s/opensans/v27/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVcUwaERZjA.ttf\";s:9:\"600italic\";s:111:\"http://fonts.gstatic.com/s/opensans/v27/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVcUwaERZjA.ttf\";s:9:\"700italic\";s:111:\"http://fonts.gstatic.com/s/opensans/v27/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVcUwaERZjA.ttf\";s:9:\"800italic\";s:111:\"http://fonts.gstatic.com/s/opensans/v27/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVcUwaERZjA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:969;a:8:{s:6:\"family\";s:19:\"Open Sans Condensed\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:3:{i:300;s:100:\"http://fonts.gstatic.com/s/opensanscondensed/v21/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhPuLGRpWRyAs.ttf\";s:9:\"300italic\";s:103:\"http://fonts.gstatic.com/s/opensanscondensed/v21/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suDMQreU2AsJSg.ttf\";i:700;s:100:\"http://fonts.gstatic.com/s/opensanscondensed/v21/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmPuLGRpWRyAs.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:970;a:8:{s:6:\"family\";s:11:\"Oranienbaum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:79:\"http://fonts.gstatic.com/s/oranienbaum/v13/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:971;a:8:{s:6:\"family\";s:8:\"Orbitron\";s:8:\"variants\";a:6:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:6:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/orbitron/v23/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf\";i:500;s:90:\"http://fonts.gstatic.com/s/orbitron/v23/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf\";i:600;s:90:\"http://fonts.gstatic.com/s/orbitron/v23/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf\";i:700;s:90:\"http://fonts.gstatic.com/s/orbitron/v23/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf\";i:800;s:90:\"http://fonts.gstatic.com/s/orbitron/v23/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf\";i:900;s:90:\"http://fonts.gstatic.com/s/orbitron/v23/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:972;a:8:{s:6:\"family\";s:7:\"Oregano\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/oregano/v11/If2IXTPxciS3H4S2kZffPznO3yM.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/oregano/v11/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:973;a:8:{s:6:\"family\";s:11:\"Orelega One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/orelegaone/v8/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:974;a:8:{s:6:\"family\";s:7:\"Orienta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/orienta/v11/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:975;a:8:{s:6:\"family\";s:15:\"Original Surfer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/originalsurfer/v16/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:976;a:8:{s:6:\"family\";s:6:\"Oswald\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v41\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:6:{i:200;s:85:\"http://fonts.gstatic.com/s/oswald/v41/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf\";i:300;s:85:\"http://fonts.gstatic.com/s/oswald/v41/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf\";s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/oswald/v41/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/oswald/v41/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf\";i:600;s:85:\"http://fonts.gstatic.com/s/oswald/v41/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/oswald/v41/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:977;a:8:{s:6:\"family\";s:14:\"Otomanopee One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v4\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/otomanopeeone/v4/xMQNuFtEVKCbvGxme-rSATGm_Aea91uCCB9o.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:978;a:8:{s:6:\"family\";s:6:\"Outfit\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:2:\"v4\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:84:\"http://fonts.gstatic.com/s/outfit/v4/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4G-EiAou6Y.ttf\";i:200;s:84:\"http://fonts.gstatic.com/s/outfit/v4/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4G-EiAou6Y.ttf\";i:300;s:84:\"http://fonts.gstatic.com/s/outfit/v4/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4G-EiAou6Y.ttf\";s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/outfit/v4/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\";i:500;s:84:\"http://fonts.gstatic.com/s/outfit/v4/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4G-EiAou6Y.ttf\";i:600;s:84:\"http://fonts.gstatic.com/s/outfit/v4/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf\";i:700;s:84:\"http://fonts.gstatic.com/s/outfit/v4/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4G-EiAou6Y.ttf\";i:800;s:84:\"http://fonts.gstatic.com/s/outfit/v4/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4G-EiAou6Y.ttf\";i:900;s:84:\"http://fonts.gstatic.com/s/outfit/v4/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4G-EiAou6Y.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:979;a:8:{s:6:\"family\";s:16:\"Over the Rainbow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/overtherainbow/v14/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:980;a:8:{s:6:\"family\";s:8:\"Overlock\";s:8:\"variants\";a:6:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:6:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/overlock/v13/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf\";s:6:\"italic\";s:75:\"http://fonts.gstatic.com/s/overlock/v13/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/overlock/v13/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf\";s:9:\"700italic\";s:79:\"http://fonts.gstatic.com/s/overlock/v13/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf\";i:900;s:76:\"http://fonts.gstatic.com/s/overlock/v13/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf\";s:9:\"900italic\";s:79:\"http://fonts.gstatic.com/s/overlock/v13/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:981;a:8:{s:6:\"family\";s:11:\"Overlock SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/overlocksc/v19/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:982;a:8:{s:6:\"family\";s:8:\"Overpass\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:90:\"http://fonts.gstatic.com/s/overpass/v10/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrOZCLtce-og.ttf\";i:200;s:90:\"http://fonts.gstatic.com/s/overpass/v10/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrOZCLtce-og.ttf\";i:300;s:90:\"http://fonts.gstatic.com/s/overpass/v10/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrOZCLtce-og.ttf\";s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/overpass/v10/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrOZCLtce-og.ttf\";i:500;s:90:\"http://fonts.gstatic.com/s/overpass/v10/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrOZCLtce-og.ttf\";i:600;s:90:\"http://fonts.gstatic.com/s/overpass/v10/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrOZCLtce-og.ttf\";i:700;s:90:\"http://fonts.gstatic.com/s/overpass/v10/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrOZCLtce-og.ttf\";i:800;s:90:\"http://fonts.gstatic.com/s/overpass/v10/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrOZCLtce-og.ttf\";i:900;s:90:\"http://fonts.gstatic.com/s/overpass/v10/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrOZCLtce-og.ttf\";s:9:\"100italic\";s:92:\"http://fonts.gstatic.com/s/overpass/v10/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qPl8Kuosgz.ttf\";s:9:\"200italic\";s:92:\"http://fonts.gstatic.com/s/overpass/v10/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqPl8Kuosgz.ttf\";s:9:\"300italic\";s:92:\"http://fonts.gstatic.com/s/overpass/v10/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqPl8Kuosgz.ttf\";s:6:\"italic\";s:92:\"http://fonts.gstatic.com/s/overpass/v10/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqPl8Kuosgz.ttf\";s:9:\"500italic\";s:92:\"http://fonts.gstatic.com/s/overpass/v10/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqPl8Kuosgz.ttf\";s:9:\"600italic\";s:92:\"http://fonts.gstatic.com/s/overpass/v10/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqPl8Kuosgz.ttf\";s:9:\"700italic\";s:92:\"http://fonts.gstatic.com/s/overpass/v10/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqPl8Kuosgz.ttf\";s:9:\"800italic\";s:92:\"http://fonts.gstatic.com/s/overpass/v10/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqPl8Kuosgz.ttf\";s:9:\"900italic\";s:92:\"http://fonts.gstatic.com/s/overpass/v10/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqPl8Kuosgz.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:983;a:8:{s:6:\"family\";s:13:\"Overpass Mono\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:100:\"http://fonts.gstatic.com/s/overpassmono/v13/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokzzXur-SmIr.ttf\";s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/overpassmono/v13/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokzzXur-SmIr.ttf\";i:500;s:100:\"http://fonts.gstatic.com/s/overpassmono/v13/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokzzXur-SmIr.ttf\";i:600;s:100:\"http://fonts.gstatic.com/s/overpassmono/v13/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUzzXur-SmIr.ttf\";i:700;s:100:\"http://fonts.gstatic.com/s/overpassmono/v13/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUzzXur-SmIr.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:984;a:8:{s:6:\"family\";s:3:\"Ovo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:61:\"http://fonts.gstatic.com/s/ovo/v15/yYLl0h7Wyfzjy4Q5_3WVxA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:985;a:8:{s:6:\"family\";s:7:\"Oxanium\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:7:{i:200;s:87:\"http://fonts.gstatic.com/s/oxanium/v12/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf\";i:300;s:87:\"http://fonts.gstatic.com/s/oxanium/v12/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/oxanium/v12/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/oxanium/v12/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/oxanium/v12/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/oxanium/v12/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/oxanium/v12/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:986;a:8:{s:6:\"family\";s:6:\"Oxygen\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:3:{i:300;s:72:\"http://fonts.gstatic.com/s/oxygen/v14/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf\";s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/oxygen/v14/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/oxygen/v14/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:987;a:8:{s:6:\"family\";s:11:\"Oxygen Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/oxygenmono/v11/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:988;a:8:{s:6:\"family\";s:7:\"PT Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/ptmono/v11/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:989;a:8:{s:6:\"family\";s:7:\"PT Sans\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/ptsans/v16/jizaRExUiTo99u79P0WOxOGMMDQ.ttf\";s:6:\"italic\";s:72:\"http://fonts.gstatic.com/s/ptsans/v16/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf\";i:700;s:73:\"http://fonts.gstatic.com/s/ptsans/v16/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf\";s:9:\"700italic\";s:76:\"http://fonts.gstatic.com/s/ptsans/v16/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:990;a:8:{s:6:\"family\";s:15:\"PT Sans Caption\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:2:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/ptsanscaption/v17/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf\";i:700;s:91:\"http://fonts.gstatic.com/s/ptsanscaption/v17/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:991;a:8:{s:6:\"family\";s:14:\"PT Sans Narrow\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:2:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/ptsansnarrow/v16/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf\";i:700;s:88:\"http://fonts.gstatic.com/s/ptsansnarrow/v16/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:992;a:8:{s:6:\"family\";s:8:\"PT Serif\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/ptserif/v16/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf\";s:6:\"italic\";s:74:\"http://fonts.gstatic.com/s/ptserif/v16/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf\";i:700;s:75:\"http://fonts.gstatic.com/s/ptserif/v16/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf\";s:9:\"700italic\";s:78:\"http://fonts.gstatic.com/s/ptserif/v16/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:993;a:8:{s:6:\"family\";s:16:\"PT Serif Caption\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/ptserifcaption/v15/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf\";s:6:\"italic\";s:92:\"http://fonts.gstatic.com/s/ptserifcaption/v15/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:994;a:8:{s:6:\"family\";s:8:\"Pacifico\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/pacifico/v21/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:995;a:8:{s:6:\"family\";s:6:\"Padauk\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:7:\"myanmar\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:2:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/padauk/v12/RrQRboJg-id7OnbBa0_g3LlYbg.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/padauk/v12/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:996;a:8:{s:6:\"family\";s:9:\"Palanquin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:7:{i:100;s:77:\"http://fonts.gstatic.com/s/palanquin/v11/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf\";i:200;s:79:\"http://fonts.gstatic.com/s/palanquin/v11/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf\";i:300;s:79:\"http://fonts.gstatic.com/s/palanquin/v11/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf\";s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/palanquin/v11/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf\";i:500;s:79:\"http://fonts.gstatic.com/s/palanquin/v11/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf\";i:600;s:79:\"http://fonts.gstatic.com/s/palanquin/v11/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/palanquin/v11/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:997;a:8:{s:6:\"family\";s:14:\"Palanquin Dark\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/palanquindark/v10/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf\";i:500;s:89:\"http://fonts.gstatic.com/s/palanquindark/v10/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf\";i:600;s:89:\"http://fonts.gstatic.com/s/palanquindark/v10/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf\";i:700;s:89:\"http://fonts.gstatic.com/s/palanquindark/v10/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:998;a:8:{s:6:\"family\";s:14:\"Palette Mosaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/palettemosaic/v5/AMOIz4aBvWuBFe3TohdW6YZ9MFiy4dxL4jSr.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:999;a:8:{s:6:\"family\";s:8:\"Pangolin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/pangolin/v9/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1000;a:8:{s:6:\"family\";s:7:\"Paprika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/paprika/v18/8QIJdijZitv49rDfuIgOq7jkAOw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1001;a:8:{s:6:\"family\";s:10:\"Parisienne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/parisienne/v12/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1002;a:8:{s:6:\"family\";s:11:\"Passero One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/passeroone/v22/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1003;a:8:{s:6:\"family\";s:11:\"Passion One\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"700\";i:2;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:3:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/passionone/v14/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/passionone/v14/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf\";i:900;s:82:\"http://fonts.gstatic.com/s/passionone/v14/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1004;a:8:{s:6:\"family\";s:17:\"Passions Conflict\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/passionsconflict/v3/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1005;a:8:{s:6:\"family\";s:18:\"Pathway Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/pathwaygothicone/v13/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1006;a:8:{s:6:\"family\";s:12:\"Patrick Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/patrickhand/v18/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1007;a:8:{s:6:\"family\";s:15:\"Patrick Hand SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/patrickhandsc/v11/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1008;a:8:{s:6:\"family\";s:7:\"Pattaya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:4:\"thai\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/pattaya/v10/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1009;a:8:{s:6:\"family\";s:9:\"Patua One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/patuaone/v15/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1010;a:8:{s:6:\"family\";s:7:\"Pavanam\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:5:\"tamil\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/pavanam/v9/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1011;a:8:{s:6:\"family\";s:11:\"Paytone One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/paytoneone/v16/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1012;a:8:{s:6:\"family\";s:7:\"Peddana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/peddana/v18/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1013;a:8:{s:6:\"family\";s:7:\"Peralta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/peralta/v15/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1014;a:8:{s:6:\"family\";s:16:\"Permanent Marker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2020-09-02\";s:5:\"files\";a:1:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/permanentmarker/v10/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1015;a:8:{s:6:\"family\";s:8:\"Petemoss\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/petemoss/v3/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1016;a:8:{s:6:\"family\";s:19:\"Petit Formal Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/petitformalscript/v11/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1017;a:8:{s:6:\"family\";s:7:\"Petrona\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v26\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:87:\"http://fonts.gstatic.com/s/petrona/v26/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf\";i:200;s:87:\"http://fonts.gstatic.com/s/petrona/v26/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf\";i:300;s:87:\"http://fonts.gstatic.com/s/petrona/v26/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/petrona/v26/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/petrona/v26/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/petrona/v26/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/petrona/v26/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/petrona/v26/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf\";i:900;s:87:\"http://fonts.gstatic.com/s/petrona/v26/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf\";s:9:\"100italic\";s:90:\"http://fonts.gstatic.com/s/petrona/v26/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf\";s:9:\"200italic\";s:90:\"http://fonts.gstatic.com/s/petrona/v26/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf\";s:9:\"300italic\";s:90:\"http://fonts.gstatic.com/s/petrona/v26/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf\";s:6:\"italic\";s:90:\"http://fonts.gstatic.com/s/petrona/v26/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf\";s:9:\"500italic\";s:90:\"http://fonts.gstatic.com/s/petrona/v26/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf\";s:9:\"600italic\";s:90:\"http://fonts.gstatic.com/s/petrona/v26/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf\";s:9:\"700italic\";s:90:\"http://fonts.gstatic.com/s/petrona/v26/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf\";s:9:\"800italic\";s:90:\"http://fonts.gstatic.com/s/petrona/v26/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf\";s:9:\"900italic\";s:90:\"http://fonts.gstatic.com/s/petrona/v26/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1018;a:8:{s:6:\"family\";s:11:\"Philosopher\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:79:\"http://fonts.gstatic.com/s/philosopher/v17/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf\";s:6:\"italic\";s:82:\"http://fonts.gstatic.com/s/philosopher/v17/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf\";i:700;s:83:\"http://fonts.gstatic.com/s/philosopher/v17/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf\";s:9:\"700italic\";s:86:\"http://fonts.gstatic.com/s/philosopher/v17/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1019;a:8:{s:6:\"family\";s:9:\"Piazzolla\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2021-09-16\";s:5:\"files\";a:18:{i:100;s:109:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf\";i:200;s:109:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf\";i:300;s:109:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf\";s:7:\"regular\";s:109:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf\";i:500;s:109:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf\";i:600;s:109:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf\";i:700;s:109:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf\";i:800;s:109:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf\";i:900;s:109:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf\";s:9:\"100italic\";s:112:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf\";s:9:\"200italic\";s:112:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf\";s:9:\"300italic\";s:112:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf\";s:6:\"italic\";s:112:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf\";s:9:\"500italic\";s:112:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf\";s:9:\"600italic\";s:112:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf\";s:9:\"700italic\";s:112:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf\";s:9:\"800italic\";s:112:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf\";s:9:\"900italic\";s:112:\"http://fonts.gstatic.com/s/piazzolla/v16/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1020;a:8:{s:6:\"family\";s:6:\"Piedra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/piedra/v19/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1021;a:8:{s:6:\"family\";s:13:\"Pinyon Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/pinyonscript/v14/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1022;a:8:{s:6:\"family\";s:10:\"Pirata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/pirataone/v20/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1023;a:8:{s:6:\"family\";s:7:\"Plaster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/plaster/v22/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1024;a:8:{s:6:\"family\";s:4:\"Play\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:2:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/play/v16/6aez4K2oVqwIjtI8Hp8Tx3A.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/play/v16/6ae84K2oVqwItm4TOpc423nTJTM.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1025;a:8:{s:6:\"family\";s:8:\"Playball\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/playball/v14/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1026;a:8:{s:6:\"family\";s:16:\"Playfair Display\";s:8:\"variants\";a:12:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:6:\"italic\";i:7;s:9:\"500italic\";i:8;s:9:\"600italic\";i:9;s:9:\"700italic\";i:10;s:9:\"800italic\";i:11;s:9:\"900italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v28\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:12:{s:7:\"regular\";s:107:\"http://fonts.gstatic.com/s/playfairdisplay/v28/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf\";i:500;s:107:\"http://fonts.gstatic.com/s/playfairdisplay/v28/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf\";i:600;s:107:\"http://fonts.gstatic.com/s/playfairdisplay/v28/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf\";i:700;s:107:\"http://fonts.gstatic.com/s/playfairdisplay/v28/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf\";i:800;s:107:\"http://fonts.gstatic.com/s/playfairdisplay/v28/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf\";i:900;s:107:\"http://fonts.gstatic.com/s/playfairdisplay/v28/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf\";s:6:\"italic\";s:110:\"http://fonts.gstatic.com/s/playfairdisplay/v28/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf\";s:9:\"500italic\";s:110:\"http://fonts.gstatic.com/s/playfairdisplay/v28/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf\";s:9:\"600italic\";s:110:\"http://fonts.gstatic.com/s/playfairdisplay/v28/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf\";s:9:\"700italic\";s:110:\"http://fonts.gstatic.com/s/playfairdisplay/v28/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf\";s:9:\"800italic\";s:110:\"http://fonts.gstatic.com/s/playfairdisplay/v28/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf\";s:9:\"900italic\";s:110:\"http://fonts.gstatic.com/s/playfairdisplay/v28/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1027;a:8:{s:6:\"family\";s:19:\"Playfair Display SC\";s:8:\"variants\";a:6:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:6:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/playfairdisplaysc/v14/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf\";s:6:\"italic\";s:99:\"http://fonts.gstatic.com/s/playfairdisplaysc/v14/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf\";i:700;s:100:\"http://fonts.gstatic.com/s/playfairdisplaysc/v14/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf\";s:9:\"700italic\";s:103:\"http://fonts.gstatic.com/s/playfairdisplaysc/v14/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf\";i:900;s:100:\"http://fonts.gstatic.com/s/playfairdisplaysc/v14/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf\";s:9:\"900italic\";s:103:\"http://fonts.gstatic.com/s/playfairdisplaysc/v14/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1028;a:8:{s:6:\"family\";s:7:\"Podkova\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/podkova/v24/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/podkova/v24/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/podkova/v24/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/podkova/v24/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/podkova/v24/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1029;a:8:{s:6:\"family\";s:10:\"Poiret One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/poiretone/v12/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1030;a:8:{s:6:\"family\";s:10:\"Poller One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/pollerone/v17/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1031;a:8:{s:6:\"family\";s:4:\"Poly\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/poly/v14/MQpb-W6wKNitRLCAq2Lpris.ttf\";s:6:\"italic\";s:66:\"http://fonts.gstatic.com/s/poly/v14/MQpV-W6wKNitdLKKr0DsviuGWA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1032;a:8:{s:6:\"family\";s:8:\"Pompiere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/pompiere/v13/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1033;a:8:{s:6:\"family\";s:12:\"Pontano Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/pontanosans/v11/qFdD35GdgYR8EzR6oBLDHa3qwjUMg1siNQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1034;a:8:{s:6:\"family\";s:10:\"Poor Story\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/poorstory/v18/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1035;a:8:{s:6:\"family\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:18:{i:100;s:73:\"http://fonts.gstatic.com/s/poppins/v19/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\";s:9:\"100italic\";s:75:\"http://fonts.gstatic.com/s/poppins/v19/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\";i:200;s:74:\"http://fonts.gstatic.com/s/poppins/v19/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\";s:9:\"200italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v19/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/poppins/v19/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\";s:9:\"300italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v19/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/poppins/v19/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/poppins/v19/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\";i:500;s:74:\"http://fonts.gstatic.com/s/poppins/v19/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\";s:9:\"500italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v19/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/poppins/v19/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\";s:9:\"600italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v19/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/poppins/v19/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v19/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/poppins/v19/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\";s:9:\"800italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v19/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\";i:900;s:74:\"http://fonts.gstatic.com/s/poppins/v19/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\";s:9:\"900italic\";s:77:\"http://fonts.gstatic.com/s/poppins/v19/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1036;a:8:{s:6:\"family\";s:16:\"Port Lligat Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/portlligatsans/v16/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1037;a:8:{s:6:\"family\";s:16:\"Port Lligat Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/portlligatslab/v19/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1038;a:8:{s:6:\"family\";s:9:\"Potta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/pottaone/v14/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1039;a:8:{s:6:\"family\";s:14:\"Pragati Narrow\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/pragatinarrow/v11/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf\";i:700;s:89:\"http://fonts.gstatic.com/s/pragatinarrow/v11/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1040;a:8:{s:6:\"family\";s:6:\"Praise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/praise/v3/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1041;a:8:{s:6:\"family\";s:5:\"Prata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/prata/v17/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1042;a:8:{s:6:\"family\";s:11:\"Preahvihear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v25\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:79:\"http://fonts.gstatic.com/s/preahvihear/v25/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1043;a:8:{s:6:\"family\";s:14:\"Press Start 2P\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/pressstart2p/v12/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1044;a:8:{s:6:\"family\";s:5:\"Pridi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:6:{i:200;s:68:\"http://fonts.gstatic.com/s/pridi/v9/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf\";i:300;s:68:\"http://fonts.gstatic.com/s/pridi/v9/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf\";s:7:\"regular\";s:64:\"http://fonts.gstatic.com/s/pridi/v9/2sDQZG5JnZLfkfWao2krbl29.ttf\";i:500;s:68:\"http://fonts.gstatic.com/s/pridi/v9/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf\";i:600;s:68:\"http://fonts.gstatic.com/s/pridi/v9/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf\";i:700;s:68:\"http://fonts.gstatic.com/s/pridi/v9/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1045;a:8:{s:6:\"family\";s:14:\"Princess Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/princesssofia/v19/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1046;a:8:{s:6:\"family\";s:8:\"Prociono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/prociono/v20/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1047;a:8:{s:6:\"family\";s:6:\"Prompt\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:18:{i:100;s:69:\"http://fonts.gstatic.com/s/prompt/v9/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf\";s:9:\"100italic\";s:72:\"http://fonts.gstatic.com/s/prompt/v9/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf\";i:200;s:71:\"http://fonts.gstatic.com/s/prompt/v9/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf\";s:9:\"200italic\";s:73:\"http://fonts.gstatic.com/s/prompt/v9/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf\";i:300;s:71:\"http://fonts.gstatic.com/s/prompt/v9/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf\";s:9:\"300italic\";s:73:\"http://fonts.gstatic.com/s/prompt/v9/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf\";s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/prompt/v9/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf\";s:6:\"italic\";s:69:\"http://fonts.gstatic.com/s/prompt/v9/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf\";i:500;s:71:\"http://fonts.gstatic.com/s/prompt/v9/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf\";s:9:\"500italic\";s:73:\"http://fonts.gstatic.com/s/prompt/v9/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf\";i:600;s:71:\"http://fonts.gstatic.com/s/prompt/v9/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf\";s:9:\"600italic\";s:73:\"http://fonts.gstatic.com/s/prompt/v9/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf\";i:700;s:71:\"http://fonts.gstatic.com/s/prompt/v9/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf\";s:9:\"700italic\";s:73:\"http://fonts.gstatic.com/s/prompt/v9/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf\";i:800;s:71:\"http://fonts.gstatic.com/s/prompt/v9/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf\";s:9:\"800italic\";s:73:\"http://fonts.gstatic.com/s/prompt/v9/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf\";i:900;s:71:\"http://fonts.gstatic.com/s/prompt/v9/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf\";s:9:\"900italic\";s:73:\"http://fonts.gstatic.com/s/prompt/v9/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1048;a:8:{s:6:\"family\";s:10:\"Prosto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/prostoone/v15/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1049;a:8:{s:6:\"family\";s:11:\"Proza Libre\";s:8:\"variants\";a:10:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:10:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/prozalibre/v5/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf\";s:6:\"italic\";s:80:\"http://fonts.gstatic.com/s/prozalibre/v5/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf\";i:500;s:81:\"http://fonts.gstatic.com/s/prozalibre/v5/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf\";s:9:\"500italic\";s:84:\"http://fonts.gstatic.com/s/prozalibre/v5/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf\";i:600;s:81:\"http://fonts.gstatic.com/s/prozalibre/v5/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf\";s:9:\"600italic\";s:84:\"http://fonts.gstatic.com/s/prozalibre/v5/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf\";i:700;s:81:\"http://fonts.gstatic.com/s/prozalibre/v5/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf\";s:9:\"700italic\";s:84:\"http://fonts.gstatic.com/s/prozalibre/v5/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf\";i:800;s:81:\"http://fonts.gstatic.com/s/prozalibre/v5/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf\";s:9:\"800italic\";s:84:\"http://fonts.gstatic.com/s/prozalibre/v5/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1050;a:8:{s:6:\"family\";s:11:\"Public Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:96:\"http://fonts.gstatic.com/s/publicsans/v11/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf\";i:200;s:96:\"http://fonts.gstatic.com/s/publicsans/v11/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf\";i:300;s:96:\"http://fonts.gstatic.com/s/publicsans/v11/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf\";s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/publicsans/v11/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/publicsans/v11/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/publicsans/v11/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/publicsans/v11/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf\";i:800;s:96:\"http://fonts.gstatic.com/s/publicsans/v11/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf\";i:900;s:96:\"http://fonts.gstatic.com/s/publicsans/v11/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf\";s:9:\"100italic\";s:98:\"http://fonts.gstatic.com/s/publicsans/v11/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf\";s:9:\"200italic\";s:98:\"http://fonts.gstatic.com/s/publicsans/v11/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf\";s:9:\"300italic\";s:98:\"http://fonts.gstatic.com/s/publicsans/v11/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf\";s:6:\"italic\";s:98:\"http://fonts.gstatic.com/s/publicsans/v11/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf\";s:9:\"500italic\";s:98:\"http://fonts.gstatic.com/s/publicsans/v11/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf\";s:9:\"600italic\";s:98:\"http://fonts.gstatic.com/s/publicsans/v11/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf\";s:9:\"700italic\";s:98:\"http://fonts.gstatic.com/s/publicsans/v11/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf\";s:9:\"800italic\";s:98:\"http://fonts.gstatic.com/s/publicsans/v11/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf\";s:9:\"900italic\";s:98:\"http://fonts.gstatic.com/s/publicsans/v11/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1051;a:8:{s:6:\"family\";s:12:\"Puppies Play\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/puppiesplay/v3/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1052;a:8:{s:6:\"family\";s:7:\"Puritan\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:4:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/puritan/v22/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/puritan/v22/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/puritan/v22/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/puritan/v22/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1053;a:8:{s:6:\"family\";s:12:\"Purple Purse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/purplepurse/v19/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1054;a:8:{s:6:\"family\";s:6:\"Qahiri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/qahiri/v5/tsssAp1RZy0C_hGuU3Chrnmupw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1055;a:8:{s:6:\"family\";s:6:\"Quando\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/quando/v12/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1056;a:8:{s:6:\"family\";s:8:\"Quantico\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/quantico/v13/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf\";s:6:\"italic\";s:75:\"http://fonts.gstatic.com/s/quantico/v13/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/quantico/v13/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf\";s:9:\"700italic\";s:79:\"http://fonts.gstatic.com/s/quantico/v13/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1057;a:8:{s:6:\"family\";s:12:\"Quattrocento\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/quattrocento/v15/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf\";i:700;s:86:\"http://fonts.gstatic.com/s/quattrocento/v15/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1058;a:8:{s:6:\"family\";s:17:\"Quattrocento Sans\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/quattrocentosans/v17/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf\";s:6:\"italic\";s:95:\"http://fonts.gstatic.com/s/quattrocentosans/v17/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/quattrocentosans/v17/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf\";s:9:\"700italic\";s:99:\"http://fonts.gstatic.com/s/quattrocentosans/v17/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1059;a:8:{s:6:\"family\";s:9:\"Questrial\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/questrial/v17/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1060;a:8:{s:6:\"family\";s:9:\"Quicksand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v28\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:92:\"http://fonts.gstatic.com/s/quicksand/v28/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf\";s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/quicksand/v28/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf\";i:500;s:92:\"http://fonts.gstatic.com/s/quicksand/v28/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf\";i:600;s:92:\"http://fonts.gstatic.com/s/quicksand/v28/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf\";i:700;s:92:\"http://fonts.gstatic.com/s/quicksand/v28/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1061;a:8:{s:6:\"family\";s:14:\"Quintessential\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:86:\"http://fonts.gstatic.com/s/quintessential/v18/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1062;a:8:{s:6:\"family\";s:7:\"Qwigley\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/qwigley/v14/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1063;a:8:{s:6:\"family\";s:15:\"Qwitcher Grypen\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:2:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/qwitchergrypen/v1/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf\";i:700;s:91:\"http://fonts.gstatic.com/s/qwitchergrypen/v1/pxiZypclp9tDilN9RrC5BSI1dZmT9ExkqkSsrvNXiA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1064;a:8:{s:6:\"family\";s:15:\"Racing Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/racingsansone/v11/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1065;a:8:{s:6:\"family\";s:6:\"Radley\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/radley/v18/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/radley/v18/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1066;a:8:{s:6:\"family\";s:8:\"Rajdhani\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:5:{i:300;s:76:\"http://fonts.gstatic.com/s/rajdhani/v14/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf\";s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/rajdhani/v14/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf\";i:500;s:76:\"http://fonts.gstatic.com/s/rajdhani/v14/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf\";i:600;s:76:\"http://fonts.gstatic.com/s/rajdhani/v14/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/rajdhani/v14/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1067;a:8:{s:6:\"family\";s:6:\"Rakkas\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/rakkas/v15/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1068;a:8:{s:6:\"family\";s:7:\"Raleway\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v26\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:87:\"http://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf\";i:200;s:87:\"http://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf\";i:300;s:87:\"http://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf\";i:900;s:87:\"http://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf\";s:9:\"100italic\";s:90:\"http://fonts.gstatic.com/s/raleway/v26/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf\";s:9:\"200italic\";s:90:\"http://fonts.gstatic.com/s/raleway/v26/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf\";s:9:\"300italic\";s:90:\"http://fonts.gstatic.com/s/raleway/v26/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf\";s:6:\"italic\";s:90:\"http://fonts.gstatic.com/s/raleway/v26/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf\";s:9:\"500italic\";s:90:\"http://fonts.gstatic.com/s/raleway/v26/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf\";s:9:\"600italic\";s:90:\"http://fonts.gstatic.com/s/raleway/v26/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf\";s:9:\"700italic\";s:90:\"http://fonts.gstatic.com/s/raleway/v26/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf\";s:9:\"800italic\";s:90:\"http://fonts.gstatic.com/s/raleway/v26/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf\";s:9:\"900italic\";s:90:\"http://fonts.gstatic.com/s/raleway/v26/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1069;a:8:{s:6:\"family\";s:12:\"Raleway Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/ralewaydots/v12/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1070;a:8:{s:6:\"family\";s:10:\"Ramabhadra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/ramabhadra/v13/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1071;a:8:{s:6:\"family\";s:8:\"Ramaraja\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/ramaraja/v13/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1072;a:8:{s:6:\"family\";s:6:\"Rambla\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:4:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/rambla/v11/snfrs0ip98hx6mr0I7IONthkwQ.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/rambla/v11/snfps0ip98hx6mrEIbgKFN10wYKa.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/rambla/v11/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf\";s:9:\"700italic\";s:74:\"http://fonts.gstatic.com/s/rambla/v11/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1073;a:8:{s:6:\"family\";s:12:\"Rammetto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/rammettoone/v12/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1074;a:8:{s:6:\"family\";s:11:\"Rampart One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/rampartone/v5/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1075;a:8:{s:6:\"family\";s:8:\"Ranchers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/ranchers/v11/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1076;a:8:{s:6:\"family\";s:6:\"Rancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2020-09-02\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/rancho/v11/46kulbzmXjLaqZRlbWXgd0RY1g.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1077;a:8:{s:6:\"family\";s:5:\"Ranga\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:2:{s:7:\"regular\";s:64:\"http://fonts.gstatic.com/s/ranga/v8/C8ct4cYisGb28p6CLDwZwmGE.ttf\";i:700;s:68:\"http://fonts.gstatic.com/s/ranga/v8/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1078;a:8:{s:6:\"family\";s:4:\"Rasa\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:9:\"300italic\";i:6;s:6:\"italic\";i:7;s:9:\"500italic\";i:8;s:9:\"600italic\";i:9;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"gujarati\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:10:{i:300;s:80:\"http://fonts.gstatic.com/s/rasa/v13/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW41fcvN2KT4.ttf\";s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/rasa/v13/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW41fcvN2KT4.ttf\";i:500;s:80:\"http://fonts.gstatic.com/s/rasa/v13/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW41fcvN2KT4.ttf\";i:600;s:80:\"http://fonts.gstatic.com/s/rasa/v13/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm41fcvN2KT4.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/rasa/v13/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm41fcvN2KT4.ttf\";s:9:\"300italic\";s:83:\"http://fonts.gstatic.com/s/rasa/v13/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8_v3bT4Ycc.ttf\";s:6:\"italic\";s:83:\"http://fonts.gstatic.com/s/rasa/v13/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8_v3bT4Ycc.ttf\";s:9:\"500italic\";s:83:\"http://fonts.gstatic.com/s/rasa/v13/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8_v3bT4Ycc.ttf\";s:9:\"600italic\";s:83:\"http://fonts.gstatic.com/s/rasa/v13/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8_v3bT4Ycc.ttf\";s:9:\"700italic\";s:83:\"http://fonts.gstatic.com/s/rasa/v13/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8_v3bT4Ycc.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1079;a:8:{s:6:\"family\";s:9:\"Rationale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/rationale/v22/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1080;a:8:{s:6:\"family\";s:12:\"Ravi Prakash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/raviprakash/v17/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1081;a:8:{s:6:\"family\";s:10:\"Readex Pro\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:6:{i:200;s:92:\"http://fonts.gstatic.com/s/readexpro/v8/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQzfm7w3bk38hTB8.ttf\";i:300;s:92:\"http://fonts.gstatic.com/s/readexpro/v8/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQwBm7w3bk38hTB8.ttf\";s:7:\"regular\";s:92:\"http://fonts.gstatic.com/s/readexpro/v8/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQxfm7w3bk38hTB8.ttf\";i:500;s:92:\"http://fonts.gstatic.com/s/readexpro/v8/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQxtm7w3bk38hTB8.ttf\";i:600;s:92:\"http://fonts.gstatic.com/s/readexpro/v8/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQyBnLw3bk38hTB8.ttf\";i:700;s:92:\"http://fonts.gstatic.com/s/readexpro/v8/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQy4nLw3bk38hTB8.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1082;a:8:{s:6:\"family\";s:9:\"Recursive\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";}s:7:\"subsets\";a:4:{i:0;s:12:\"cyrillic-ext\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v26\";s:12:\"lastModified\";s:10:\"2021-07-01\";s:5:\"files\";a:7:{i:300;s:161:\"http://fonts.gstatic.com/s/recursive/v26/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf\";s:7:\"regular\";s:161:\"http://fonts.gstatic.com/s/recursive/v26/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf\";i:500;s:161:\"http://fonts.gstatic.com/s/recursive/v26/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf\";i:600;s:161:\"http://fonts.gstatic.com/s/recursive/v26/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf\";i:700;s:161:\"http://fonts.gstatic.com/s/recursive/v26/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf\";i:800;s:161:\"http://fonts.gstatic.com/s/recursive/v26/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf\";i:900;s:161:\"http://fonts.gstatic.com/s/recursive/v26/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1083;a:8:{s:6:\"family\";s:15:\"Red Hat Display\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:9:\"300italic\";i:8;s:6:\"italic\";i:9;s:9:\"500italic\";i:10;s:9:\"600italic\";i:11;s:9:\"700italic\";i:12;s:9:\"800italic\";i:13;s:9:\"900italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:14:{i:300;s:104:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWckg5-Xecg3w.ttf\";s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWckg5-Xecg3w.ttf\";i:500;s:104:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wckg5-Xecg3w.ttf\";i:600;s:104:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRckg5-Xecg3w.ttf\";i:700;s:104:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRckg5-Xecg3w.ttf\";i:800;s:104:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRckg5-Xecg3w.ttf\";i:900;s:104:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRckg5-Xecg3w.ttf\";s:9:\"300italic\";s:107:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz_VWZk3zJGg.ttf\";s:6:\"italic\";s:107:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz_VWZk3zJGg.ttf\";s:9:\"500italic\";s:107:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz_VWZk3zJGg.ttf\";s:9:\"600italic\";s:107:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz_VWZk3zJGg.ttf\";s:9:\"700italic\";s:107:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz_VWZk3zJGg.ttf\";s:9:\"800italic\";s:107:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz_VWZk3zJGg.ttf\";s:9:\"900italic\";s:107:\"http://fonts.gstatic.com/s/redhatdisplay/v11/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz_VWZk3zJGg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1084;a:8:{s:6:\"family\";s:12:\"Red Hat Mono\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:9:\"300italic\";i:6;s:6:\"italic\";i:7;s:9:\"500italic\";i:8;s:9:\"600italic\";i:9;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:10:{i:300;s:96:\"http://fonts.gstatic.com/s/redhatmono/v7/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7HNuW4QuKI.ttf\";s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/redhatmono/v7/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7HNuW4QuKI.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/redhatmono/v7/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7HNuW4QuKI.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/redhatmono/v7/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7HNuW4QuKI.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/redhatmono/v7/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7HNuW4QuKI.ttf\";s:9:\"300italic\";s:99:\"http://fonts.gstatic.com/s/redhatmono/v7/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHvUwVqKIJuw.ttf\";s:6:\"italic\";s:99:\"http://fonts.gstatic.com/s/redhatmono/v7/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHvUwVqKIJuw.ttf\";s:9:\"500italic\";s:99:\"http://fonts.gstatic.com/s/redhatmono/v7/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHvUwVqKIJuw.ttf\";s:9:\"600italic\";s:99:\"http://fonts.gstatic.com/s/redhatmono/v7/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHvUwVqKIJuw.ttf\";s:9:\"700italic\";s:99:\"http://fonts.gstatic.com/s/redhatmono/v7/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHvUwVqKIJuw.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1085;a:8:{s:6:\"family\";s:12:\"Red Hat Text\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:9:\"300italic\";i:6;s:6:\"italic\";i:7;s:9:\"500italic\";i:8;s:9:\"600italic\";i:9;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:10:{i:300;s:97:\"http://fonts.gstatic.com/s/redhattext/v10/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrbacYVFtIY.ttf\";s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/redhattext/v10/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrbacYVFtIY.ttf\";i:500;s:97:\"http://fonts.gstatic.com/s/redhattext/v10/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrbacYVFtIY.ttf\";i:600;s:97:\"http://fonts.gstatic.com/s/redhattext/v10/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrbacYVFtIY.ttf\";i:700;s:97:\"http://fonts.gstatic.com/s/redhattext/v10/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrbacYVFtIY.ttf\";s:9:\"300italic\";s:100:\"http://fonts.gstatic.com/s/redhattext/v10/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQdadApIYv_g.ttf\";s:6:\"italic\";s:100:\"http://fonts.gstatic.com/s/redhattext/v10/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQdadApIYv_g.ttf\";s:9:\"500italic\";s:100:\"http://fonts.gstatic.com/s/redhattext/v10/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQdadApIYv_g.ttf\";s:9:\"600italic\";s:100:\"http://fonts.gstatic.com/s/redhattext/v10/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQdadApIYv_g.ttf\";s:9:\"700italic\";s:100:\"http://fonts.gstatic.com/s/redhattext/v10/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQdadApIYv_g.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1086;a:8:{s:6:\"family\";s:8:\"Red Rose\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:89:\"http://fonts.gstatic.com/s/redrose/v12/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf\";s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/redrose/v12/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf\";i:500;s:89:\"http://fonts.gstatic.com/s/redrose/v12/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf\";i:600;s:89:\"http://fonts.gstatic.com/s/redrose/v12/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf\";i:700;s:89:\"http://fonts.gstatic.com/s/redrose/v12/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1087;a:8:{s:6:\"family\";s:8:\"Redacted\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/redacted/v3/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1088;a:8:{s:6:\"family\";s:15:\"Redacted Script\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:3:{i:300;s:91:\"http://fonts.gstatic.com/s/redactedscript/v3/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVmbI397ldkg.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/redactedscript/v3/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf\";i:700;s:91:\"http://fonts.gstatic.com/s/redactedscript/v3/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVmbI397ldkg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1089;a:8:{s:6:\"family\";s:9:\"Redressed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v23\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/redressed/v23/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1090;a:8:{s:6:\"family\";s:9:\"Reem Kufi\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:4:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/reemkufi/v16/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf\";i:500;s:91:\"http://fonts.gstatic.com/s/reemkufi/v16/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf\";i:600;s:91:\"http://fonts.gstatic.com/s/reemkufi/v16/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf\";i:700;s:91:\"http://fonts.gstatic.com/s/reemkufi/v16/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1091;a:8:{s:6:\"family\";s:13:\"Reenie Beanie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/reeniebeanie/v14/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1092;a:8:{s:6:\"family\";s:10:\"Reggae One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2021-11-04\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/reggaeone/v9/~CgwKClJlZ2dhZSBPbmUgACoECAEYAQ==.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1093;a:8:{s:6:\"family\";s:7:\"Revalia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/revalia/v18/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1094;a:8:{s:6:\"family\";s:13:\"Rhodium Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/rhodiumlibre/v15/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1095;a:8:{s:6:\"family\";s:6:\"Ribeye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/ribeye/v19/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1096;a:8:{s:6:\"family\";s:13:\"Ribeye Marrow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/ribeyemarrow/v20/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1097;a:8:{s:6:\"family\";s:9:\"Righteous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2020-09-02\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/righteous/v9/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1098;a:8:{s:6:\"family\";s:6:\"Risque\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/risque/v18/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1099;a:8:{s:6:\"family\";s:9:\"Road Rage\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:73:\"http://fonts.gstatic.com/s/roadrage/v3/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1100;a:8:{s:6:\"family\";s:6:\"Roboto\";s:8:\"variants\";a:12:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v29\";s:12:\"lastModified\";s:10:\"2021-09-22\";s:5:\"files\";a:12:{i:100;s:70:\"http://fonts.gstatic.com/s/roboto/v29/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf\";s:9:\"100italic\";s:73:\"http://fonts.gstatic.com/s/roboto/v29/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf\";i:300;s:72:\"http://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf\";s:9:\"300italic\";s:74:\"http://fonts.gstatic.com/s/roboto/v29/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf\";s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/roboto/v29/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf\";i:500;s:72:\"http://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf\";s:9:\"500italic\";s:74:\"http://fonts.gstatic.com/s/roboto/v29/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf\";s:9:\"700italic\";s:74:\"http://fonts.gstatic.com/s/roboto/v29/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf\";i:900;s:72:\"http://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf\";s:9:\"900italic\";s:74:\"http://fonts.gstatic.com/s/roboto/v29/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1101;a:8:{s:6:\"family\";s:16:\"Roboto Condensed\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v24\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:6:{i:300;s:94:\"http://fonts.gstatic.com/s/robotocondensed/v24/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf\";s:9:\"300italic\";s:97:\"http://fonts.gstatic.com/s/robotocondensed/v24/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf\";s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/robotocondensed/v24/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf\";s:6:\"italic\";s:93:\"http://fonts.gstatic.com/s/robotocondensed/v24/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf\";i:700;s:94:\"http://fonts.gstatic.com/s/robotocondensed/v24/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf\";s:9:\"700italic\";s:97:\"http://fonts.gstatic.com/s/robotocondensed/v24/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1102;a:8:{s:6:\"family\";s:11:\"Roboto Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:9:\"100italic\";i:8;s:9:\"200italic\";i:9;s:9:\"300italic\";i:10;s:6:\"italic\";i:11;s:9:\"500italic\";i:12;s:9:\"600italic\";i:13;s:9:\"700italic\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-01-30\";s:5:\"files\";a:14:{i:100;s:96:\"http://fonts.gstatic.com/s/robotomono/v13/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf\";i:200;s:96:\"http://fonts.gstatic.com/s/robotomono/v13/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf\";i:300;s:96:\"http://fonts.gstatic.com/s/robotomono/v13/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf\";s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/robotomono/v13/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/robotomono/v13/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/robotomono/v13/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/robotomono/v13/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf\";s:9:\"100italic\";s:98:\"http://fonts.gstatic.com/s/robotomono/v13/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf\";s:9:\"200italic\";s:98:\"http://fonts.gstatic.com/s/robotomono/v13/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf\";s:9:\"300italic\";s:98:\"http://fonts.gstatic.com/s/robotomono/v13/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf\";s:6:\"italic\";s:98:\"http://fonts.gstatic.com/s/robotomono/v13/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf\";s:9:\"500italic\";s:98:\"http://fonts.gstatic.com/s/robotomono/v13/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf\";s:9:\"600italic\";s:98:\"http://fonts.gstatic.com/s/robotomono/v13/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf\";s:9:\"700italic\";s:98:\"http://fonts.gstatic.com/s/robotomono/v13/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1103;a:8:{s:6:\"family\";s:12:\"Roboto Serif\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2022-02-12\";s:5:\"files\";a:18:{i:100;s:149:\"http://fonts.gstatic.com/s/robotoserif/v5/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6d2Af5fR4k.ttf\";i:200;s:149:\"http://fonts.gstatic.com/s/robotoserif/v5/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6d2Af5fR4k.ttf\";i:300;s:149:\"http://fonts.gstatic.com/s/robotoserif/v5/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6d2Af5fR4k.ttf\";s:7:\"regular\";s:149:\"http://fonts.gstatic.com/s/robotoserif/v5/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6d2Af5fR4k.ttf\";i:500;s:149:\"http://fonts.gstatic.com/s/robotoserif/v5/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf\";i:600;s:149:\"http://fonts.gstatic.com/s/robotoserif/v5/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6d2Af5fR4k.ttf\";i:700;s:149:\"http://fonts.gstatic.com/s/robotoserif/v5/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6d2Af5fR4k.ttf\";i:800;s:149:\"http://fonts.gstatic.com/s/robotoserif/v5/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6d2Af5fR4k.ttf\";i:900;s:149:\"http://fonts.gstatic.com/s/robotoserif/v5/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6d2Af5fR4k.ttf\";s:9:\"100italic\";s:152:\"http://fonts.gstatic.com/s/robotoserif/v5/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8BdxaV4nUFw.ttf\";s:9:\"200italic\";s:152:\"http://fonts.gstatic.com/s/robotoserif/v5/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8BdxaV4nUFw.ttf\";s:9:\"300italic\";s:152:\"http://fonts.gstatic.com/s/robotoserif/v5/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8BdxaV4nUFw.ttf\";s:6:\"italic\";s:152:\"http://fonts.gstatic.com/s/robotoserif/v5/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8BdxaV4nUFw.ttf\";s:9:\"500italic\";s:152:\"http://fonts.gstatic.com/s/robotoserif/v5/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8BdxaV4nUFw.ttf\";s:9:\"600italic\";s:152:\"http://fonts.gstatic.com/s/robotoserif/v5/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8BdxaV4nUFw.ttf\";s:9:\"700italic\";s:152:\"http://fonts.gstatic.com/s/robotoserif/v5/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8BdxaV4nUFw.ttf\";s:9:\"800italic\";s:152:\"http://fonts.gstatic.com/s/robotoserif/v5/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8BdxaV4nUFw.ttf\";s:9:\"900italic\";s:152:\"http://fonts.gstatic.com/s/robotoserif/v5/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8BdxaV4nUFw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1104;a:8:{s:6:\"family\";s:11:\"Roboto Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:96:\"http://fonts.gstatic.com/s/robotoslab/v22/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf\";i:200;s:96:\"http://fonts.gstatic.com/s/robotoslab/v22/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf\";i:300;s:96:\"http://fonts.gstatic.com/s/robotoslab/v22/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf\";s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/robotoslab/v22/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf\";i:500;s:96:\"http://fonts.gstatic.com/s/robotoslab/v22/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf\";i:600;s:96:\"http://fonts.gstatic.com/s/robotoslab/v22/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf\";i:700;s:96:\"http://fonts.gstatic.com/s/robotoslab/v22/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf\";i:800;s:96:\"http://fonts.gstatic.com/s/robotoslab/v22/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf\";i:900;s:96:\"http://fonts.gstatic.com/s/robotoslab/v22/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1105;a:8:{s:6:\"family\";s:9:\"Rochester\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/rochester/v16/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1106;a:8:{s:6:\"family\";s:7:\"Rock 3D\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/rock3d/v5/yYLp0hrL0PCo651513SnwRnQyNI.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1107;a:8:{s:6:\"family\";s:9:\"Rock Salt\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/rocksalt/v16/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1108;a:8:{s:6:\"family\";s:13:\"RocknRoll One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-11-04\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/rocknrollone/v7/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1109;a:8:{s:6:\"family\";s:7:\"Rokkitt\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v27\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:87:\"http://fonts.gstatic.com/s/rokkitt/v27/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf\";i:200;s:87:\"http://fonts.gstatic.com/s/rokkitt/v27/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf\";i:300;s:87:\"http://fonts.gstatic.com/s/rokkitt/v27/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/rokkitt/v27/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/rokkitt/v27/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/rokkitt/v27/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/rokkitt/v27/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/rokkitt/v27/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf\";i:900;s:87:\"http://fonts.gstatic.com/s/rokkitt/v27/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1110;a:8:{s:6:\"family\";s:9:\"Romanesco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/romanesco/v19/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1111;a:8:{s:6:\"family\";s:9:\"Ropa Sans\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/ropasans/v13/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf\";s:6:\"italic\";s:76:\"http://fonts.gstatic.com/s/ropasans/v13/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1112;a:8:{s:6:\"family\";s:7:\"Rosario\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:9:\"300italic\";i:6;s:6:\"italic\";i:7;s:9:\"500italic\";i:8;s:9:\"600italic\";i:9;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v25\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:10:{i:300;s:87:\"http://fonts.gstatic.com/s/rosario/v25/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/rosario/v25/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/rosario/v25/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/rosario/v25/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/rosario/v25/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf\";s:9:\"300italic\";s:90:\"http://fonts.gstatic.com/s/rosario/v25/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf\";s:6:\"italic\";s:90:\"http://fonts.gstatic.com/s/rosario/v25/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf\";s:9:\"500italic\";s:90:\"http://fonts.gstatic.com/s/rosario/v25/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf\";s:9:\"600italic\";s:90:\"http://fonts.gstatic.com/s/rosario/v25/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf\";s:9:\"700italic\";s:90:\"http://fonts.gstatic.com/s/rosario/v25/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1113;a:8:{s:6:\"family\";s:8:\"Rosarivo\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/rosarivo/v18/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf\";s:6:\"italic\";s:75:\"http://fonts.gstatic.com/s/rosarivo/v18/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1114;a:8:{s:6:\"family\";s:12:\"Rouge Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/rougescript/v12/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1115;a:8:{s:6:\"family\";s:7:\"Rowdies\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:3:{i:300;s:74:\"http://fonts.gstatic.com/s/rowdies/v13/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/rowdies/v13/ptRJTieMYPNBAK21zrdJwObZNQo.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/rowdies/v13/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1116;a:8:{s:6:\"family\";s:9:\"Rozha One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/rozhaone/v11/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1117;a:8:{s:6:\"family\";s:5:\"Rubik\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:9:\"300italic\";i:8;s:6:\"italic\";i:9;s:9:\"500italic\";i:10;s:9:\"600italic\";i:11;s:9:\"700italic\";i:12;s:9:\"800italic\";i:13;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:6:\"hebrew\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:14:{i:300;s:83:\"http://fonts.gstatic.com/s/rubik/v18/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/rubik/v18/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf\";i:500;s:83:\"http://fonts.gstatic.com/s/rubik/v18/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf\";i:600;s:83:\"http://fonts.gstatic.com/s/rubik/v18/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf\";i:700;s:83:\"http://fonts.gstatic.com/s/rubik/v18/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf\";i:800;s:83:\"http://fonts.gstatic.com/s/rubik/v18/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf\";i:900;s:83:\"http://fonts.gstatic.com/s/rubik/v18/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf\";s:9:\"300italic\";s:85:\"http://fonts.gstatic.com/s/rubik/v18/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf\";s:6:\"italic\";s:85:\"http://fonts.gstatic.com/s/rubik/v18/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf\";s:9:\"500italic\";s:85:\"http://fonts.gstatic.com/s/rubik/v18/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf\";s:9:\"600italic\";s:85:\"http://fonts.gstatic.com/s/rubik/v18/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf\";s:9:\"700italic\";s:85:\"http://fonts.gstatic.com/s/rubik/v18/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf\";s:9:\"800italic\";s:85:\"http://fonts.gstatic.com/s/rubik/v18/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf\";s:9:\"900italic\";s:85:\"http://fonts.gstatic.com/s/rubik/v18/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1118;a:8:{s:6:\"family\";s:13:\"Rubik Beastly\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:6:\"hebrew\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/rubikbeastly/v5/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1119;a:8:{s:6:\"family\";s:14:\"Rubik Mono One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:84:\"http://fonts.gstatic.com/s/rubikmonoone/v12/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1120;a:8:{s:6:\"family\";s:4:\"Ruda\";s:8:\"variants\";a:6:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:6:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/ruda/v21/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf\";i:500;s:80:\"http://fonts.gstatic.com/s/ruda/v21/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf\";i:600;s:80:\"http://fonts.gstatic.com/s/ruda/v21/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/ruda/v21/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf\";i:800;s:80:\"http://fonts.gstatic.com/s/ruda/v21/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf\";i:900;s:80:\"http://fonts.gstatic.com/s/ruda/v21/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1121;a:8:{s:6:\"family\";s:6:\"Rufina\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/rufina/v11/Yq6V-LyURyLy-aKyoxRktOdClg.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/rufina/v11/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1122;a:8:{s:6:\"family\";s:11:\"Ruge Boogie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/rugeboogie/v22/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1123;a:8:{s:6:\"family\";s:6:\"Ruluko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/ruluko/v19/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1124;a:8:{s:6:\"family\";s:10:\"Rum Raisin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/rumraisin/v18/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1125;a:8:{s:6:\"family\";s:14:\"Ruslan Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/ruslandisplay/v13/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1126;a:8:{s:6:\"family\";s:9:\"Russo One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/russoone/v13/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1127;a:8:{s:6:\"family\";s:6:\"Ruthie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/ruthie/v22/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1128;a:8:{s:6:\"family\";s:3:\"Rye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:61:\"http://fonts.gstatic.com/s/rye/v11/r05XGLJT86YDFpTsXOqx4w.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1129;a:8:{s:6:\"family\";s:13:\"STIX Two Text\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:6:\"italic\";i:5;s:9:\"500italic\";i:6;s:9:\"600italic\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:8:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/stixtwotext/v7/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOYWxFMN1WD.ttf\";i:500;s:98:\"http://fonts.gstatic.com/s/stixtwotext/v7/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOYWxFMN1WD.ttf\";i:600;s:98:\"http://fonts.gstatic.com/s/stixtwotext/v7/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOYWxFMN1WD.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/stixtwotext/v7/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOYWxFMN1WD.ttf\";s:6:\"italic\";s:101:\"http://fonts.gstatic.com/s/stixtwotext/v7/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURVuMkWDmSo.ttf\";s:9:\"500italic\";s:101:\"http://fonts.gstatic.com/s/stixtwotext/v7/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURVuMkWDmSo.ttf\";s:9:\"600italic\";s:101:\"http://fonts.gstatic.com/s/stixtwotext/v7/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURVuMkWDmSo.ttf\";s:9:\"700italic\";s:101:\"http://fonts.gstatic.com/s/stixtwotext/v7/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURVuMkWDmSo.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1130;a:8:{s:6:\"family\";s:10:\"Sacramento\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/sacramento/v12/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1131;a:8:{s:6:\"family\";s:7:\"Sahitya\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/sahitya/v15/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/sahitya/v15/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1132;a:8:{s:6:\"family\";s:4:\"Sail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/sail/v14/DPEjYwiBxwYJFBTDADYAbvw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1133;a:8:{s:6:\"family\";s:5:\"Saira\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2021-09-16\";s:5:\"files\";a:18:{i:100;s:99:\"http://fonts.gstatic.com/s/saira/v8/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDosg7lwYmUVY.ttf\";i:200;s:99:\"http://fonts.gstatic.com/s/saira/v8/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCosg7lwYmUVY.ttf\";i:300;s:99:\"http://fonts.gstatic.com/s/saira/v8/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCosg7lwYmUVY.ttf\";s:7:\"regular\";s:99:\"http://fonts.gstatic.com/s/saira/v8/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCosg7lwYmUVY.ttf\";i:500;s:99:\"http://fonts.gstatic.com/s/saira/v8/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCosg7lwYmUVY.ttf\";i:600;s:99:\"http://fonts.gstatic.com/s/saira/v8/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFosg7lwYmUVY.ttf\";i:700;s:99:\"http://fonts.gstatic.com/s/saira/v8/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fosg7lwYmUVY.ttf\";i:800;s:99:\"http://fonts.gstatic.com/s/saira/v8/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFosg7lwYmUVY.ttf\";i:900;s:99:\"http://fonts.gstatic.com/s/saira/v8/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFosg7lwYmUVY.ttf\";s:9:\"100italic\";s:102:\"http://fonts.gstatic.com/s/saira/v8/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxkyQjQVYmxA.ttf\";s:9:\"200italic\";s:102:\"http://fonts.gstatic.com/s/saira/v8/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxkyQjQVYmxA.ttf\";s:9:\"300italic\";s:102:\"http://fonts.gstatic.com/s/saira/v8/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxkyQjQVYmxA.ttf\";s:6:\"italic\";s:102:\"http://fonts.gstatic.com/s/saira/v8/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxkyQjQVYmxA.ttf\";s:9:\"500italic\";s:102:\"http://fonts.gstatic.com/s/saira/v8/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxkyQjQVYmxA.ttf\";s:9:\"600italic\";s:102:\"http://fonts.gstatic.com/s/saira/v8/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxkyQjQVYmxA.ttf\";s:9:\"700italic\";s:102:\"http://fonts.gstatic.com/s/saira/v8/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxkyQjQVYmxA.ttf\";s:9:\"800italic\";s:102:\"http://fonts.gstatic.com/s/saira/v8/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxkyQjQVYmxA.ttf\";s:9:\"900italic\";s:102:\"http://fonts.gstatic.com/s/saira/v8/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxkyQjQVYmxA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1134;a:8:{s:6:\"family\";s:15:\"Saira Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:9:{i:100;s:90:\"http://fonts.gstatic.com/s/sairacondensed/v10/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf\";i:200;s:92:\"http://fonts.gstatic.com/s/sairacondensed/v10/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf\";i:300;s:92:\"http://fonts.gstatic.com/s/sairacondensed/v10/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf\";s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/sairacondensed/v10/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf\";i:500;s:92:\"http://fonts.gstatic.com/s/sairacondensed/v10/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf\";i:600;s:92:\"http://fonts.gstatic.com/s/sairacondensed/v10/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf\";i:700;s:92:\"http://fonts.gstatic.com/s/sairacondensed/v10/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf\";i:800;s:92:\"http://fonts.gstatic.com/s/sairacondensed/v10/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf\";i:900;s:92:\"http://fonts.gstatic.com/s/sairacondensed/v10/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1135;a:8:{s:6:\"family\";s:21:\"Saira Extra Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:9:{i:100;s:102:\"http://fonts.gstatic.com/s/sairaextracondensed/v9/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf\";i:200;s:104:\"http://fonts.gstatic.com/s/sairaextracondensed/v9/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf\";i:300;s:104:\"http://fonts.gstatic.com/s/sairaextracondensed/v9/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf\";s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/sairaextracondensed/v9/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf\";i:500;s:104:\"http://fonts.gstatic.com/s/sairaextracondensed/v9/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf\";i:600;s:104:\"http://fonts.gstatic.com/s/sairaextracondensed/v9/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf\";i:700;s:104:\"http://fonts.gstatic.com/s/sairaextracondensed/v9/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf\";i:800;s:104:\"http://fonts.gstatic.com/s/sairaextracondensed/v9/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf\";i:900;s:104:\"http://fonts.gstatic.com/s/sairaextracondensed/v9/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1136;a:8:{s:6:\"family\";s:20:\"Saira Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:9:{i:100;s:100:\"http://fonts.gstatic.com/s/sairasemicondensed/v9/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf\";i:200;s:101:\"http://fonts.gstatic.com/s/sairasemicondensed/v9/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf\";i:300;s:101:\"http://fonts.gstatic.com/s/sairasemicondensed/v9/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf\";s:7:\"regular\";s:97:\"http://fonts.gstatic.com/s/sairasemicondensed/v9/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf\";i:500;s:101:\"http://fonts.gstatic.com/s/sairasemicondensed/v9/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf\";i:600;s:101:\"http://fonts.gstatic.com/s/sairasemicondensed/v9/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf\";i:700;s:101:\"http://fonts.gstatic.com/s/sairasemicondensed/v9/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf\";i:800;s:101:\"http://fonts.gstatic.com/s/sairasemicondensed/v9/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf\";i:900;s:101:\"http://fonts.gstatic.com/s/sairasemicondensed/v9/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1137;a:8:{s:6:\"family\";s:17:\"Saira Stencil One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/sairastencilone/v12/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1138;a:8:{s:6:\"family\";s:5:\"Salsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/salsa/v15/gNMKW3FiRpKj-imY8ncKEZez.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1139;a:8:{s:6:\"family\";s:7:\"Sanchez\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/sanchez/v11/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/sanchez/v11/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1140;a:8:{s:6:\"family\";s:8:\"Sancreek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/sancreek/v21/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1141;a:8:{s:6:\"family\";s:7:\"Sansita\";s:8:\"variants\";a:8:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:8:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/sansita/v8/QldONTRRphEb_-V7HBm7TXFf3qw.ttf\";s:6:\"italic\";s:72:\"http://fonts.gstatic.com/s/sansita/v8/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf\";i:700;s:73:\"http://fonts.gstatic.com/s/sansita/v8/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf\";s:9:\"700italic\";s:76:\"http://fonts.gstatic.com/s/sansita/v8/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf\";i:800;s:73:\"http://fonts.gstatic.com/s/sansita/v8/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf\";s:9:\"800italic\";s:76:\"http://fonts.gstatic.com/s/sansita/v8/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf\";i:900;s:73:\"http://fonts.gstatic.com/s/sansita/v8/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf\";s:9:\"900italic\";s:76:\"http://fonts.gstatic.com/s/sansita/v8/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1142;a:8:{s:6:\"family\";s:15:\"Sansita Swashed\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:7:{i:300;s:105:\"http://fonts.gstatic.com/s/sansitaswashed/v15/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf\";s:7:\"regular\";s:105:\"http://fonts.gstatic.com/s/sansitaswashed/v15/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf\";i:500;s:105:\"http://fonts.gstatic.com/s/sansitaswashed/v15/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf\";i:600;s:105:\"http://fonts.gstatic.com/s/sansitaswashed/v15/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf\";i:700;s:105:\"http://fonts.gstatic.com/s/sansitaswashed/v15/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf\";i:800;s:105:\"http://fonts.gstatic.com/s/sansitaswashed/v15/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf\";i:900;s:105:\"http://fonts.gstatic.com/s/sansitaswashed/v15/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1143;a:8:{s:6:\"family\";s:7:\"Sarabun\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:16:{i:100;s:73:\"http://fonts.gstatic.com/s/sarabun/v12/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf\";s:9:\"100italic\";s:75:\"http://fonts.gstatic.com/s/sarabun/v12/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf\";i:200;s:74:\"http://fonts.gstatic.com/s/sarabun/v12/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf\";s:9:\"200italic\";s:77:\"http://fonts.gstatic.com/s/sarabun/v12/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf\";i:300;s:74:\"http://fonts.gstatic.com/s/sarabun/v12/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf\";s:9:\"300italic\";s:77:\"http://fonts.gstatic.com/s/sarabun/v12/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf\";s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/sarabun/v12/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/sarabun/v12/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf\";i:500;s:74:\"http://fonts.gstatic.com/s/sarabun/v12/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf\";s:9:\"500italic\";s:77:\"http://fonts.gstatic.com/s/sarabun/v12/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf\";i:600;s:74:\"http://fonts.gstatic.com/s/sarabun/v12/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf\";s:9:\"600italic\";s:77:\"http://fonts.gstatic.com/s/sarabun/v12/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/sarabun/v12/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/sarabun/v12/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/sarabun/v12/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf\";s:9:\"800italic\";s:77:\"http://fonts.gstatic.com/s/sarabun/v12/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1144;a:8:{s:6:\"family\";s:6:\"Sarala\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/sarala/v8/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf\";i:700;s:71:\"http://fonts.gstatic.com/s/sarala/v8/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1145;a:8:{s:6:\"family\";s:6:\"Sarina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/sarina/v19/-F6wfjF3ITQwasLhLkDUriBQxw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1146;a:8:{s:6:\"family\";s:8:\"Sarpanch\";s:8:\"variants\";a:6:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:6:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/sarpanch/v9/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf\";i:500;s:75:\"http://fonts.gstatic.com/s/sarpanch/v9/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf\";i:600;s:75:\"http://fonts.gstatic.com/s/sarpanch/v9/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf\";i:700;s:75:\"http://fonts.gstatic.com/s/sarpanch/v9/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf\";i:800;s:75:\"http://fonts.gstatic.com/s/sarpanch/v9/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf\";i:900;s:75:\"http://fonts.gstatic.com/s/sarpanch/v9/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1147;a:8:{s:6:\"family\";s:11:\"Sassy Frass\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/sassyfrass/v3/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1148;a:8:{s:6:\"family\";s:7:\"Satisfy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2020-09-02\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/satisfy/v11/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1149;a:8:{s:6:\"family\";s:15:\"Sawarabi Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/sawarabigothic/v11/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1150;a:8:{s:6:\"family\";s:15:\"Sawarabi Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/sawarabimincho/v15/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1151;a:8:{s:6:\"family\";s:5:\"Scada\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:4:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/scada/v12/RLpxK5Pv5qumeWJoxzUobkvv.ttf\";s:6:\"italic\";s:68:\"http://fonts.gstatic.com/s/scada/v12/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/scada/v12/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf\";s:9:\"700italic\";s:72:\"http://fonts.gstatic.com/s/scada/v12/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1152;a:8:{s:6:\"family\";s:16:\"Scheherazade New\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:2:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/scheherazadenew/v8/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf\";i:700;s:93:\"http://fonts.gstatic.com/s/scheherazadenew/v8/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlYC-IKnoSE.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1153;a:8:{s:6:\"family\";s:10:\"Schoolbell\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/schoolbell/v11/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1154;a:8:{s:6:\"family\";s:9:\"Scope One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/scopeone/v12/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1155;a:8:{s:6:\"family\";s:14:\"Seaweed Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/seaweedscript/v11/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1156;a:8:{s:6:\"family\";s:11:\"Secular One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:6:\"hebrew\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/secularone/v9/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1157;a:8:{s:6:\"family\";s:12:\"Sedgwick Ave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/sedgwickave/v10/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1158;a:8:{s:6:\"family\";s:20:\"Sedgwick Ave Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/sedgwickavedisplay/v17/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1159;a:8:{s:6:\"family\";s:3:\"Sen\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"700\";i:2;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:3:{s:7:\"regular\";s:60:\"http://fonts.gstatic.com/s/sen/v5/6xKjdSxYI9_Hm_-MImrpLQ.ttf\";i:700;s:64:\"http://fonts.gstatic.com/s/sen/v5/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf\";i:800;s:64:\"http://fonts.gstatic.com/s/sen/v5/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1160;a:8:{s:6:\"family\";s:9:\"Sevillana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/sevillana/v19/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1161;a:8:{s:6:\"family\";s:11:\"Seymour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/seymourone/v18/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1162;a:8:{s:6:\"family\";s:18:\"Shadows Into Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/shadowsintolight/v14/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1163;a:8:{s:6:\"family\";s:22:\"Shadows Into Light Two\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:102:\"http://fonts.gstatic.com/s/shadowsintolighttwo/v11/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1164;a:8:{s:6:\"family\";s:8:\"Shalimar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/shalimar/v3/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1165;a:8:{s:6:\"family\";s:6:\"Shanti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/shanti/v14/t5thIREMM4uSDgzgU0ezpKfwzA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1166;a:8:{s:6:\"family\";s:5:\"Share\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:4:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/share/v14/i7dEIFliZjKNF5VNHLq2cV5d.ttf\";s:6:\"italic\";s:68:\"http://fonts.gstatic.com/s/share/v14/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/share/v14/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf\";s:9:\"700italic\";s:72:\"http://fonts.gstatic.com/s/share/v14/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1167;a:8:{s:6:\"family\";s:10:\"Share Tech\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/sharetech/v15/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1168;a:8:{s:6:\"family\";s:15:\"Share Tech Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/sharetechmono/v13/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1169;a:8:{s:6:\"family\";s:16:\"Shippori Antique\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/shipporiantique/v6/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1170;a:8:{s:6:\"family\";s:19:\"Shippori Antique B1\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:95:\"http://fonts.gstatic.com/s/shipporiantiqueb1/v6/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1171;a:8:{s:6:\"family\";s:15:\"Shippori Mincho\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2021-11-04\";s:5:\"files\";a:5:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/shipporimincho/v11/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf\";i:500;s:92:\"http://fonts.gstatic.com/s/shipporimincho/v11/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am5JEO5--2zg.ttf\";i:600;s:92:\"http://fonts.gstatic.com/s/shipporimincho/v11/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm5JEO5--2zg.ttf\";i:700;s:92:\"http://fonts.gstatic.com/s/shipporimincho/v11/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm5JEO5--2zg.ttf\";i:800;s:92:\"http://fonts.gstatic.com/s/shipporimincho/v11/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om5JEO5--2zg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1172;a:8:{s:6:\"family\";s:18:\"Shippori Mincho B1\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2021-11-04\";s:5:\"files\";a:5:{s:7:\"regular\";s:93:\"http://fonts.gstatic.com/s/shipporiminchob1/v14/~ChQKElNoaXBwb3JpIE1pbmNobyBCMSAAKgQIARgB.ttf\";i:500;s:97:\"http://fonts.gstatic.com/s/shipporiminchob1/v14/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRj0AyAAKgQIARgB.ttf\";i:600;s:97:\"http://fonts.gstatic.com/s/shipporiminchob1/v14/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRjYBCAAKgQIARgB.ttf\";i:700;s:97:\"http://fonts.gstatic.com/s/shipporiminchob1/v14/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRi8BSAAKgQIARgB.ttf\";i:800;s:97:\"http://fonts.gstatic.com/s/shipporiminchob1/v14/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRigBiAAKgQIARgB.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1173;a:8:{s:6:\"family\";s:7:\"Shizuru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/shizuru/v5/O4ZSFGfvnxFiCA3i30IJlgUTj2A.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1174;a:8:{s:6:\"family\";s:9:\"Shojumaru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/shojumaru/v13/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1175;a:8:{s:6:\"family\";s:11:\"Short Stack\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/shortstack/v13/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1176;a:8:{s:6:\"family\";s:9:\"Shrikhand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"gujarati\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/shrikhand/v9/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1177;a:8:{s:6:\"family\";s:8:\"Siemreap\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"khmer\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/siemreap/v15/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1178;a:8:{s:6:\"family\";s:10:\"Sigmar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/sigmarone/v15/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1179;a:8:{s:6:\"family\";s:7:\"Signika\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:87:\"http://fonts.gstatic.com/s/signika/v18/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tIJHJbGhs_cfKe1.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/signika/v18/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHJbGhs_cfKe1.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/signika/v18/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJlHJbGhs_cfKe1.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/signika/v18/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKJG5bGhs_cfKe1.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/signika/v18/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKwG5bGhs_cfKe1.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1180;a:8:{s:6:\"family\";s:16:\"Signika Negative\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:107:\"http://fonts.gstatic.com/s/signikanegative/v18/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73st9hiuEq8.ttf\";s:7:\"regular\";s:107:\"http://fonts.gstatic.com/s/signikanegative/v18/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73st9hiuEq8.ttf\";i:500;s:107:\"http://fonts.gstatic.com/s/signikanegative/v18/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73st9hiuEq8.ttf\";i:600;s:107:\"http://fonts.gstatic.com/s/signikanegative/v18/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3st9hiuEq8.ttf\";i:700;s:107:\"http://fonts.gstatic.com/s/signikanegative/v18/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3st9hiuEq8.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1181;a:8:{s:6:\"family\";s:9:\"Simonetta\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:4:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/simonetta/v21/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf\";s:6:\"italic\";s:77:\"http://fonts.gstatic.com/s/simonetta/v21/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf\";i:900;s:79:\"http://fonts.gstatic.com/s/simonetta/v21/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf\";s:9:\"900italic\";s:81:\"http://fonts.gstatic.com/s/simonetta/v21/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1182;a:8:{s:6:\"family\";s:10:\"Single Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:6:\"korean\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/singleday/v13/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1183;a:8:{s:6:\"family\";s:7:\"Sintony\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/sintony/v11/XoHm2YDqR7-98cVUITQnu98ojjs.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/sintony/v11/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1184;a:8:{s:6:\"family\";s:13:\"Sirin Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/sirinstencil/v19/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1185;a:8:{s:6:\"family\";s:8:\"Six Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/sixcaps/v14/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1186;a:8:{s:6:\"family\";s:7:\"Skranji\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/skranji/v11/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/skranji/v11/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1187;a:8:{s:6:\"family\";s:10:\"Slabo 13px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/slabo13px/v11/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1188;a:8:{s:6:\"family\";s:10:\"Slabo 27px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/slabo27px/v11/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1189;a:8:{s:6:\"family\";s:7:\"Slackey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/slackey/v13/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1190;a:8:{s:6:\"family\";s:6:\"Smokum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/smokum/v13/TK3iWkUbAhopmrdGHjUHte5fKg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1191;a:8:{s:6:\"family\";s:6:\"Smooch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/smooch/v3/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1192;a:8:{s:6:\"family\";s:6:\"Smythe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/smythe/v21/MwQ3bhT01--coT1BOLh_uGInjA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1193;a:8:{s:6:\"family\";s:7:\"Sniglet\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/sniglet/v15/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf\";i:800;s:74:\"http://fonts.gstatic.com/s/sniglet/v15/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1194;a:8:{s:6:\"family\";s:7:\"Snippet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/snippet/v12/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1195;a:8:{s:6:\"family\";s:13:\"Snowburst One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/snowburstone/v18/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1196;a:8:{s:6:\"family\";s:10:\"Sofadi One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/sofadione/v19/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1197;a:8:{s:6:\"family\";s:5:\"Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/sofia/v12/8QIHdirahM3j_vu-sowsrqjk.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1198;a:8:{s:6:\"family\";s:6:\"Solway\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:5:{i:300;s:72:\"http://fonts.gstatic.com/s/solway/v13/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf\";s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/solway/v13/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf\";i:500;s:72:\"http://fonts.gstatic.com/s/solway/v13/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/solway/v13/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf\";i:800;s:72:\"http://fonts.gstatic.com/s/solway/v13/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1199;a:8:{s:6:\"family\";s:10:\"Song Myung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/songmyung/v18/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1200;a:8:{s:6:\"family\";s:10:\"Sonsie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/sonsieone/v19/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1201;a:8:{s:6:\"family\";s:4:\"Sora\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:8:{i:100;s:79:\"http://fonts.gstatic.com/s/sora/v9/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf\";i:200;s:79:\"http://fonts.gstatic.com/s/sora/v9/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf\";i:300;s:79:\"http://fonts.gstatic.com/s/sora/v9/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf\";s:7:\"regular\";s:79:\"http://fonts.gstatic.com/s/sora/v9/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf\";i:500;s:79:\"http://fonts.gstatic.com/s/sora/v9/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf\";i:600;s:79:\"http://fonts.gstatic.com/s/sora/v9/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/sora/v9/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf\";i:800;s:79:\"http://fonts.gstatic.com/s/sora/v9/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1202;a:8:{s:6:\"family\";s:16:\"Sorts Mill Goudy\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/sortsmillgoudy/v13/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf\";s:6:\"italic\";s:92:\"http://fonts.gstatic.com/s/sortsmillgoudy/v13/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1203;a:8:{s:6:\"family\";s:15:\"Source Code Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:9:\"200italic\";i:9;s:9:\"300italic\";i:10;s:6:\"italic\";i:11;s:9:\"500italic\";i:12;s:9:\"600italic\";i:13;s:9:\"700italic\";i:14;s:9:\"800italic\";i:15;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:16:{i:200;s:104:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhM5hTXUcdJg.ttf\";i:300;s:104:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf\";s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf\";i:500;s:104:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf\";i:600;s:104:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf\";i:700;s:104:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhM5hTXUcdJg.ttf\";i:800;s:104:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhM5hTXUcdJg.ttf\";i:900;s:104:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhM5hTXUcdJg.ttf\";s:9:\"200italic\";s:107:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rSVcZZJiGpw.ttf\";s:9:\"300italic\";s:107:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rSVcZZJiGpw.ttf\";s:6:\"italic\";s:107:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSVcZZJiGpw.ttf\";s:9:\"500italic\";s:107:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rSVcZZJiGpw.ttf\";s:9:\"600italic\";s:107:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSVcZZJiGpw.ttf\";s:9:\"700italic\";s:107:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prSVcZZJiGpw.ttf\";s:9:\"800italic\";s:107:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprSVcZZJiGpw.ttf\";s:9:\"900italic\";s:107:\"http://fonts.gstatic.com/s/sourcecodepro/v20/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprSVcZZJiGpw.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1204;a:8:{s:6:\"family\";s:13:\"Source Sans 3\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:9:\"200italic\";i:9;s:9:\"300italic\";i:10;s:6:\"italic\";i:11;s:9:\"500italic\";i:12;s:9:\"600italic\";i:13;s:9:\"700italic\";i:14;s:9:\"800italic\";i:15;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v4\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:16:{i:200;s:98:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EN_io6npfB.ttf\";i:300;s:98:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf\";s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN_io6npfB.ttf\";i:500;s:98:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf\";i:600;s:98:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf\";i:800;s:98:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf\";i:900;s:98:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf\";s:9:\"200italic\";s:101:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9C4Ym4fB3Ts.ttf\";s:9:\"300italic\";s:101:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9C4Ym4fB3Ts.ttf\";s:6:\"italic\";s:101:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9C4Ym4fB3Ts.ttf\";s:9:\"500italic\";s:101:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9C4Ym4fB3Ts.ttf\";s:9:\"600italic\";s:101:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9C4Ym4fB3Ts.ttf\";s:9:\"700italic\";s:101:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9C4Ym4fB3Ts.ttf\";s:9:\"800italic\";s:101:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9C4Ym4fB3Ts.ttf\";s:9:\"900italic\";s:101:\"http://fonts.gstatic.com/s/sourcesans3/v4/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9C4Ym4fB3Ts.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1205;a:8:{s:6:\"family\";s:15:\"Source Sans Pro\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";}s:7:\"subsets\";a:7:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";i:6;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2021-11-10\";s:5:\"files\";a:12:{i:200;s:91:\"http://fonts.gstatic.com/s/sourcesanspro/v18/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf\";s:9:\"200italic\";s:93:\"http://fonts.gstatic.com/s/sourcesanspro/v18/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf\";i:300;s:91:\"http://fonts.gstatic.com/s/sourcesanspro/v18/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf\";s:9:\"300italic\";s:93:\"http://fonts.gstatic.com/s/sourcesanspro/v18/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/sourcesanspro/v18/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf\";s:6:\"italic\";s:89:\"http://fonts.gstatic.com/s/sourcesanspro/v18/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf\";i:600;s:91:\"http://fonts.gstatic.com/s/sourcesanspro/v18/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf\";s:9:\"600italic\";s:93:\"http://fonts.gstatic.com/s/sourcesanspro/v18/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf\";i:700;s:91:\"http://fonts.gstatic.com/s/sourcesanspro/v18/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf\";s:9:\"700italic\";s:93:\"http://fonts.gstatic.com/s/sourcesanspro/v18/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf\";i:900;s:91:\"http://fonts.gstatic.com/s/sourcesanspro/v18/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf\";s:9:\"900italic\";s:93:\"http://fonts.gstatic.com/s/sourcesanspro/v18/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1206;a:8:{s:6:\"family\";s:14:\"Source Serif 4\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:9:\"200italic\";i:9;s:9:\"300italic\";i:10;s:6:\"italic\";i:11;s:9:\"500italic\";i:12;s:9:\"600italic\";i:13;s:9:\"700italic\";i:14;s:9:\"800italic\";i:15;s:9:\"900italic\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:16:{i:200;s:118:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhxXD-wGvjU.ttf\";i:300;s:118:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhxXD-wGvjU.ttf\";s:7:\"regular\";s:118:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhxXD-wGvjU.ttf\";i:500;s:118:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhxXD-wGvjU.ttf\";i:600;s:118:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhxXD-wGvjU.ttf\";i:700;s:118:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhxXD-wGvjU.ttf\";i:800;s:118:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhxXD-wGvjU.ttf\";i:900;s:118:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhxXD-wGvjU.ttf\";s:9:\"200italic\";s:121:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dC84DrjXEXw.ttf\";s:9:\"300italic\";s:121:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dC84DrjXEXw.ttf\";s:6:\"italic\";s:121:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dC84DrjXEXw.ttf\";s:9:\"500italic\";s:121:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dC84DrjXEXw.ttf\";s:9:\"600italic\";s:121:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdC84DrjXEXw.ttf\";s:9:\"700italic\";s:121:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdC84DrjXEXw.ttf\";s:9:\"800italic\";s:121:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdC84DrjXEXw.ttf\";s:9:\"900italic\";s:121:\"http://fonts.gstatic.com/s/sourceserif4/v1/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdC84DrjXEXw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1207;a:8:{s:6:\"family\";s:16:\"Source Serif Pro\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2021-03-24\";s:5:\"files\";a:12:{i:200;s:93:\"http://fonts.gstatic.com/s/sourceserifpro/v11/neIXzD-0qpwxpaWvjeD0X88SAOeasbsfhSugxYUvZrI.ttf\";s:9:\"200italic\";s:96:\"http://fonts.gstatic.com/s/sourceserifpro/v11/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGbSqqwacqdrKvbQ.ttf\";i:300;s:93:\"http://fonts.gstatic.com/s/sourceserifpro/v11/neIXzD-0qpwxpaWvjeD0X88SAOeasd8chSugxYUvZrI.ttf\";s:9:\"300italic\";s:96:\"http://fonts.gstatic.com/s/sourceserifpro/v11/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGCSmqwacqdrKvbQ.ttf\";s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/sourceserifpro/v11/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf\";s:6:\"italic\";s:92:\"http://fonts.gstatic.com/s/sourceserifpro/v11/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQGOyYw2fw.ttf\";i:600;s:93:\"http://fonts.gstatic.com/s/sourceserifpro/v11/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf\";s:9:\"600italic\";s:96:\"http://fonts.gstatic.com/s/sourceserifpro/v11/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGfS-qwacqdrKvbQ.ttf\";i:700;s:93:\"http://fonts.gstatic.com/s/sourceserifpro/v11/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf\";s:9:\"700italic\";s:96:\"http://fonts.gstatic.com/s/sourceserifpro/v11/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGGS6qwacqdrKvbQ.ttf\";i:900;s:93:\"http://fonts.gstatic.com/s/sourceserifpro/v11/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSugxYUvZrI.ttf\";s:9:\"900italic\";s:96:\"http://fonts.gstatic.com/s/sourceserifpro/v11/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGISyqwacqdrKvbQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1208;a:8:{s:6:\"family\";s:13:\"Space Grotesk\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:100:\"http://fonts.gstatic.com/s/spacegrotesk/v10/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf\";s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/spacegrotesk/v10/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf\";i:500;s:100:\"http://fonts.gstatic.com/s/spacegrotesk/v10/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf\";i:600;s:100:\"http://fonts.gstatic.com/s/spacegrotesk/v10/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf\";i:700;s:100:\"http://fonts.gstatic.com/s/spacegrotesk/v10/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1209;a:8:{s:6:\"family\";s:10:\"Space Mono\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/spacemono/v10/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf\";s:6:\"italic\";s:79:\"http://fonts.gstatic.com/s/spacemono/v10/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/spacemono/v10/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf\";s:9:\"700italic\";s:83:\"http://fonts.gstatic.com/s/spacemono/v10/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1210;a:8:{s:6:\"family\";s:7:\"Spartan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:9:{i:100;s:87:\"http://fonts.gstatic.com/s/spartan/v10/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrGFuG6OChXtf4qS.ttf\";i:200;s:87:\"http://fonts.gstatic.com/s/spartan/v10/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrEFuW6OChXtf4qS.ttf\";i:300;s:87:\"http://fonts.gstatic.com/s/spartan/v10/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrHbuW6OChXtf4qS.ttf\";s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/spartan/v10/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrGFuW6OChXtf4qS.ttf\";i:500;s:87:\"http://fonts.gstatic.com/s/spartan/v10/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrG3uW6OChXtf4qS.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/spartan/v10/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrFbvm6OChXtf4qS.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/spartan/v10/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrFivm6OChXtf4qS.ttf\";i:800;s:87:\"http://fonts.gstatic.com/s/spartan/v10/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrEFvm6OChXtf4qS.ttf\";i:900;s:87:\"http://fonts.gstatic.com/s/spartan/v10/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrEsvm6OChXtf4qS.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1211;a:8:{s:6:\"family\";s:13:\"Special Elite\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/specialelite/v16/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1212;a:8:{s:6:\"family\";s:8:\"Spectral\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:14:{i:200;s:76:\"http://fonts.gstatic.com/s/spectral/v11/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf\";s:9:\"200italic\";s:79:\"http://fonts.gstatic.com/s/spectral/v11/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf\";i:300;s:76:\"http://fonts.gstatic.com/s/spectral/v11/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf\";s:9:\"300italic\";s:79:\"http://fonts.gstatic.com/s/spectral/v11/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf\";s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/spectral/v11/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf\";s:6:\"italic\";s:75:\"http://fonts.gstatic.com/s/spectral/v11/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf\";i:500;s:76:\"http://fonts.gstatic.com/s/spectral/v11/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf\";s:9:\"500italic\";s:79:\"http://fonts.gstatic.com/s/spectral/v11/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf\";i:600;s:76:\"http://fonts.gstatic.com/s/spectral/v11/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf\";s:9:\"600italic\";s:79:\"http://fonts.gstatic.com/s/spectral/v11/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/spectral/v11/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf\";s:9:\"700italic\";s:79:\"http://fonts.gstatic.com/s/spectral/v11/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf\";i:800;s:76:\"http://fonts.gstatic.com/s/spectral/v11/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf\";s:9:\"800italic\";s:79:\"http://fonts.gstatic.com/s/spectral/v11/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1213;a:8:{s:6:\"family\";s:11:\"Spectral SC\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:14:{i:200;s:81:\"http://fonts.gstatic.com/s/spectralsc/v9/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf\";s:9:\"200italic\";s:84:\"http://fonts.gstatic.com/s/spectralsc/v9/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf\";i:300;s:81:\"http://fonts.gstatic.com/s/spectralsc/v9/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf\";s:9:\"300italic\";s:84:\"http://fonts.gstatic.com/s/spectralsc/v9/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf\";s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/spectralsc/v9/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf\";s:6:\"italic\";s:80:\"http://fonts.gstatic.com/s/spectralsc/v9/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf\";i:500;s:81:\"http://fonts.gstatic.com/s/spectralsc/v9/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf\";s:9:\"500italic\";s:84:\"http://fonts.gstatic.com/s/spectralsc/v9/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf\";i:600;s:81:\"http://fonts.gstatic.com/s/spectralsc/v9/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf\";s:9:\"600italic\";s:84:\"http://fonts.gstatic.com/s/spectralsc/v9/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf\";i:700;s:81:\"http://fonts.gstatic.com/s/spectralsc/v9/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf\";s:9:\"700italic\";s:84:\"http://fonts.gstatic.com/s/spectralsc/v9/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf\";i:800;s:81:\"http://fonts.gstatic.com/s/spectralsc/v9/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf\";s:9:\"800italic\";s:84:\"http://fonts.gstatic.com/s/spectralsc/v9/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1214;a:8:{s:6:\"family\";s:10:\"Spicy Rice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/spicyrice/v19/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1215;a:8:{s:6:\"family\";s:9:\"Spinnaker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/spinnaker/v15/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1216;a:8:{s:6:\"family\";s:6:\"Spirax\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/spirax/v19/buE3poKgYNLy0F3cXktt-Csn-Q.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1217;a:8:{s:6:\"family\";s:11:\"Spline Sans\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:95:\"http://fonts.gstatic.com/s/splinesans/v3/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYEtvlUfE2kw.ttf\";s:7:\"regular\";s:95:\"http://fonts.gstatic.com/s/splinesans/v3/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYEtvlUfE2kw.ttf\";i:500;s:95:\"http://fonts.gstatic.com/s/splinesans/v3/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYEtvlUfE2kw.ttf\";i:600;s:95:\"http://fonts.gstatic.com/s/splinesans/v3/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YEtvlUfE2kw.ttf\";i:700;s:95:\"http://fonts.gstatic.com/s/splinesans/v3/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YEtvlUfE2kw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1218;a:8:{s:6:\"family\";s:10:\"Squada One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/squadaone/v12/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1219;a:8:{s:6:\"family\";s:20:\"Sree Krushnadevaraya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:99:\"http://fonts.gstatic.com/s/sreekrushnadevaraya/v19/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1220;a:8:{s:6:\"family\";s:8:\"Sriracha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/sriracha/v8/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1221;a:8:{s:6:\"family\";s:8:\"Srisakdi\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:2:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/srisakdi/v14/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/srisakdi/v14/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1222;a:8:{s:6:\"family\";s:11:\"Staatliches\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:79:\"http://fonts.gstatic.com/s/staatliches/v10/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1223;a:8:{s:6:\"family\";s:9:\"Stalemate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/stalemate/v18/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1224;a:8:{s:6:\"family\";s:13:\"Stalinist One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v43\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/stalinistone/v43/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1225;a:8:{s:6:\"family\";s:15:\"Stardos Stencil\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:2:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/stardosstencil/v11/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf\";i:700;s:92:\"http://fonts.gstatic.com/s/stardosstencil/v11/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1226;a:8:{s:6:\"family\";s:5:\"Stick\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/stick/v13/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1227;a:8:{s:6:\"family\";s:14:\"Stick No Bills\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:7:\"sinhala\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:7:{i:200;s:101:\"http://fonts.gstatic.com/s/sticknobills/v6/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7KriwKhcTKA.ttf\";i:300;s:101:\"http://fonts.gstatic.com/s/sticknobills/v6/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7KriwKhcTKA.ttf\";s:7:\"regular\";s:101:\"http://fonts.gstatic.com/s/sticknobills/v6/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7KriwKhcTKA.ttf\";i:500;s:101:\"http://fonts.gstatic.com/s/sticknobills/v6/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7KriwKhcTKA.ttf\";i:600;s:101:\"http://fonts.gstatic.com/s/sticknobills/v6/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7KriwKhcTKA.ttf\";i:700;s:101:\"http://fonts.gstatic.com/s/sticknobills/v6/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7KriwKhcTKA.ttf\";i:800;s:101:\"http://fonts.gstatic.com/s/sticknobills/v6/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7KriwKhcTKA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1228;a:8:{s:6:\"family\";s:21:\"Stint Ultra Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:101:\"http://fonts.gstatic.com/s/stintultracondensed/v19/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1229;a:8:{s:6:\"family\";s:20:\"Stint Ultra Expanded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/stintultraexpanded/v18/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1230;a:8:{s:6:\"family\";s:5:\"Stoke\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:2:{i:300;s:69:\"http://fonts.gstatic.com/s/stoke/v20/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf\";s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/stoke/v20/z7NadRb7aTMfKONpfihK1YTV.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1231;a:8:{s:6:\"family\";s:6:\"Strait\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/strait/v11/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1232;a:8:{s:6:\"family\";s:12:\"Style Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/stylescript/v5/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1233;a:8:{s:6:\"family\";s:7:\"Stylish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/stylish/v18/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1234;a:8:{s:6:\"family\";s:19:\"Sue Ellen Francisco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/sueellenfrancisco/v14/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1235;a:8:{s:6:\"family\";s:8:\"Suez One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:6:\"hebrew\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/suezone/v8/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1236;a:8:{s:6:\"family\";s:13:\"Sulphur Point\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:3:{i:300;s:87:\"http://fonts.gstatic.com/s/sulphurpoint/v12/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/sulphurpoint/v12/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/sulphurpoint/v12/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1237;a:8:{s:6:\"family\";s:6:\"Sumana\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:2:{s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/sumana/v8/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf\";i:700;s:71:\"http://fonts.gstatic.com/s/sumana/v8/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1238;a:8:{s:6:\"family\";s:9:\"Sunflower\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:3:{i:300;s:79:\"http://fonts.gstatic.com/s/sunflower/v12/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf\";i:500;s:79:\"http://fonts.gstatic.com/s/sunflower/v12/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/sunflower/v12/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1239;a:8:{s:6:\"family\";s:9:\"Sunshiney\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/sunshiney/v13/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1240;a:8:{s:6:\"family\";s:16:\"Supermercado One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/supermercadoone/v20/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1241;a:8:{s:6:\"family\";s:4:\"Sura\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:2:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/sura/v13/SZc23FL5PbyzFf5UWzXtjUM.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/sura/v13/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1242;a:8:{s:6:\"family\";s:7:\"Suranna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/suranna/v11/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1243;a:8:{s:6:\"family\";s:9:\"Suravaram\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/suravaram/v19/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1244;a:8:{s:6:\"family\";s:11:\"Suwannaphum\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"700\";i:4;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v27\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:5:{i:100;s:82:\"http://fonts.gstatic.com/s/suwannaphum/v27/jAnAgHV7GtDvc8jbe8hXXL3B9cSWXx2VZmk.ttf\";i:300;s:83:\"http://fonts.gstatic.com/s/suwannaphum/v27/jAnfgHV7GtDvc8jbe8hXXL0J1-S8cRGcf3Ai.ttf\";s:7:\"regular\";s:79:\"http://fonts.gstatic.com/s/suwannaphum/v27/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf\";i:700;s:83:\"http://fonts.gstatic.com/s/suwannaphum/v27/jAnfgHV7GtDvc8jbe8hXXL0Z0OS8cRGcf3Ai.ttf\";i:900;s:83:\"http://fonts.gstatic.com/s/suwannaphum/v27/jAnfgHV7GtDvc8jbe8hXXL0h0uS8cRGcf3Ai.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1245;a:8:{s:6:\"family\";s:18:\"Swanky and Moo Moo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:93:\"http://fonts.gstatic.com/s/swankyandmoomoo/v20/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1246;a:8:{s:6:\"family\";s:9:\"Syncopate\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/syncopate/v17/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/syncopate/v17/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1247;a:8:{s:6:\"family\";s:4:\"Syne\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/syne/v12/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf\";i:500;s:80:\"http://fonts.gstatic.com/s/syne/v12/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf\";i:600;s:80:\"http://fonts.gstatic.com/s/syne/v12/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/syne/v12/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf\";i:800;s:80:\"http://fonts.gstatic.com/s/syne/v12/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1248;a:8:{s:6:\"family\";s:9:\"Syne Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/synemono/v13/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1249;a:8:{s:6:\"family\";s:12:\"Syne Tactile\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-12-01\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/synetactile/v13/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1250;a:8:{s:6:\"family\";s:7:\"Tajawal\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:7:{i:200;s:73:\"http://fonts.gstatic.com/s/tajawal/v8/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf\";i:300;s:73:\"http://fonts.gstatic.com/s/tajawal/v8/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf\";s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/tajawal/v8/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf\";i:500;s:73:\"http://fonts.gstatic.com/s/tajawal/v8/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf\";i:700;s:73:\"http://fonts.gstatic.com/s/tajawal/v8/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf\";i:800;s:73:\"http://fonts.gstatic.com/s/tajawal/v8/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf\";i:900;s:73:\"http://fonts.gstatic.com/s/tajawal/v8/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1251;a:8:{s:6:\"family\";s:9:\"Tangerine\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:2:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/tangerine/v15/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf\";i:700;s:79:\"http://fonts.gstatic.com/s/tangerine/v15/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1252;a:8:{s:6:\"family\";s:6:\"Taprom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"khmer\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v25\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/taprom/v25/UcCn3F82JHycULbFQyk3-0kvHg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1253;a:8:{s:6:\"family\";s:5:\"Tauri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/tauri/v14/TwMA-IISS0AM3IpVWHU_TBqO.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1254;a:8:{s:6:\"family\";s:7:\"Taviraj\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:18:{i:100;s:72:\"http://fonts.gstatic.com/s/taviraj/v9/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf\";s:9:\"100italic\";s:74:\"http://fonts.gstatic.com/s/taviraj/v9/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf\";i:200;s:73:\"http://fonts.gstatic.com/s/taviraj/v9/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf\";s:9:\"200italic\";s:76:\"http://fonts.gstatic.com/s/taviraj/v9/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf\";i:300;s:73:\"http://fonts.gstatic.com/s/taviraj/v9/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf\";s:9:\"300italic\";s:76:\"http://fonts.gstatic.com/s/taviraj/v9/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf\";s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/taviraj/v9/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf\";s:6:\"italic\";s:72:\"http://fonts.gstatic.com/s/taviraj/v9/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf\";i:500;s:73:\"http://fonts.gstatic.com/s/taviraj/v9/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf\";s:9:\"500italic\";s:76:\"http://fonts.gstatic.com/s/taviraj/v9/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf\";i:600;s:73:\"http://fonts.gstatic.com/s/taviraj/v9/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf\";s:9:\"600italic\";s:76:\"http://fonts.gstatic.com/s/taviraj/v9/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf\";i:700;s:73:\"http://fonts.gstatic.com/s/taviraj/v9/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf\";s:9:\"700italic\";s:76:\"http://fonts.gstatic.com/s/taviraj/v9/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf\";i:800;s:73:\"http://fonts.gstatic.com/s/taviraj/v9/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf\";s:9:\"800italic\";s:76:\"http://fonts.gstatic.com/s/taviraj/v9/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf\";i:900;s:73:\"http://fonts.gstatic.com/s/taviraj/v9/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf\";s:9:\"900italic\";s:76:\"http://fonts.gstatic.com/s/taviraj/v9/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1255;a:8:{s:6:\"family\";s:4:\"Teko\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:5:{i:300;s:67:\"http://fonts.gstatic.com/s/teko/v14/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf\";s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/teko/v14/LYjNdG7kmE0gTaR3pCtBtVs.ttf\";i:500;s:67:\"http://fonts.gstatic.com/s/teko/v14/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf\";i:600;s:67:\"http://fonts.gstatic.com/s/teko/v14/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/teko/v14/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1256;a:8:{s:6:\"family\";s:5:\"Telex\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/telex/v12/ieVw2Y1fKWmIO9fTB1piKFIf.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1257;a:8:{s:6:\"family\";s:18:\"Tenali Ramakrishna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:95:\"http://fonts.gstatic.com/s/tenaliramakrishna/v10/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1258;a:8:{s:6:\"family\";s:10:\"Tenor Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/tenorsans/v15/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1259;a:8:{s:6:\"family\";s:11:\"Text Me One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/textmeone/v18/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1260;a:8:{s:6:\"family\";s:9:\"Texturina\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:18:{i:100;s:108:\"http://fonts.gstatic.com/s/texturina/v9/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ug25riW1OD.ttf\";i:200;s:108:\"http://fonts.gstatic.com/s/texturina/v9/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUg25riW1OD.ttf\";i:300;s:108:\"http://fonts.gstatic.com/s/texturina/v9/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUg25riW1OD.ttf\";s:7:\"regular\";s:108:\"http://fonts.gstatic.com/s/texturina/v9/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUg25riW1OD.ttf\";i:500;s:108:\"http://fonts.gstatic.com/s/texturina/v9/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUg25riW1OD.ttf\";i:600;s:108:\"http://fonts.gstatic.com/s/texturina/v9/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUg25riW1OD.ttf\";i:700;s:108:\"http://fonts.gstatic.com/s/texturina/v9/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUg25riW1OD.ttf\";i:800;s:108:\"http://fonts.gstatic.com/s/texturina/v9/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUg25riW1OD.ttf\";i:900;s:108:\"http://fonts.gstatic.com/s/texturina/v9/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUg25riW1OD.ttf\";s:9:\"100italic\";s:111:\"http://fonts.gstatic.com/s/texturina/v9/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0Z7AXkODN94.ttf\";s:9:\"200italic\";s:111:\"http://fonts.gstatic.com/s/texturina/v9/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0Z7AXkODN94.ttf\";s:9:\"300italic\";s:111:\"http://fonts.gstatic.com/s/texturina/v9/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0Z7AXkODN94.ttf\";s:6:\"italic\";s:111:\"http://fonts.gstatic.com/s/texturina/v9/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0Z7AXkODN94.ttf\";s:9:\"500italic\";s:111:\"http://fonts.gstatic.com/s/texturina/v9/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0Z7AXkODN94.ttf\";s:9:\"600italic\";s:111:\"http://fonts.gstatic.com/s/texturina/v9/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0Z7AXkODN94.ttf\";s:9:\"700italic\";s:111:\"http://fonts.gstatic.com/s/texturina/v9/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0Z7AXkODN94.ttf\";s:9:\"800italic\";s:111:\"http://fonts.gstatic.com/s/texturina/v9/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0Z7AXkODN94.ttf\";s:9:\"900italic\";s:111:\"http://fonts.gstatic.com/s/texturina/v9/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0Z7AXkODN94.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1261;a:8:{s:6:\"family\";s:9:\"Thasadith\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:4:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/thasadith/v7/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf\";s:6:\"italic\";s:76:\"http://fonts.gstatic.com/s/thasadith/v7/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf\";i:700;s:78:\"http://fonts.gstatic.com/s/thasadith/v7/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf\";s:9:\"700italic\";s:80:\"http://fonts.gstatic.com/s/thasadith/v7/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1262;a:8:{s:6:\"family\";s:18:\"The Girl Next Door\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:93:\"http://fonts.gstatic.com/s/thegirlnextdoor/v16/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1263;a:8:{s:6:\"family\";s:12:\"The Nautigal\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:2:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/thenautigal/v1/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf\";i:700;s:84:\"http://fonts.gstatic.com/s/thenautigal/v1/VdGGAZ8ZH51Lvng9fQV2bfKTWypA2_-C7LoS7g.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1264;a:8:{s:6:\"family\";s:6:\"Tienne\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"700\";i:2;s:3:\"900\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:3:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/tienne/v18/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/tienne/v18/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf\";i:900;s:72:\"http://fonts.gstatic.com/s/tienne/v18/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1265;a:8:{s:6:\"family\";s:7:\"Tillana\";s:8:\"variants\";a:5:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:5:{s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/tillana/v9/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf\";i:500;s:73:\"http://fonts.gstatic.com/s/tillana/v9/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf\";i:600;s:73:\"http://fonts.gstatic.com/s/tillana/v9/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf\";i:700;s:73:\"http://fonts.gstatic.com/s/tillana/v9/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf\";i:800;s:73:\"http://fonts.gstatic.com/s/tillana/v9/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1266;a:8:{s:6:\"family\";s:7:\"Timmana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:6:\"telugu\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/timmana/v10/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1267;a:8:{s:6:\"family\";s:5:\"Tinos\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/tinos/v22/buE4poGnedXvwgX8dGVh8TI-.ttf\";s:6:\"italic\";s:68:\"http://fonts.gstatic.com/s/tinos/v22/buE2poGnedXvwjX-fmFD9CI-4NU.ttf\";i:700;s:69:\"http://fonts.gstatic.com/s/tinos/v22/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf\";s:9:\"700italic\";s:72:\"http://fonts.gstatic.com/s/tinos/v22/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1268;a:8:{s:6:\"family\";s:9:\"Titan One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/titanone/v11/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1269;a:8:{s:6:\"family\";s:13:\"Titillium Web\";s:8:\"variants\";a:11:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:7:\"regular\";i:5;s:6:\"italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"900\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:11:{i:200;s:87:\"http://fonts.gstatic.com/s/titilliumweb/v14/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf\";s:9:\"200italic\";s:90:\"http://fonts.gstatic.com/s/titilliumweb/v14/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf\";i:300;s:87:\"http://fonts.gstatic.com/s/titilliumweb/v14/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf\";s:9:\"300italic\";s:90:\"http://fonts.gstatic.com/s/titilliumweb/v14/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/titilliumweb/v14/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf\";s:6:\"italic\";s:86:\"http://fonts.gstatic.com/s/titilliumweb/v14/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf\";i:600;s:87:\"http://fonts.gstatic.com/s/titilliumweb/v14/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf\";s:9:\"600italic\";s:90:\"http://fonts.gstatic.com/s/titilliumweb/v14/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/titilliumweb/v14/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf\";s:9:\"700italic\";s:90:\"http://fonts.gstatic.com/s/titilliumweb/v14/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf\";i:900;s:87:\"http://fonts.gstatic.com/s/titilliumweb/v14/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1270;a:8:{s:6:\"family\";s:8:\"Tomorrow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:18:{i:100;s:75:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf\";s:9:\"100italic\";s:78:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf\";i:200;s:76:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf\";s:9:\"200italic\";s:79:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf\";i:300;s:76:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf\";s:9:\"300italic\";s:79:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf\";s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf\";s:6:\"italic\";s:75:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf\";i:500;s:76:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf\";s:9:\"500italic\";s:79:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf\";i:600;s:76:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf\";s:9:\"600italic\";s:79:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf\";i:700;s:76:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf\";s:9:\"700italic\";s:79:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf\";i:800;s:76:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf\";s:9:\"800italic\";s:79:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf\";i:900;s:76:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf\";s:9:\"900italic\";s:79:\"http://fonts.gstatic.com/s/tomorrow/v13/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1271;a:8:{s:6:\"family\";s:7:\"Tourney\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v4\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:18:{i:100;s:104:\"http://fonts.gstatic.com/s/tourney/v4/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByZTp1I1LcGA.ttf\";i:200;s:104:\"http://fonts.gstatic.com/s/tourney/v4/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyZTp1I1LcGA.ttf\";i:300;s:104:\"http://fonts.gstatic.com/s/tourney/v4/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyZTp1I1LcGA.ttf\";s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/tourney/v4/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyZTp1I1LcGA.ttf\";i:500;s:104:\"http://fonts.gstatic.com/s/tourney/v4/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyZTp1I1LcGA.ttf\";i:600;s:104:\"http://fonts.gstatic.com/s/tourney/v4/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyZTp1I1LcGA.ttf\";i:700;s:104:\"http://fonts.gstatic.com/s/tourney/v4/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyZTp1I1LcGA.ttf\";i:800;s:104:\"http://fonts.gstatic.com/s/tourney/v4/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyZTp1I1LcGA.ttf\";i:900;s:104:\"http://fonts.gstatic.com/s/tourney/v4/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyZTp1I1LcGA.ttf\";s:9:\"100italic\";s:106:\"http://fonts.gstatic.com/s/tourney/v4/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzBxAVfMGOPb.ttf\";s:9:\"200italic\";s:106:\"http://fonts.gstatic.com/s/tourney/v4/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjBxAVfMGOPb.ttf\";s:9:\"300italic\";s:106:\"http://fonts.gstatic.com/s/tourney/v4/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjBxAVfMGOPb.ttf\";s:6:\"italic\";s:106:\"http://fonts.gstatic.com/s/tourney/v4/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjBxAVfMGOPb.ttf\";s:9:\"500italic\";s:106:\"http://fonts.gstatic.com/s/tourney/v4/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjBxAVfMGOPb.ttf\";s:9:\"600italic\";s:106:\"http://fonts.gstatic.com/s/tourney/v4/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITBxAVfMGOPb.ttf\";s:9:\"700italic\";s:106:\"http://fonts.gstatic.com/s/tourney/v4/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITBxAVfMGOPb.ttf\";s:9:\"800italic\";s:106:\"http://fonts.gstatic.com/s/tourney/v4/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITBxAVfMGOPb.ttf\";s:9:\"900italic\";s:106:\"http://fonts.gstatic.com/s/tourney/v4/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITBxAVfMGOPb.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1272;a:8:{s:6:\"family\";s:11:\"Trade Winds\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/tradewinds/v15/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1273;a:8:{s:6:\"family\";s:9:\"Train One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/trainone/v11/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1274;a:8:{s:6:\"family\";s:7:\"Trirong\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:7:\"regular\";i:7;s:6:\"italic\";i:8;s:3:\"500\";i:9;s:9:\"500italic\";i:10;s:3:\"600\";i:11;s:9:\"600italic\";i:12;s:3:\"700\";i:13;s:9:\"700italic\";i:14;s:3:\"800\";i:15;s:9:\"800italic\";i:16;s:3:\"900\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:4:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:4:\"thai\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:18:{i:100;s:72:\"http://fonts.gstatic.com/s/trirong/v9/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf\";s:9:\"100italic\";s:74:\"http://fonts.gstatic.com/s/trirong/v9/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf\";i:200;s:73:\"http://fonts.gstatic.com/s/trirong/v9/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf\";s:9:\"200italic\";s:76:\"http://fonts.gstatic.com/s/trirong/v9/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf\";i:300;s:73:\"http://fonts.gstatic.com/s/trirong/v9/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf\";s:9:\"300italic\";s:76:\"http://fonts.gstatic.com/s/trirong/v9/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf\";s:7:\"regular\";s:69:\"http://fonts.gstatic.com/s/trirong/v9/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf\";s:6:\"italic\";s:72:\"http://fonts.gstatic.com/s/trirong/v9/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf\";i:500;s:73:\"http://fonts.gstatic.com/s/trirong/v9/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf\";s:9:\"500italic\";s:76:\"http://fonts.gstatic.com/s/trirong/v9/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf\";i:600;s:73:\"http://fonts.gstatic.com/s/trirong/v9/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf\";s:9:\"600italic\";s:76:\"http://fonts.gstatic.com/s/trirong/v9/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf\";i:700;s:73:\"http://fonts.gstatic.com/s/trirong/v9/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf\";s:9:\"700italic\";s:76:\"http://fonts.gstatic.com/s/trirong/v9/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf\";i:800;s:73:\"http://fonts.gstatic.com/s/trirong/v9/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf\";s:9:\"800italic\";s:76:\"http://fonts.gstatic.com/s/trirong/v9/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf\";i:900;s:73:\"http://fonts.gstatic.com/s/trirong/v9/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf\";s:9:\"900italic\";s:76:\"http://fonts.gstatic.com/s/trirong/v9/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1275;a:8:{s:6:\"family\";s:8:\"Trispace\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:8:{i:100;s:106:\"http://fonts.gstatic.com/s/trispace/v6/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf\";i:200;s:106:\"http://fonts.gstatic.com/s/trispace/v6/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf\";i:300;s:106:\"http://fonts.gstatic.com/s/trispace/v6/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf\";s:7:\"regular\";s:106:\"http://fonts.gstatic.com/s/trispace/v6/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf\";i:500;s:106:\"http://fonts.gstatic.com/s/trispace/v6/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf\";i:600;s:106:\"http://fonts.gstatic.com/s/trispace/v6/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf\";i:700;s:106:\"http://fonts.gstatic.com/s/trispace/v6/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf\";i:800;s:106:\"http://fonts.gstatic.com/s/trispace/v6/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1276;a:8:{s:6:\"family\";s:7:\"Trocchi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/trocchi/v12/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1277;a:8:{s:6:\"family\";s:7:\"Trochut\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:3:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/trochut/v18/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/trochut/v18/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/trochut/v18/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1278;a:8:{s:6:\"family\";s:10:\"Truculenta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:9:{i:100;s:128:\"http://fonts.gstatic.com/s/truculenta/v6/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswcFHnJMMhg.ttf\";i:200;s:128:\"http://fonts.gstatic.com/s/truculenta/v6/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswcFHnJMMhg.ttf\";i:300;s:128:\"http://fonts.gstatic.com/s/truculenta/v6/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswcFHnJMMhg.ttf\";s:7:\"regular\";s:128:\"http://fonts.gstatic.com/s/truculenta/v6/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswcFHnJMMhg.ttf\";i:500;s:128:\"http://fonts.gstatic.com/s/truculenta/v6/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswcFHnJMMhg.ttf\";i:600;s:128:\"http://fonts.gstatic.com/s/truculenta/v6/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswcFHnJMMhg.ttf\";i:700;s:128:\"http://fonts.gstatic.com/s/truculenta/v6/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswcFHnJMMhg.ttf\";i:800;s:128:\"http://fonts.gstatic.com/s/truculenta/v6/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswcFHnJMMhg.ttf\";i:900;s:128:\"http://fonts.gstatic.com/s/truculenta/v6/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswcFHnJMMhg.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1279;a:8:{s:6:\"family\";s:7:\"Trykker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/trykker/v19/KtktALyWZJXudUPzhNnoOd2j22U.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1280;a:8:{s:6:\"family\";s:10:\"Tulpen One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/tulpenone/v12/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1281;a:8:{s:6:\"family\";s:11:\"Turret Road\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"800\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:6:{i:200;s:81:\"http://fonts.gstatic.com/s/turretroad/v5/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf\";i:300;s:81:\"http://fonts.gstatic.com/s/turretroad/v5/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf\";s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/turretroad/v5/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf\";i:500;s:81:\"http://fonts.gstatic.com/s/turretroad/v5/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf\";i:700;s:81:\"http://fonts.gstatic.com/s/turretroad/v5/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf\";i:800;s:81:\"http://fonts.gstatic.com/s/turretroad/v5/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1282;a:8:{s:6:\"family\";s:12:\"Twinkle Star\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/twinklestar/v1/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1283;a:8:{s:6:\"family\";s:6:\"Ubuntu\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:8:{i:300;s:72:\"http://fonts.gstatic.com/s/ubuntu/v19/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf\";s:9:\"300italic\";s:74:\"http://fonts.gstatic.com/s/ubuntu/v19/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf\";s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/ubuntu/v19/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf\";s:6:\"italic\";s:70:\"http://fonts.gstatic.com/s/ubuntu/v19/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf\";i:500;s:72:\"http://fonts.gstatic.com/s/ubuntu/v19/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf\";s:9:\"500italic\";s:74:\"http://fonts.gstatic.com/s/ubuntu/v19/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf\";i:700;s:72:\"http://fonts.gstatic.com/s/ubuntu/v19/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf\";s:9:\"700italic\";s:74:\"http://fonts.gstatic.com/s/ubuntu/v19/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1284;a:8:{s:6:\"family\";s:16:\"Ubuntu Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/ubuntucondensed/v15/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1285;a:8:{s:6:\"family\";s:11:\"Ubuntu Mono\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:5:\"latin\";i:5;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:4:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/ubuntumono/v14/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf\";s:6:\"italic\";s:81:\"http://fonts.gstatic.com/s/ubuntumono/v14/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf\";i:700;s:82:\"http://fonts.gstatic.com/s/ubuntumono/v14/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf\";s:9:\"700italic\";s:85:\"http://fonts.gstatic.com/s/ubuntumono/v14/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1286;a:8:{s:6:\"family\";s:5:\"Uchen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:7:\"tibetan\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:64:\"http://fonts.gstatic.com/s/uchen/v5/nKKZ-GokGZ1baIaSEQGodLxA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1287;a:8:{s:6:\"family\";s:5:\"Ultra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2020-09-02\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/ultra/v13/zOLy4prXmrtY-tT6yLOD6NxF.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1288;a:8:{s:6:\"family\";s:14:\"Uncial Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:85:\"http://fonts.gstatic.com/s/uncialantiqua/v18/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1289;a:8:{s:6:\"family\";s:8:\"Underdog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/underdog/v20/CHygV-jCElj7diMroVSiU14GN2Il.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1290;a:8:{s:6:\"family\";s:9:\"Unica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/unicaone/v11/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1291;a:8:{s:6:\"family\";s:14:\"UnifrakturCook\";s:8:\"variants\";a:1:{i:0;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{i:700;s:90:\"http://fonts.gstatic.com/s/unifrakturcook/v17/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1292;a:8:{s:6:\"family\";s:18:\"UnifrakturMaguntia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:96:\"http://fonts.gstatic.com/s/unifrakturmaguntia/v14/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1293;a:8:{s:6:\"family\";s:7:\"Unkempt\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/unkempt/v12/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/unkempt/v12/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1294;a:8:{s:6:\"family\";s:6:\"Unlock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/unlock/v20/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1295;a:8:{s:6:\"family\";s:4:\"Unna\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/unna/v19/AYCEpXzofN0NCpgBlGHCWFM.ttf\";s:6:\"italic\";s:66:\"http://fonts.gstatic.com/s/unna/v19/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf\";i:700;s:67:\"http://fonts.gstatic.com/s/unna/v19/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf\";s:9:\"700italic\";s:70:\"http://fonts.gstatic.com/s/unna/v19/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1296;a:8:{s:6:\"family\";s:8:\"Urbanist\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:89:\"http://fonts.gstatic.com/s/urbanist/v7/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFpOrS8SlKw.ttf\";i:200;s:89:\"http://fonts.gstatic.com/s/urbanist/v7/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFpOrS8SlKw.ttf\";i:300;s:89:\"http://fonts.gstatic.com/s/urbanist/v7/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFpOrS8SlKw.ttf\";s:7:\"regular\";s:89:\"http://fonts.gstatic.com/s/urbanist/v7/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFpOrS8SlKw.ttf\";i:500;s:89:\"http://fonts.gstatic.com/s/urbanist/v7/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFpOrS8SlKw.ttf\";i:600;s:89:\"http://fonts.gstatic.com/s/urbanist/v7/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf\";i:700;s:89:\"http://fonts.gstatic.com/s/urbanist/v7/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFpOrS8SlKw.ttf\";i:800;s:89:\"http://fonts.gstatic.com/s/urbanist/v7/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFpOrS8SlKw.ttf\";i:900;s:89:\"http://fonts.gstatic.com/s/urbanist/v7/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFpOrS8SlKw.ttf\";s:9:\"100italic\";s:91:\"http://fonts.gstatic.com/s/urbanist/v7/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmvacG1K4S1.ttf\";s:9:\"200italic\";s:91:\"http://fonts.gstatic.com/s/urbanist/v7/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmvacG1K4S1.ttf\";s:9:\"300italic\";s:91:\"http://fonts.gstatic.com/s/urbanist/v7/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmvacG1K4S1.ttf\";s:6:\"italic\";s:91:\"http://fonts.gstatic.com/s/urbanist/v7/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmvacG1K4S1.ttf\";s:9:\"500italic\";s:91:\"http://fonts.gstatic.com/s/urbanist/v7/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmvacG1K4S1.ttf\";s:9:\"600italic\";s:91:\"http://fonts.gstatic.com/s/urbanist/v7/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmvacG1K4S1.ttf\";s:9:\"700italic\";s:91:\"http://fonts.gstatic.com/s/urbanist/v7/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmvacG1K4S1.ttf\";s:9:\"800italic\";s:91:\"http://fonts.gstatic.com/s/urbanist/v7/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmvacG1K4S1.ttf\";s:9:\"900italic\";s:91:\"http://fonts.gstatic.com/s/urbanist/v7/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmvacG1K4S1.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1297;a:8:{s:6:\"family\";s:5:\"VT323\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/vt323/v15/pxiKyp0ihIEF2hsYHpT2dkNE.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1298;a:8:{s:6:\"family\";s:11:\"Vampiro One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/vampiroone/v16/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1299;a:8:{s:6:\"family\";s:6:\"Varela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/varela/v14/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1300;a:8:{s:6:\"family\";s:12:\"Varela Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:6:\"hebrew\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/varelaround/v17/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1301;a:8:{s:6:\"family\";s:5:\"Varta\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:5:{i:300;s:83:\"http://fonts.gstatic.com/s/varta/v15/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf\";s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/varta/v15/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf\";i:500;s:83:\"http://fonts.gstatic.com/s/varta/v15/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf\";i:600;s:83:\"http://fonts.gstatic.com/s/varta/v15/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf\";i:700;s:83:\"http://fonts.gstatic.com/s/varta/v15/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1302;a:8:{s:6:\"family\";s:11:\"Vast Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:78:\"http://fonts.gstatic.com/s/vastshadow/v13/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1303;a:8:{s:6:\"family\";s:12:\"Vesper Libre\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:4:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/vesperlibre/v17/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf\";i:500;s:85:\"http://fonts.gstatic.com/s/vesperlibre/v17/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf\";i:700;s:85:\"http://fonts.gstatic.com/s/vesperlibre/v17/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf\";i:900;s:85:\"http://fonts.gstatic.com/s/vesperlibre/v17/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1304;a:8:{s:6:\"family\";s:12:\"Viaoda Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/viaodalibre/v13/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1305;a:8:{s:6:\"family\";s:5:\"Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/vibes/v12/QdVYSTsmIB6tmbd3HpbsuBlh.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1306;a:8:{s:6:\"family\";s:5:\"Vibur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/vibur/v21/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1307;a:8:{s:6:\"family\";s:8:\"Vidaloka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/vidaloka/v16/7cHrv4c3ipenMKlEass8yn4hnCci.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1308;a:8:{s:6:\"family\";s:4:\"Viga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:63:\"http://fonts.gstatic.com/s/viga/v12/xMQbuFFdSaiX_QIjD4e2OX8.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1309;a:8:{s:6:\"family\";s:5:\"Voces\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:65:\"http://fonts.gstatic.com/s/voces/v18/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1310;a:8:{s:6:\"family\";s:7:\"Volkhov\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:4:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/volkhov/v15/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/volkhov/v15/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf\";i:700;s:74:\"http://fonts.gstatic.com/s/volkhov/v15/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf\";s:9:\"700italic\";s:77:\"http://fonts.gstatic.com/s/volkhov/v15/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1311;a:8:{s:6:\"family\";s:8:\"Vollkorn\";s:8:\"variants\";a:12:{i:0;s:7:\"regular\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:6:\"italic\";i:7;s:9:\"500italic\";i:8;s:9:\"600italic\";i:9;s:9:\"700italic\";i:10;s:9:\"800italic\";i:11;s:9:\"900italic\";}s:7:\"subsets\";a:6:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";i:5;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v19\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:12:{s:7:\"regular\";s:90:\"http://fonts.gstatic.com/s/vollkorn/v19/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf\";i:500;s:90:\"http://fonts.gstatic.com/s/vollkorn/v19/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf\";i:600;s:90:\"http://fonts.gstatic.com/s/vollkorn/v19/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf\";i:700;s:90:\"http://fonts.gstatic.com/s/vollkorn/v19/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf\";i:800;s:90:\"http://fonts.gstatic.com/s/vollkorn/v19/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf\";i:900;s:90:\"http://fonts.gstatic.com/s/vollkorn/v19/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf\";s:6:\"italic\";s:92:\"http://fonts.gstatic.com/s/vollkorn/v19/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf\";s:9:\"500italic\";s:92:\"http://fonts.gstatic.com/s/vollkorn/v19/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf\";s:9:\"600italic\";s:92:\"http://fonts.gstatic.com/s/vollkorn/v19/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf\";s:9:\"700italic\";s:92:\"http://fonts.gstatic.com/s/vollkorn/v19/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf\";s:9:\"800italic\";s:92:\"http://fonts.gstatic.com/s/vollkorn/v19/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf\";s:9:\"900italic\";s:92:\"http://fonts.gstatic.com/s/vollkorn/v19/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1312;a:8:{s:6:\"family\";s:11:\"Vollkorn SC\";s:8:\"variants\";a:4:{i:0;s:7:\"regular\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"900\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:4:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/vollkornsc/v9/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf\";i:600;s:81:\"http://fonts.gstatic.com/s/vollkornsc/v9/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf\";i:700;s:81:\"http://fonts.gstatic.com/s/vollkornsc/v9/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf\";i:900;s:81:\"http://fonts.gstatic.com/s/vollkornsc/v9/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1313;a:8:{s:6:\"family\";s:8:\"Voltaire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/voltaire/v13/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1314;a:8:{s:6:\"family\";s:15:\"Vujahday Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:87:\"http://fonts.gstatic.com/s/vujahdayscript/v1/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1315;a:8:{s:6:\"family\";s:23:\"Waiting for the Sunrise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v14\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/waitingforthesunrise/v14/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1316;a:8:{s:6:\"family\";s:8:\"Wallpoet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2020-07-23\";s:5:\"files\";a:1:{s:7:\"regular\";s:72:\"http://fonts.gstatic.com/s/wallpoet/v12/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1317;a:8:{s:6:\"family\";s:15:\"Walter Turncoat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2021-03-19\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/walterturncoat/v13/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1318;a:8:{s:6:\"family\";s:6:\"Warnes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v20\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/warnes/v20/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1319;a:8:{s:6:\"family\";s:9:\"Waterfall\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v1\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/waterfall/v1/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1320;a:8:{s:6:\"family\";s:9:\"Wellfleet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/wellfleet/v18/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1321;a:8:{s:6:\"family\";s:9:\"Wendy One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/wendyone/v12/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1322;a:8:{s:6:\"family\";s:8:\"WindSong\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"500\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:2:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/windsong/v5/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf\";i:500;s:75:\"http://fonts.gstatic.com/s/windsong/v5/KR1RBsyu-P-GFEW57oeNNPWylS3-jVXm.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1323;a:8:{s:6:\"family\";s:8:\"Wire One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v21\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:71:\"http://fonts.gstatic.com/s/wireone/v21/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1324;a:8:{s:6:\"family\";s:9:\"Work Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v16\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:18:{i:100;s:91:\"http://fonts.gstatic.com/s/worksans/v16/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf\";i:200;s:91:\"http://fonts.gstatic.com/s/worksans/v16/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf\";i:300;s:91:\"http://fonts.gstatic.com/s/worksans/v16/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf\";s:7:\"regular\";s:91:\"http://fonts.gstatic.com/s/worksans/v16/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf\";i:500;s:91:\"http://fonts.gstatic.com/s/worksans/v16/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf\";i:600;s:91:\"http://fonts.gstatic.com/s/worksans/v16/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf\";i:700;s:91:\"http://fonts.gstatic.com/s/worksans/v16/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf\";i:800;s:91:\"http://fonts.gstatic.com/s/worksans/v16/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf\";i:900;s:91:\"http://fonts.gstatic.com/s/worksans/v16/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf\";s:9:\"100italic\";s:94:\"http://fonts.gstatic.com/s/worksans/v16/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf\";s:9:\"200italic\";s:94:\"http://fonts.gstatic.com/s/worksans/v16/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf\";s:9:\"300italic\";s:94:\"http://fonts.gstatic.com/s/worksans/v16/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf\";s:6:\"italic\";s:94:\"http://fonts.gstatic.com/s/worksans/v16/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf\";s:9:\"500italic\";s:94:\"http://fonts.gstatic.com/s/worksans/v16/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf\";s:9:\"600italic\";s:94:\"http://fonts.gstatic.com/s/worksans/v16/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf\";s:9:\"700italic\";s:94:\"http://fonts.gstatic.com/s/worksans/v16/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf\";s:9:\"800italic\";s:94:\"http://fonts.gstatic.com/s/worksans/v16/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf\";s:9:\"900italic\";s:94:\"http://fonts.gstatic.com/s/worksans/v16/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1325;a:8:{s:6:\"family\";s:9:\"Xanh Mono\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:2:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/xanhmono/v15/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf\";s:6:\"italic\";s:76:\"http://fonts.gstatic.com/s/xanhmono/v15/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf\";}s:8:\"category\";s:9:\"monospace\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1326;a:8:{s:6:\"family\";s:7:\"Yaldevi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:7:\"sinhala\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:6:{i:200;s:86:\"http://fonts.gstatic.com/s/yaldevi/v6/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvobxLCBJkS.ttf\";i:300;s:86:\"http://fonts.gstatic.com/s/yaldevi/v6/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvobxLCBJkS.ttf\";s:7:\"regular\";s:86:\"http://fonts.gstatic.com/s/yaldevi/v6/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvobxLCBJkS.ttf\";i:500;s:86:\"http://fonts.gstatic.com/s/yaldevi/v6/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvobxLCBJkS.ttf\";i:600;s:86:\"http://fonts.gstatic.com/s/yaldevi/v6/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvobxLCBJkS.ttf\";i:700;s:86:\"http://fonts.gstatic.com/s/yaldevi/v6/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvobxLCBJkS.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1327;a:8:{s:6:\"family\";s:17:\"Yanone Kaffeesatz\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v22\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:6:{i:200;s:110:\"http://fonts.gstatic.com/s/yanonekaffeesatz/v22/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf\";i:300;s:110:\"http://fonts.gstatic.com/s/yanonekaffeesatz/v22/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf\";s:7:\"regular\";s:110:\"http://fonts.gstatic.com/s/yanonekaffeesatz/v22/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf\";i:500;s:110:\"http://fonts.gstatic.com/s/yanonekaffeesatz/v22/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf\";i:600;s:110:\"http://fonts.gstatic.com/s/yanonekaffeesatz/v22/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf\";i:700;s:110:\"http://fonts.gstatic.com/s/yanonekaffeesatz/v22/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1328;a:8:{s:6:\"family\";s:11:\"Yantramanav\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"900\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:6:{i:100;s:82:\"http://fonts.gstatic.com/s/yantramanav/v10/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf\";i:300;s:83:\"http://fonts.gstatic.com/s/yantramanav/v10/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf\";s:7:\"regular\";s:79:\"http://fonts.gstatic.com/s/yantramanav/v10/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf\";i:500;s:83:\"http://fonts.gstatic.com/s/yantramanav/v10/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf\";i:700;s:83:\"http://fonts.gstatic.com/s/yantramanav/v10/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf\";i:900;s:83:\"http://fonts.gstatic.com/s/yantramanav/v10/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1329;a:8:{s:6:\"family\";s:9:\"Yatra One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:10:\"devanagari\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/yatraone/v12/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1330;a:8:{s:6:\"family\";s:10:\"Yellowtail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v17\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/yellowtail/v17/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1331;a:8:{s:6:\"family\";s:9:\"Yeon Sung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:6:\"korean\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:74:\"http://fonts.gstatic.com/s/yeonsung/v18/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1332;a:8:{s:6:\"family\";s:10:\"Yeseva One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v18\";s:12:\"lastModified\";s:10:\"2022-01-25\";s:5:\"files\";a:1:{s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/yesevaone/v18/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1333;a:8:{s:6:\"family\";s:10:\"Yesteryear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v12\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/yesteryear/v12/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1334;a:8:{s:6:\"family\";s:6:\"Yomogi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";i:4;s:10:\"vietnamese\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:67:\"http://fonts.gstatic.com/s/yomogi/v6/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1335;a:8:{s:6:\"family\";s:4:\"Yrsa\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:9:\"300italic\";i:6;s:6:\"italic\";i:7;s:9:\"500italic\";i:8;s:9:\"600italic\";i:9;s:9:\"700italic\";}s:7:\"subsets\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"vietnamese\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-02-03\";s:5:\"files\";a:10:{i:300;s:80:\"http://fonts.gstatic.com/s/yrsa/v13/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNV9rRPfrKu.ttf\";s:7:\"regular\";s:80:\"http://fonts.gstatic.com/s/yrsa/v13/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNV9rRPfrKu.ttf\";i:500;s:80:\"http://fonts.gstatic.com/s/yrsa/v13/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNV9rRPfrKu.ttf\";i:600;s:80:\"http://fonts.gstatic.com/s/yrsa/v13/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NV9rRPfrKu.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/yrsa/v13/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NV9rRPfrKu.ttf\";s:9:\"300italic\";s:83:\"http://fonts.gstatic.com/s/yrsa/v13/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LBte6KuGEo.ttf\";s:6:\"italic\";s:83:\"http://fonts.gstatic.com/s/yrsa/v13/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LBte6KuGEo.ttf\";s:9:\"500italic\";s:83:\"http://fonts.gstatic.com/s/yrsa/v13/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LBte6KuGEo.ttf\";s:9:\"600italic\";s:83:\"http://fonts.gstatic.com/s/yrsa/v13/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LBte6KuGEo.ttf\";s:9:\"700italic\";s:83:\"http://fonts.gstatic.com/s/yrsa/v13/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LBte6KuGEo.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1336;a:8:{s:6:\"family\";s:9:\"Yuji Boku\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:73:\"http://fonts.gstatic.com/s/yujiboku/v3/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1337;a:8:{s:6:\"family\";s:21:\"Yuji Hentaigana Akari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:100:\"http://fonts.gstatic.com/s/yujihentaiganaakari/v6/cY9bfiyVT0VB6QuhWKOrpr6z58lnb_zYFnLIRTzODYALaA.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1338;a:8:{s:6:\"family\";s:23:\"Yuji Hentaigana Akebono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v6\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:104:\"http://fonts.gstatic.com/s/yujihentaiganaakebono/v6/EJRGQhkhRNwM-RtitGUwh930GU_f5KAlkuL0wQy9NKXRzrrF.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1339;a:8:{s:6:\"family\";s:8:\"Yuji Mai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/yujimai/v3/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1340;a:8:{s:6:\"family\";s:10:\"Yuji Syuku\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v3\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:75:\"http://fonts.gstatic.com/s/yujisyuku/v3/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1341;a:8:{s:6:\"family\";s:11:\"Yusei Magic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:3:{i:0;s:8:\"japanese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v9\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/yuseimagic/v9/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1342;a:8:{s:6:\"family\";s:12:\"ZCOOL KuaiLe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:18:\"chinese-simplified\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/zcoolkuaile/v15/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1343;a:8:{s:6:\"family\";s:21:\"ZCOOL QingKe HuangYou\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:18:\"chinese-simplified\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v11\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:101:\"http://fonts.gstatic.com/s/zcoolqingkehuangyou/v11/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1344;a:8:{s:6:\"family\";s:13:\"ZCOOL XiaoWei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:18:\"chinese-simplified\";i:1;s:5:\"latin\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-11\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/zcoolxiaowei/v8/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1345;a:8:{s:6:\"family\";s:11:\"Zen Antique\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:5:\"greek\";i:2;s:8:\"japanese\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:77:\"http://fonts.gstatic.com/s/zenantique/v7/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1346;a:8:{s:6:\"family\";s:16:\"Zen Antique Soft\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:5:\"greek\";i:2;s:8:\"japanese\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:88:\"http://fonts.gstatic.com/s/zenantiquesoft/v7/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1347;a:8:{s:6:\"family\";s:8:\"Zen Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v8\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/zendots/v8/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1348;a:8:{s:6:\"family\";s:23:\"Zen Kaku Gothic Antique\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:5:{i:300;s:107:\"http://fonts.gstatic.com/s/zenkakugothicantique/v7/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TarWJtyZyGU.ttf\";s:7:\"regular\";s:103:\"http://fonts.gstatic.com/s/zenkakugothicantique/v7/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf\";i:500;s:107:\"http://fonts.gstatic.com/s/zenkakugothicantique/v7/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DarWJtyZyGU.ttf\";i:700;s:107:\"http://fonts.gstatic.com/s/zenkakugothicantique/v7/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jarWJtyZyGU.ttf\";i:900;s:107:\"http://fonts.gstatic.com/s/zenkakugothicantique/v7/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DarWJtyZyGU.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1349;a:8:{s:6:\"family\";s:19:\"Zen Kaku Gothic New\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";}s:7:\"subsets\";a:4:{i:0;s:8:\"cyrillic\";i:1;s:8:\"japanese\";i:2;s:5:\"latin\";i:3;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:5:{i:300;s:98:\"http://fonts.gstatic.com/s/zenkakugothicnew/v7/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWTSTGlMyd8.ttf\";s:7:\"regular\";s:94:\"http://fonts.gstatic.com/s/zenkakugothicnew/v7/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf\";i:500;s:98:\"http://fonts.gstatic.com/s/zenkakugothicnew/v7/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWTSTGlMyd8.ttf\";i:700;s:98:\"http://fonts.gstatic.com/s/zenkakugothicnew/v7/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWTSTGlMyd8.ttf\";i:900;s:98:\"http://fonts.gstatic.com/s/zenkakugothicnew/v7/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWTSTGlMyd8.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1350;a:8:{s:6:\"family\";s:13:\"Zen Kurenaido\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:5:\"greek\";i:2;s:8:\"japanese\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/zenkurenaido/v7/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1351;a:8:{s:6:\"family\";s:8:\"Zen Loop\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:6:\"italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:2:{s:7:\"regular\";s:70:\"http://fonts.gstatic.com/s/zenloop/v5/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf\";s:6:\"italic\";s:73:\"http://fonts.gstatic.com/s/zenloop/v5/h0GtssK16UsnJwHsEJ9xoQj14-OGJ0w.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1352;a:8:{s:6:\"family\";s:15:\"Zen Maru Gothic\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:7:\"regular\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:5:\"greek\";i:2;s:8:\"japanese\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:5:{i:300;s:90:\"http://fonts.gstatic.com/s/zenmarugothic/v7/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCPJqa_ajlvw.ttf\";s:7:\"regular\";s:86:\"http://fonts.gstatic.com/s/zenmarugothic/v7/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf\";i:500;s:90:\"http://fonts.gstatic.com/s/zenmarugothic/v7/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCPJqa_ajlvw.ttf\";i:700;s:90:\"http://fonts.gstatic.com/s/zenmarugothic/v7/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1CPJqa_ajlvw.ttf\";i:900;s:90:\"http://fonts.gstatic.com/s/zenmarugothic/v7/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9CPJqa_ajlvw.ttf\";}s:8:\"category\";s:10:\"sans-serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1353;a:8:{s:6:\"family\";s:14:\"Zen Old Mincho\";s:8:\"variants\";a:3:{i:0;s:7:\"regular\";i:1;s:3:\"700\";i:2;s:3:\"900\";}s:7:\"subsets\";a:5:{i:0;s:8:\"cyrillic\";i:1;s:5:\"greek\";i:2;s:8:\"japanese\";i:3;s:5:\"latin\";i:4;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v7\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:3:{s:7:\"regular\";s:83:\"http://fonts.gstatic.com/s/zenoldmincho/v7/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf\";i:700;s:87:\"http://fonts.gstatic.com/s/zenoldmincho/v7/tss3ApVaYytLwxTqcxfMyBveyb5LrFla8dMgPgBu.ttf\";i:900;s:87:\"http://fonts.gstatic.com/s/zenoldmincho/v7/tss3ApVaYytLwxTqcxfMyBveyb5zrlla8dMgPgBu.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1354;a:8:{s:6:\"family\";s:13:\"Zen Tokyo Zoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:2:\"v5\";s:12:\"lastModified\";s:10:\"2021-12-17\";s:5:\"files\";a:1:{s:7:\"regular\";s:81:\"http://fonts.gstatic.com/s/zentokyozoo/v5/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1355;a:8:{s:6:\"family\";s:6:\"Zeyada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:7:\"version\";s:3:\"v13\";s:12:\"lastModified\";s:10:\"2022-01-13\";s:5:\"files\";a:1:{s:7:\"regular\";s:68:\"http://fonts.gstatic.com/s/zeyada/v13/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1356;a:8:{s:6:\"family\";s:13:\"Zhi Mang Xing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:7:\"subsets\";a:2:{i:0;s:18:\"chinese-simplified\";i:1;s:5:\"latin\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:1:{s:7:\"regular\";s:82:\"http://fonts.gstatic.com/s/zhimangxing/v15/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf\";}s:8:\"category\";s:11:\"handwriting\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1357;a:8:{s:6:\"family\";s:10:\"Zilla Slab\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:7:\"regular\";i:3;s:6:\"italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v10\";s:12:\"lastModified\";s:10:\"2022-01-27\";s:5:\"files\";a:10:{i:300;s:80:\"http://fonts.gstatic.com/s/zillaslab/v10/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf\";s:9:\"300italic\";s:83:\"http://fonts.gstatic.com/s/zillaslab/v10/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf\";s:7:\"regular\";s:76:\"http://fonts.gstatic.com/s/zillaslab/v10/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf\";s:6:\"italic\";s:79:\"http://fonts.gstatic.com/s/zillaslab/v10/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf\";i:500;s:80:\"http://fonts.gstatic.com/s/zillaslab/v10/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf\";s:9:\"500italic\";s:83:\"http://fonts.gstatic.com/s/zillaslab/v10/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf\";i:600;s:80:\"http://fonts.gstatic.com/s/zillaslab/v10/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf\";s:9:\"600italic\";s:83:\"http://fonts.gstatic.com/s/zillaslab/v10/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf\";i:700;s:80:\"http://fonts.gstatic.com/s/zillaslab/v10/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf\";s:9:\"700italic\";s:83:\"http://fonts.gstatic.com/s/zillaslab/v10/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf\";}s:8:\"category\";s:5:\"serif\";s:4:\"kind\";s:16:\"webfonts#webfont\";}i:1358;a:8:{s:6:\"family\";s:20:\"Zilla Slab Highlight\";s:8:\"variants\";a:2:{i:0;s:7:\"regular\";i:1;s:3:\"700\";}s:7:\"subsets\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:7:\"version\";s:3:\"v15\";s:12:\"lastModified\";s:10:\"2022-01-05\";s:5:\"files\";a:2:{s:7:\"regular\";s:98:\"http://fonts.gstatic.com/s/zillaslabhighlight/v15/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf\";i:700;s:102:\"http://fonts.gstatic.com/s/zillaslabhighlight/v15/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf\";}s:8:\"category\";s:7:\"display\";s:4:\"kind\";s:16:\"webfonts#webfont\";}}}','no'),(29753,'_site_transient_timeout_theme_roots','1645047524','no'),(29754,'_site_transient_theme_roots','a:14:{s:19:\"reach-themes-vendor\";s:7:\"/themes\";s:27:\"reach.bookings-reservations\";s:7:\"/themes\";s:11:\"reach.child\";s:7:\"/themes\";s:30:\"reach.information-registration\";s:7:\"/themes\";s:12:\"reach.parent\";s:7:\"/themes\";s:18:\"reach.retail-large\";s:7:\"/themes\";s:18:\"reach.retail-small\";s:7:\"/themes\";s:22:\"reach.service-in-quick\";s:7:\"/themes\";s:21:\"reach.service-in-slow\";s:7:\"/themes\";s:30:\"reach.service-item-combo-quick\";s:7:\"/themes\";s:29:\"reach.service-item-combo-slow\";s:7:\"/themes\";s:25:\"reach.service-online-slow\";s:7:\"/themes\";s:23:\"reach.service-out-quick\";s:7:\"/themes\";s:22:\"reach.service-out-slow\";s:7:\"/themes\";}','no'),(29755,'_transient_timeout_GFCache_26ac25f85d5416685f1075a4e0494b23','1645049996','no');
INSERT INTO `wp_options` VALUES (29756,'_transient_GFCache_26ac25f85d5416685f1075a4e0494b23','a:61:{s:12:\"gravityforms\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:6:\"2.5.16\";s:14:\"version_latest\";s:8:\"2.5.16.3\";s:3:\"url\";s:168:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.5.16.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=cX9%2BFl2goTXaGeBkRjXs0cL7pWk%3D\";s:10:\"url_latest\";s:170:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.5.16.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=hWyK8U5Y%2BUjpTULi7PjVGsyKeBI%3D\";}s:21:\"gravityforms2checkout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/2checkout/gravityforms2checkout_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=c84Si1n%2B2yBZAqaLN%2FwLDylvHuQ%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/2checkout/gravityforms2checkout_2.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=COaSZmUtfX%2B6do7HHagzy9hwTYw%3D\";}s:26:\"gravityformsactivecampaign\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";s:3:\"url\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=G7%2FgDypktlpUmxBfS7eIBq7Df%2FA%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=G7%2FgDypktlpUmxBfS7eIBq7Df%2FA%3D\";}s:32:\"gravityformsadvancedpostcreation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";s:3:\"url\";s:204:\"https://s3.amazonaws.com/gravityforms/addons/advancedpostcreation/gravityformsadvancedpostcreation_1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=U%2B7rweDzqrHWfcCNTsU7CQCPL3w%3D\";s:10:\"url_latest\";s:204:\"https://s3.amazonaws.com/gravityforms/addons/advancedpostcreation/gravityformsadvancedpostcreation_1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=U%2B7rweDzqrHWfcCNTsU7CQCPL3w%3D\";}s:20:\"gravityformsagilecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:14:\"version_latest\";s:3:\"1.4\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=%2FfuTjF%2BLxF%2FDIo0JMu2zYxEAKOI%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=%2FfuTjF%2BLxF%2FDIo0JMu2zYxEAKOI%3D\";}s:19:\"gravityformsakismet\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:3:\"1.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/akismet/gravityformsakismet_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=RFGTM3RYYLlVuqs7NEyj%2BuHp8II%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/akismet/gravityformsakismet_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=RFGTM3RYYLlVuqs7NEyj%2BuHp8II%3D\";}s:24:\"gravityformsauthorizenet\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";s:3:\"url\";s:191:\"https://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=w3Y%2BFnY8rH%2BOuMIygcdpSL72gk4%3D\";s:10:\"url_latest\";s:191:\"https://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=w3Y%2BFnY8rH%2BOuMIygcdpSL72gk4%3D\";}s:18:\"gravityformsaweber\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";s:3:\"url\";s:177:\"https://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=Rzjp0LNlL8kkqYe%2FcgiuY5s7BmA%3D\";s:10:\"url_latest\";s:177:\"https://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=Rzjp0LNlL8kkqYe%2FcgiuY5s7BmA%3D\";}s:21:\"gravityformsbatchbook\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=YT%2FI%2BXG6UC59%2BSt53PyGmH3H7ds%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=YT%2FI%2BXG6UC59%2BSt53PyGmH3H7ds%3D\";}s:18:\"gravityformsbreeze\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=5Wv9rLcPpNyhMmZAz7GVY3N9gBk%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=5Wv9rLcPpNyhMmZAz7GVY3N9gBk%3D\";}s:27:\"gravityformscampaignmonitor\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.9\";s:14:\"version_latest\";s:3:\"3.9\";s:3:\"url\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_3.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=qR%2BzH178nP8nDcKW9zTbm4QAE7M%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_3.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=qR%2BzH178nP8nDcKW9zTbm4QAE7M%3D\";}s:20:\"gravityformscampfire\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.2\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=YNasGvsg9FuipUQTXw4xFrVqwAo%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.2.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=eM4qfrzQMovLTP5CXn37QlkftVA%3D\";}s:22:\"gravityformscapsulecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.6\";s:14:\"version_latest\";s:3:\"1.6\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=1OSC9gW4%2Fn9eFKrVVX5ibn1ORbI%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=1OSC9gW4%2Fn9eFKrVVX5ibn1ORbI%3D\";}s:26:\"gravityformschainedselects\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/chainedselects/gravityformschainedselects_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=cNbn%2FMQNIg5X%2B0wz%2FBNkXy0SAIU%3D\";s:10:\"url_latest\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/chainedselects/gravityformschainedselects_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=cNbn%2FMQNIg5X%2B0wz%2FBNkXy0SAIU%3D\";}s:23:\"gravityformscleverreach\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=uTDVElC5rYmKmZ11oa9KbnSss6Y%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=uTDVElC5rYmKmZ11oa9KbnSss6Y%3D\";}s:15:\"gravityformscli\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:3:\"1.4\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/cli/gravityformscli_1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=9NH0IJWc9flw7Ovt5ueNfHb%2Fwo4%3D\";}s:27:\"gravityformsconstantcontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/constantcontact/gravityformsconstantcontact_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=SkSJJTJU%2FUyraBbA3GCHNwLILJA%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/constantcontact/gravityformsconstantcontact_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=SkSJJTJU%2FUyraBbA3GCHNwLILJA%3D\";}s:19:\"gravityformscoupons\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.0\";s:14:\"version_latest\";s:3:\"3.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=yiYPT5bBAUHD%2BpC3Dpa%2F2C2oEaE%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=yiYPT5bBAUHD%2BpC3Dpa%2F2C2oEaE%3D\";}s:17:\"gravityformsdebug\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:10:\"1.0.beta12\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:179:\"https://s3.amazonaws.com/gravityforms/addons/debug/gravityformsdebug_1.0.beta12.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=Tga9ZXXop25FzhHBZEmT40Shris%3D\";}s:19:\"gravityformsdropbox\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.0\";s:14:\"version_latest\";s:5:\"3.0.1\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_3.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=anxgTS8nRUwsAQ4kzBN%2FpssNzM0%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_3.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=SXMzl%2BZuMf8Rl8eMfnIfNsoxJCc%3D\";}s:24:\"gravityformsemailoctopus\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.2.1\";s:3:\"url\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/emailoctopus/gravityformsemailoctopus_1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=8GOHfQov3a1J%2BhBU5cGz2vy61Lg%3D\";s:10:\"url_latest\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/emailoctopus/gravityformsemailoctopus_1.2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=sRwLzVYMfNPhZPlu6h7tWD1Kcz4%3D\";}s:16:\"gravityformsemma\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.1\";s:3:\"url\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=CEVhU3rMSCGaa0rskr0gi34phDQ%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.5.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=NI2ptjcLedME%2FoFNcUFVZ9sS%2FJs%3D\";}s:22:\"gravityformsfreshbooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=5Fr8mVQl%2BrV%2FFGvcThvajgHRJaI%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=5Fr8mVQl%2BrV%2FFGvcThvajgHRJaI%3D\";}s:23:\"gravityformsgetresponse\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.6\";s:14:\"version_latest\";s:3:\"1.6\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=xfRLfeLVYbo1rJ%2FYa2wZsbIGWRE%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=xfRLfeLVYbo1rJ%2FYa2wZsbIGWRE%3D\";}s:27:\"gravityformsgoogleanalytics\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-beta-1\";s:14:\"version_latest\";s:10:\"1.0-beta-1\";s:3:\"url\";s:199:\"https://s3.amazonaws.com/gravityforms/addons/googleanalytics/gravityformsgoogleanalytics_1.0-beta-1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=rnRjVEOnoI8jAaeKasNi6GGn8Jk%3D\";s:10:\"url_latest\";s:199:\"https://s3.amazonaws.com/gravityforms/addons/googleanalytics/gravityformsgoogleanalytics_1.0-beta-1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=rnRjVEOnoI8jAaeKasNi6GGn8Jk%3D\";}s:21:\"gravityformsgutenberg\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-rc-1.4\";s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";s:3:\"url\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-rc-1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=aOejcGTp3Z%2FGrml40wvSQnTxY3c%3D\";s:10:\"url_latest\";s:187:\"https://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-rc-1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=hzMxrniRUgEm3P0kXvqcbSKceHc%3D\";}s:21:\"gravityformshelpscout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.1\";s:14:\"version_latest\";s:3:\"2.1\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=zR3O%2FC8DX%2BDdNmFuY%2F9snoNTAaA%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=zR3O%2FC8DX%2BDdNmFuY%2F9snoNTAaA%3D\";}s:20:\"gravityformshighrise\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=xZtw27aeBMOh4dqgUN4iHzFm9AM%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=xZtw27aeBMOh4dqgUN4iHzFm9AM%3D\";}s:19:\"gravityformshipchat\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";}s:19:\"gravityformshubspot\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/hubspot/gravityformshubspot_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=s9p1oj9oJAYO5MMOlPOIm%2BFaKRQ%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/hubspot/gravityformshubspot_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=s9p1oj9oJAYO5MMOlPOIm%2BFaKRQ%3D\";}s:20:\"gravityformsicontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=yIRVZImU8exUl9rj%2F3XW0ZkB5ks%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=yIRVZImU8exUl9rj%2F3XW0ZkB5ks%3D\";}s:19:\"gravityformslogging\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=FsWImWp55%2FUcDQ%2FNMVPvxWf7aQs%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=oEse45FUSHWtbOcKfiYr79uFBKc%3D\";}s:19:\"gravityformsmadmimi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:14:\"version_latest\";s:3:\"1.4\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=tfkQsg3WEHBL11beJG1T5xgan%2Bc%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=tfkQsg3WEHBL11beJG1T5xgan%2Bc%3D\";}s:21:\"gravityformsmailchimp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"5.0\";s:14:\"version_latest\";s:3:\"5.0\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=34bDnhjevcERFFzNrvI5iD1y6cg%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_5.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=34bDnhjevcERFFzNrvI5iD1y6cg%3D\";}s:19:\"gravityformsmailgun\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/mailgun/gravityformsmailgun_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=ZGgAGhEiriDpNRd5oUaeh8JEzDg%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/mailgun/gravityformsmailgun_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=T6qD%2B3G8h7BPCh1NjFzvwfnaE3s%3D\";}s:18:\"gravityformsmollie\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/mollie/gravityformsmollie_1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=6kYm83C1ql96%2BdHfJkiA6n1h270%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/mollie/gravityformsmollie_1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=6kYm83C1ql96%2BdHfJkiA6n1h270%3D\";}s:26:\"gravityformspartialentries\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.6\";s:14:\"version_latest\";s:5:\"1.6.1\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=qxnxraMMDjQNtARxIlTi697krxo%3D\";s:10:\"url_latest\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.6.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=KAqrP15nsteaTX%2FlJfem5fud%2BcQ%3D\";}s:18:\"gravityformspaypal\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.5\";s:14:\"version_latest\";s:3:\"3.5\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=WOO51q0xhYtQGUKGHlcyeSVqLrc%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=WOO51q0xhYtQGUKGHlcyeSVqLrc%3D\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";N;}s:29:\"gravityformspaypalpaymentspro\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";s:3:\"url\";s:198:\"https://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=9IV9UfOZFUk1XV%2F0lWuhkOtLgJ8%3D\";s:10:\"url_latest\";s:198:\"https://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=9IV9UfOZFUk1XV%2F0lWuhkOtLgJ8%3D\";}s:21:\"gravityformspaypalpro\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.4\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.8.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=EAZ%2FUUXiay0wkfS7tiKIuv3BDU4%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.8.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=U5WIpyeQzkdnkutCK6Nl03NBCNM%3D\";}s:20:\"gravityformspicatcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";}s:16:\"gravityformspipe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=liLjdv8hHCN8zIBNKZRbabS%2FP6E%3D\";s:10:\"url_latest\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=YJjJYbjY2nDb4q3ewIim3veWYa8%3D\";}s:17:\"gravityformspolls\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.9\";s:14:\"version_latest\";s:3:\"3.9\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_3.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=Uoarq8Eezls8AoBskSaR9t%2FGF4M%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_3.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=Uoarq8Eezls8AoBskSaR9t%2FGF4M%3D\";}s:20:\"gravityformspostmark\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/postmark/gravityformspostmark_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=1ptYZNn6beU%2BfDuUiCh0WeuKzEA%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/postmark/gravityformspostmark_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=1ptYZNn6beU%2BfDuUiCh0WeuKzEA%3D\";}s:16:\"gravityformsppcp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.3\";s:14:\"version_latest\";s:3:\"2.3\";s:3:\"url\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/ppcp/gravityformsppcp_2.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=Em5Ge0tiyMkklyoHNuOwk20lq14%3D\";s:10:\"url_latest\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/ppcp/gravityformsppcp_2.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=Em5Ge0tiyMkklyoHNuOwk20lq14%3D\";}s:16:\"gravityformsquiz\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.8\";s:14:\"version_latest\";s:3:\"3.8\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_3.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=MO%2FweMJ9hU47hO%2BY0OXfoZr%2FTE4%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_3.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=MO%2FweMJ9hU47hO%2BY0OXfoZr%2FTE4%3D\";}s:21:\"gravityformsrecaptcha\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:3:\"1.1\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/recaptcha/gravityformsrecaptcha_1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=wMzQPtL9%2BopqZpwExbGkvk%2BaQfs%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/recaptcha/gravityformsrecaptcha_1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=wMzQPtL9%2BopqZpwExbGkvk%2BaQfs%3D\";}s:19:\"gravityformsrestapi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";s:3:\"url\";s:185:\"https://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=qS%2BmPnuMAK3uw1Sx95Cv1wrqsIY%3D\";s:10:\"url_latest\";s:185:\"https://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=qS%2BmPnuMAK3uw1Sx95Cv1wrqsIY%3D\";}s:20:\"gravityformssendgrid\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/sendgrid/gravityformssendgrid_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=qDbGavKBSM1yJIqzCXlSV9xi5Zc%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/sendgrid/gravityformssendgrid_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=qDbGavKBSM1yJIqzCXlSV9xi5Zc%3D\";}s:21:\"gravityformssignature\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.1\";s:14:\"version_latest\";s:5:\"4.1.2\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_4.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=FeGdPZ6ik7I%2FKoszEHKgbiHDVbg%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_4.1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=sOoY1k3R3D12Y8cIGiL1M5iqQkg%3D\";}s:17:\"gravityformsslack\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";s:3:\"url\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=5WEa7bMxwjMCKy7p43m8GOUKvBw%3D\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=5WEa7bMxwjMCKy7p43m8GOUKvBw%3D\";}s:18:\"gravityformssquare\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.6\";s:14:\"version_latest\";s:3:\"1.6\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/square/gravityformssquare_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=pBZ0apjUek6aikxQn4nN5jWeDOA%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/square/gravityformssquare_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=pBZ0apjUek6aikxQn4nN5jWeDOA%3D\";}s:18:\"gravityformsstripe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.2\";s:14:\"version_latest\";s:3:\"4.2\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_4.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=ntG%2Bq4IJsociI40lDHjA0nqep%2Bc%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_4.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=ntG%2Bq4IJsociI40lDHjA0nqep%2Bc%3D\";}s:18:\"gravityformssurvey\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.7\";s:14:\"version_latest\";s:3:\"3.7\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_3.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=b1QGYHPEik84lKXDvnRqqR0aTYI%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_3.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=b1QGYHPEik84lKXDvnRqqR0aTYI%3D\";}s:18:\"gravityformstrello\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=2iDjuYmosQiMB5oho9w7W1o6sXU%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=2iDjuYmosQiMB5oho9w7W1o6sXU%3D\";}s:18:\"gravityformstwilio\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=LOKuqICOqM8xEBNpcMLmsTGLeoI%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=LOKuqICOqM8xEBNpcMLmsTGLeoI%3D\";}s:28:\"gravityformsuserregistration\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.9\";s:14:\"version_latest\";s:5:\"4.9.1\";s:3:\"url\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_4.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=446EscKd2Hoa%2FrN6frOlrQdXIG8%3D\";s:10:\"url_latest\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_4.9.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=dYohxglx2IypURA5OYOY1wnT1Vw%3D\";}s:20:\"gravityformswebhooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/webhooks/gravityformswebhooks_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=qzeRLEoHqsjl3CoR0dr%2BMAumJt4%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/webhooks/gravityformswebhooks_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=qzeRLEoHqsjl3CoR0dr%2BMAumJt4%3D\";}s:18:\"gravityformszapier\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.2\";s:14:\"version_latest\";s:3:\"4.2\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_4.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=fhOA6nwZi9ay0YVKJnvZmEG7nFg%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_4.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=fhOA6nwZi9ay0YVKJnvZmEG7nFg%3D\";}s:19:\"gravityformszohocrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=o4VZIhotaEBtZxRMdr6pQGgv9Pw%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1645219196&Signature=o4VZIhotaEBtZxRMdr6pQGgv9Pw%3D\";}}','no'),(29757,'_transient_timeout_GFCache_f0bd954d5e161729306c8a10a3b213d8','1645049996','no'),(29758,'_transient_GFCache_f0bd954d5e161729306c8a10a3b213d8','C:59:\"Gravity_Forms\\Gravity_Forms\\License\\GF_License_API_Response\":781:{a:5:{s:4:\"data\";a:1:{i:0;a:17:{s:15:\"license_key_md5\";s:32:\"4160075bc309e4dfe1308276413afc5a\";s:12:\"date_created\";s:19:\"2017-09-08 00:10:18\";s:12:\"date_expires\";s:19:\"2022-10-08 16:00:00\";s:9:\"is_active\";s:1:\"1\";s:24:\"is_subscription_canceled\";s:1:\"0\";s:12:\"product_code\";s:5:\"GFDEV\";s:12:\"product_name\";s:31:\"Gravity Forms Developer License\";s:18:\"is_near_expiration\";b:0;s:14:\"days_to_expire\";i:233;s:10:\"is_expired\";b:0;s:8:\"is_valid\";b:1;s:22:\"is_past_renewal_period\";b:0;s:9:\"is_legacy\";b:1;s:9:\"max_sites\";s:9:\"unlimited\";s:12:\"active_sites\";i:2502;s:15:\"remaining_seats\";s:9:\"unlimited\";s:20:\"is_multisite_allowed\";b:1;}}s:6:\"errors\";a:0:{}s:6:\"status\";s:9:\"valid_key\";s:4:\"meta\";a:0:{}s:5:\"strat\";O:63:\"Gravity_Forms\\Gravity_Forms\\Transients\\GF_WP_Transient_Strategy\":0:{}}}','no'),(29761,'_transient_timeout_pantheon_curl_5346d6aa27ee51a67284a65c8d0baf9a','1645046518','no'),(29762,'_transient_pantheon_curl_5346d6aa27ee51a67284a65c8d0baf9a','a:0:{}','no'),(29763,'_site_transient_timeout_browser_920bd99aa4265c459f442b819dba176b','1645651198','no'),(29764,'_site_transient_browser_920bd99aa4265c459f442b819dba176b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"98.0.4758.80\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(29767,'_site_transient_timeout_community-events-be7d82ec7c3ff7fb79bf93cd47002449','1645089758','no'),(29768,'_site_transient_community-events-be7d82ec7c3ff7fb79bf93cd47002449','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"65.36.93.0\";}s:6:\"events\";a:0:{}}','no'),(29769,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1645089600','no'),(29770,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1645089600','no'),(29771,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1645046400','no'),(29772,'can_compress_scripts','1','no'),(29773,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1645089600','no'),(29774,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1645089600','no'),(29775,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1645046400','no'),(29776,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1645089600','no'),(29777,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/02/a-new-wordpress-news/\'>A New WordPress News</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/02/episode-24-three-goals-in-2022/\'>WP Briefing: Episode 24: Three Goals in 2022</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://poststatus.com/why-choose-woo/\'>Post Status: The Woo Snippet (February 14)</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/excerpt/46/\'>Post Status: Post Status Excerpt (No. 46) — Contributor Recognition and Certification with Lesley Sim</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/02/a-new-wordpress-news/\'>WordPress.org blog: A New WordPress News</a></li></ul></div>','no'),(29778,'_transient_timeout_GFCache_20a367833fec761bc6677e4ae3021124','1645051114','no'),(29779,'_transient_GFCache_20a367833fec761bc6677e4ae3021124','','no'),(29780,'_transient_timeout_GFCache_deee1982f934e36003dac549032358e1','1645050157','no'),(29781,'_transient_GFCache_deee1982f934e36003dac549032358e1','C:59:\"Gravity_Forms\\Gravity_Forms\\License\\GF_License_API_Response\":781:{a:5:{s:4:\"data\";a:1:{i:0;a:17:{s:15:\"license_key_md5\";s:32:\"4160075bc309e4dfe1308276413afc5a\";s:12:\"date_created\";s:19:\"2017-09-08 00:10:18\";s:12:\"date_expires\";s:19:\"2022-10-08 16:00:00\";s:9:\"is_active\";s:1:\"1\";s:24:\"is_subscription_canceled\";s:1:\"0\";s:12:\"product_code\";s:5:\"GFDEV\";s:12:\"product_name\";s:31:\"Gravity Forms Developer License\";s:18:\"is_near_expiration\";b:0;s:14:\"days_to_expire\";i:233;s:10:\"is_expired\";b:0;s:8:\"is_valid\";b:1;s:22:\"is_past_renewal_period\";b:0;s:9:\"is_legacy\";b:1;s:9:\"max_sites\";s:9:\"unlimited\";s:12:\"active_sites\";i:2502;s:15:\"remaining_seats\";s:9:\"unlimited\";s:20:\"is_multisite_allowed\";b:1;}}s:6:\"errors\";a:0:{}s:6:\"status\";s:9:\"valid_key\";s:4:\"meta\";a:0:{}s:5:\"strat\";O:63:\"Gravity_Forms\\Gravity_Forms\\Transients\\GF_WP_Transient_Strategy\":0:{}}}','no'),(29784,'_transient_timeout_wpseo-statistics-totals','1645132958','no'),(29785,'_transient_wpseo-statistics-totals','a:1:{i:22;a:2:{s:6:\"scores\";a:0:{}s:8:\"division\";b:0;}}','no'),(29788,'_transient_timeout_pantheon_curl_c39a5c5cc3cacc19c01bfaae917bb112','1645047575','no'),(29789,'_transient_pantheon_curl_c39a5c5cc3cacc19c01bfaae917bb112','a:11:{s:11:\"remote_head\";s:40:\"5b7475083f90f497e63a0ba68b4cf7066aef4634\";s:5:\"ahead\";i:24;s:10:\"update_log\";a:2:{s:40:\"5b7475083f90f497e63a0ba68b4cf7066aef4634\";a:8:{s:12:\"gravitar_url\";s:139:\"https://secure.gravatar.com/avatar/34aa61f871464914301cbdf18f20973a?s=40&d=https%3A%2F%2Fpantheon-content.s3.amazonaws.com%2Fblank_user.png\";s:4:\"hash\";s:40:\"5b7475083f90f497e63a0ba68b4cf7066aef4634\";s:6:\"author\";s:9:\"Circle CI\";s:6:\"labels\";a:0:{}s:8:\"datetime\";s:19:\"2022-02-16T03:18:27\";s:7:\"parents\";a:1:{i:0;s:40:\"7cd7cc2f6e6fe8c6f433a868323f52f73c2d1969\";}s:7:\"message\";s:22:\"Build assets for dev.\n\";s:5:\"email\";s:22:\"sitesadmin@localiq.com\";}s:40:\"7cd7cc2f6e6fe8c6f433a868323f52f73c2d1969\";a:8:{s:12:\"gravitar_url\";s:139:\"https://secure.gravatar.com/avatar/f5d1fe82e326b4598a304cabc47b5ec0?s=40&d=https%3A%2F%2Fpantheon-content.s3.amazonaws.com%2Fblank_user.png\";s:4:\"hash\";s:40:\"7cd7cc2f6e6fe8c6f433a868323f52f73c2d1969\";s:6:\"author\";s:11:\"daniel-does\";s:6:\"labels\";a:0:{}s:8:\"datetime\";s:19:\"2022-02-16T03:10:33\";s:7:\"parents\";a:1:{i:0;s:40:\"8d52d36e5ba44ecec5661e40f2edf09bb37a5dff\";}s:7:\"message\";s:18:\"new release v2.12\n\";s:5:\"email\";s:25:\"daniel.landau@gannett.com\";}}s:13:\"remote_branch\";s:26:\"refs/remotes/origin/master\";s:6:\"behind\";i:2;s:3:\"dev\";a:2:{s:8:\"has_code\";b:1;s:27:\"is_up_to_date_with_upstream\";b:0;}s:4:\"live\";a:2:{s:8:\"has_code\";b:0;s:27:\"is_up_to_date_with_upstream\";b:0;}s:8:\"has_code\";b:1;s:4:\"test\";a:2:{s:8:\"has_code\";b:0;s:27:\"is_up_to_date_with_upstream\";b:0;}s:15:\"has_remote_head\";b:0;s:10:\"remote_url\";s:103:\"https://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@github.com/reachlocal/reachsites-pantheon-upstream.git\";}','no'),(29790,'_transient_timeout_GFCache_0a834bbc7d783be7d706dc4b338b3f84','1645047653','no'),(29791,'_transient_GFCache_0a834bbc7d783be7d706dc4b338b3f84','22','no'),(29792,'gform_version_info','a:6:{s:12:\"is_valid_key\";s:1:\"0\";s:15:\"expiration_time\";i:0;s:7:\"version\";s:5:\"1.7.9\";s:3:\"url\";s:0:\"\";s:9:\"offerings\";a:0:{}s:9:\"timestamp\";i:1645047514;}','no'),(29793,'rg_gforms_enable_html5','0','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_pantheon_sessions`
--

DROP TABLE IF EXISTS `wp_pantheon_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_pantheon_sessions` (
  `user_id` bigint(20) unsigned NOT NULL COMMENT 'The user_id corresponding to a session, or 0 for anonymous user.',
  `session_id` varchar(128) NOT NULL DEFAULT '' COMMENT 'A session ID. The value is generated by plugin''s session handlers.',
  `secure_session_id` varchar(128) NOT NULL DEFAULT '' COMMENT 'Secure session ID. The value is generated by plugin''s session handlers.',
  `ip_address` varchar(128) NOT NULL DEFAULT '' COMMENT 'The IP address that last used this session ID.',
  `datetime` datetime DEFAULT NULL COMMENT 'The datetime value when this session last requested a page. Old records are purged by PHP automatically.',
  `data` blob COMMENT 'The serialized contents of $_SESSION, an array of name/value pairs that persists across page requests by this session ID. Plugin loads $_SESSION from here at the start of each request and saves it at the end.',
  KEY `session_id` (`session_id`),
  KEY `secure_session_id` (`secure_session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_pantheon_sessions`
--

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

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=40521 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (6,5,'_edit_last','10'),(7,5,'_edit_lock','1635361138:19'),(8,5,'group_0yx3acydmccnw9z_hero_panel','1'),(9,5,'_group_0yx3acydmccnw9z_hero_panel','group_0yx3acydmccnw9z_field_591dea5128ac1'),(10,5,'group_0yx3acydmccnw9z_hero_height','0'),(11,5,'_group_0yx3acydmccnw9z_hero_height','group_0yx3acydmccnw9z_field_591dea5128ac0'),(12,5,'group_0yx3acydmccnw9z_hero_autoplay','off'),(13,5,'_group_0yx3acydmccnw9z_hero_autoplay','group_0yx3acydmccnw9z_field_591dea5128ac2'),(26,5,'group_jay33uzo882n74g_gallery_content','<h3 style=\"text-align: center;\">Call Us for Exceptional Plumbing &amp; HVAC Service</h3>\r\n<p style=\"text-align: center;\">Our team is available to provide service throughout South-Central Pennsylvania, including near Chambersburg, Greencastle, Waynesboro, Shippensburg, Gettysburg, St. Thomas, and all the small towns in between. Our extensive training and experience ensure your home or building’s plumbing and heating issues get rectified with the utmost consideration for the best possible long-term results. If you have questions or need plumbing, HVAC, or excavation repairs or replacement for air conditioning, give us a call today to schedule service.</p>'),(27,5,'_group_jay33uzo882n74g_gallery_content','group_jay33uzo882n74g_field_591ca1f42e821'),(28,5,'group_jay33uzo882n74g_gallery_images','a:4:{i:0;s:3:\"561\";i:1;s:3:\"563\";i:2;s:3:\"560\";i:3;s:3:\"562\";}'),(29,5,'_group_jay33uzo882n74g_gallery_images','group_jay33uzo882n74g_field_591ca1f42e820'),(30,5,'group_jay33uzo882n74g_gallery_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#ffffff\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(31,5,'_group_jay33uzo882n74g_gallery_background','group_jay33uzo882n74g_field_591ca1f42e829'),(32,5,'group_zi794n2mdkggmlv_services_content','<h3 style=\"text-align: center;\">Our Versatile Services for Your Home or Business</h3>\r\n<p style=\"text-align: center;\">Mann Plumbing &amp; Heating, LLC. has ample experience helping residential and commercial customers like you with a wide array of issues with your plumbing, HVAC, and excavation needs. Our specialties include the following:</p>'),(33,5,'_group_zi794n2mdkggmlv_services_content','group_zi794n2mdkggmlv_field_35a935e59d870'),(34,5,'group_zi794n2mdkggmlv_services_services','4'),(35,5,'_group_zi794n2mdkggmlv_services_services','group_zi794n2mdkggmlv_field_35a935e59d871'),(36,5,'group_zi794n2mdkggmlv_services_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(37,5,'_group_zi794n2mdkggmlv_services_button','group_zi794n2mdkggmlv_field_35a935e59da88'),(38,5,'group_zi794n2mdkggmlv_services_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:6:\"repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:4:\"auto\";}'),(39,5,'_group_zi794n2mdkggmlv_services_background','group_zi794n2mdkggmlv_field_35a935e59da75'),(40,5,'group_7omya7l9yrr0mu0_testimonials_content','<h3 style=\"text-align: center;\">Reviews</h3>'),(41,5,'_group_7omya7l9yrr0mu0_testimonials_content','group_7omya7l9yrr0mu0_field_59232e687d160'),(42,5,'group_7omya7l9yrr0mu0_testimonials_testimonials','5'),(43,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials','group_7omya7l9yrr0mu0_field_59232e6d7d161'),(44,5,'group_7omya7l9yrr0mu0_testimonials_background','a:6:{s:5:\"image\";s:3:\"532\";s:16:\"background_color\";s:7:\"#252525\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(45,5,'_group_7omya7l9yrr0mu0_testimonials_background','group_7omya7l9yrr0mu0_field_59232e687d167'),(46,5,'group_7omya7l9yrr0mu0_testimonials_autoplay','off'),(47,5,'_group_7omya7l9yrr0mu0_testimonials_autoplay','group_7omya7l9yrr0mu0_field_59232e687d168'),(104,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_name','Stephen C'),(105,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_name','field_59232e937d163'),(106,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_date',''),(107,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_date','field_59232e967d164'),(108,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_content','Amber is amazing. They do great work for a reasonable price with awesome customer service.'),(109,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_content','field_59232e817d162'),(110,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_star_rating','5'),(111,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_star_rating','field_59232e817d166'),(112,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_avatar',''),(113,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_avatar','field_59232e817d165'),(114,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_name','James Foltz'),(115,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_name','field_59232e937d163'),(116,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_date',''),(117,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_date','field_59232e967d164'),(118,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_content','Timely, professional, and reasonable cost. After hours emergency service is excellent.'),(119,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_content','field_59232e817d162'),(120,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_star_rating','5'),(121,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_star_rating','field_59232e817d166'),(122,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_avatar',''),(123,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_avatar','field_59232e817d165'),(327,5,'group_0yx3acydmccnw9z_hero_panel_0_content','<h1>Peace of Mind for Your Plumbing &amp; Heating</h1>'),(328,5,'_group_0yx3acydmccnw9z_hero_panel_0_content','field_591dea5128ac6'),(329,5,'group_0yx3acydmccnw9z_hero_panel_0_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(330,5,'_group_0yx3acydmccnw9z_hero_panel_0_button','field_591dea5128ac7'),(331,5,'group_0yx3acydmccnw9z_hero_panel_0_align','center'),(332,5,'_group_0yx3acydmccnw9z_hero_panel_0_align','field_591dea5128ac8'),(333,5,'group_0yx3acydmccnw9z_hero_panel_0_background','a:9:{s:5:\"image\";s:3:\"537\";s:12:\"mobile_image\";s:3:\"536\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:8:\"parallax\";}'),(334,5,'_group_0yx3acydmccnw9z_hero_panel_0_background','field_591dea5128ac9'),(793,5,'group_7omya7l9yrr0mu0_testimonials_slides_to_show','2'),(794,5,'_group_7omya7l9yrr0mu0_testimonials_slides_to_show','group_7omya7l9yrr0mu0_field_8401674674123'),(1109,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_name','W T'),(1110,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_name','field_59232e937d163'),(1111,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_date',''),(1112,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_date','field_59232e967d164'),(1113,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_content','Great service! Spoke to Chandler who was able to answer all of my questions and truly seemed to care!'),(1114,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_content','field_59232e817d162'),(1115,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_star_rating','5'),(1116,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_star_rating','field_59232e817d166'),(1117,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_avatar',''),(1118,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_avatar','field_59232e817d165'),(1559,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_name','Robbie Cameron'),(1560,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_name','field_59232e937d163'),(1561,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_date',''),(1562,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_date','field_59232e967d164'),(1563,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_content','Very professional.  Get jobs done quick. Customer service is outstanding. Would recomend these guys to anyone.'),(1564,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_content','field_59232e817d162'),(1565,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_star_rating','5'),(1566,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_star_rating','field_59232e817d166'),(1567,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_avatar',''),(1568,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_avatar','field_59232e817d165'),(1771,5,'group_zi794n2mdkggmlv_services_services_0_image','555'),(1772,5,'_group_zi794n2mdkggmlv_services_services_0_image','field_35a935e59da73'),(1773,5,'group_zi794n2mdkggmlv_services_services_0_name','HVAC'),(1774,5,'_group_zi794n2mdkggmlv_services_services_0_name','field_35a935e59da72'),(1775,5,'group_zi794n2mdkggmlv_services_services_0_content','Our dependable HVAC services apply to your heating and air conditioning systems, including heat pumps, electric and gas furnaces, and hot water heaters. We’ll repair or replace your system so that you stay comfortable year-round.'),(1776,5,'_group_zi794n2mdkggmlv_services_services_0_content','field_35a935e59da74'),(1777,5,'group_zi794n2mdkggmlv_services_services_0_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(1778,5,'_group_zi794n2mdkggmlv_services_services_0_button','field_35a935e59da76'),(1779,5,'group_zi794n2mdkggmlv_services_services_1_image','554'),(1780,5,'_group_zi794n2mdkggmlv_services_services_1_image','field_35a935e59da73'),(1781,5,'group_zi794n2mdkggmlv_services_services_1_name','Design / Build'),(1782,5,'_group_zi794n2mdkggmlv_services_services_1_name','field_35a935e59da72'),(1783,5,'group_zi794n2mdkggmlv_services_services_1_content','We plan out and design heating and air conditioning systems, as well as ductwork. When you have undersized or leaky ducts, or it\'s no longer cost-effective to repair your heating or cooling system, we’ll build and install systems for your long-term comfort.'),(1784,5,'_group_zi794n2mdkggmlv_services_services_1_content','field_35a935e59da74'),(1785,5,'group_zi794n2mdkggmlv_services_services_1_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(1786,5,'_group_zi794n2mdkggmlv_services_services_1_button','field_35a935e59da76'),(1787,5,'group_zi794n2mdkggmlv_services_services_2_image','556'),(1788,5,'_group_zi794n2mdkggmlv_services_services_2_image','field_35a935e59da73'),(1789,5,'group_zi794n2mdkggmlv_services_services_2_name','Plumbing'),(1790,5,'_group_zi794n2mdkggmlv_services_services_2_name','field_35a935e59da72'),(1791,5,'group_zi794n2mdkggmlv_services_services_2_content','Whether you need simple repairs to your faucets or toilets, or you need to install water or gas lines, we’re certified and trained to handle your plumbing needs. Our comprehensive knowledge and skills ensure better performance and energy savings.'),(1792,5,'_group_zi794n2mdkggmlv_services_services_2_content','field_35a935e59da74'),(1793,5,'group_zi794n2mdkggmlv_services_services_2_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(1794,5,'_group_zi794n2mdkggmlv_services_services_2_button','field_35a935e59da76'),(2657,5,'group_chcf29yih8zz3j3_content_area_columns','single'),(2658,5,'_group_chcf29yih8zz3j3_content_area_columns','group_chcf29yih8zz3j3_field_5923225383814'),(2659,5,'group_chcf29yih8zz3j3_content_area_width','medium'),(2660,5,'_group_chcf29yih8zz3j3_content_area_width','group_chcf29yih8zz3j3_field_5923225383891'),(2661,5,'group_chcf29yih8zz3j3_content_area_content','<h2>Plumbing &amp; Heating Experts for Chambersburg, PA &amp; Beyond</h2>\r\nWhy do more home and business owners in South Central Pennsylvania choose Mann Plumbing & Heating, LLC.? We’re a trustworthy company that provides solid ground for customers to enjoy comfort, system performance, and savings in Chambersburg, PA and beyond. Our highly skilled technicians maintain a track record of consistent quality for heating, cooling, and plumbing solutions. Residents and businesses can count on us for Trane<sup>®</sup> heating and air conditioning products and their reliable quality and optimal performance. Trane<sup>®</sup> products also ensure you get value for your money and peace of mind that your home or building stays comfortable. We have more than 30 years of expertise in plumbing that’s unmatched in the area. Our mission is to earn your trust and loyalty by giving you honest answers, friendly and personal service, and lasting results on every project. Bring your plumbing and HVAC needs to Mann Plumbing & Heating, LLC. to raise your comfort and convenience and lower your costs.'),(2662,5,'_group_chcf29yih8zz3j3_content_area_content','group_chcf29yih8zz3j3_field_5923228483815'),(2663,5,'group_chcf29yih8zz3j3_content_area_button','a:3:{s:4:\"text\";s:8:\"About Us\";s:3:\"url\";s:10:\"/about-us/\";s:8:\"external\";s:1:\"0\";}'),(2664,5,'_group_chcf29yih8zz3j3_content_area_button','group_chcf29yih8zz3j3_field_5923225383819'),(2665,5,'group_chcf29yih8zz3j3_content_area_align','centered'),(2666,5,'_group_chcf29yih8zz3j3_content_area_align','group_chcf29yih8zz3j3_field_5923225383899'),(2667,5,'group_chcf29yih8zz3j3_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:6:\"repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:4:\"auto\";}'),(2668,5,'_group_chcf29yih8zz3j3_content_area_background','group_chcf29yih8zz3j3_field_5923225383818'),(4439,5,'group_285xgh2d32ffzt8_special_offers_content','Mann Plumbing & Heating, LLC.: Serving Chambersburg,&nbsp;PA'),(4440,5,'_group_285xgh2d32ffzt8_special_offers_content','group_285xgh2d32ffzt8_field_5648912548761'),(4441,5,'group_285xgh2d32ffzt8_special_offers_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(4442,5,'_group_285xgh2d32ffzt8_special_offers_button','group_285xgh2d32ffzt8_field_5648912548762'),(4443,5,'group_285xgh2d32ffzt8_special_offers_background','a:6:{s:5:\"image\";s:3:\"538\";s:16:\"background_color\";s:7:\"#d51d25\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(4444,5,'_group_285xgh2d32ffzt8_special_offers_background','group_285xgh2d32ffzt8_field_5648912548765'),(10199,5,'group_zi794n2mdkggmlv_services_services_0_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(10200,5,'_group_zi794n2mdkggmlv_services_services_0_background','field_35a935e59da75'),(10201,5,'group_zi794n2mdkggmlv_services_services_1_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(10202,5,'_group_zi794n2mdkggmlv_services_services_1_background','field_35a935e59da75'),(10203,5,'group_zi794n2mdkggmlv_services_services_2_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(10204,5,'_group_zi794n2mdkggmlv_services_services_2_background','field_35a935e59da75'),(10553,5,'group_jay33uzo882n74g_gallery_slides_to_show','4'),(10554,5,'_group_jay33uzo882n74g_gallery_slides_to_show','group_jay33uzo882n74g_field_71810a8701e99'),(12553,205,'_edit_last','7'),(12554,205,'subheading',''),(12555,205,'_subheading','field_5976417756400'),(12558,205,'_edit_lock','1577205888:7'),(12559,207,'_menu_item_type','post_type'),(12560,207,'_menu_item_menu_item_parent','0'),(12561,207,'_menu_item_object_id','205'),(12562,207,'_menu_item_object','page'),(12563,207,'_menu_item_target',''),(12564,207,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12565,207,'_menu_item_xfn',''),(12566,207,'_menu_item_url',''),(13350,5,'group_7omya7l9yrr0mu0_testimonials_button','a:3:{s:4:\"text\";s:9:\"Read More\";s:3:\"url\";s:14:\"/testimonials/\";s:8:\"external\";s:1:\"0\";}'),(13351,5,'_group_7omya7l9yrr0mu0_testimonials_button','group_7omya7l9yrr0mu0_field_59232e687d123'),(15413,205,'group_69kihebviq0vjyc_form_columns','single'),(15414,205,'_group_69kihebviq0vjyc_form_columns','group_69kihebviq0vjyc_field_8752483114003'),(15415,205,'group_69kihebviq0vjyc_form_content','<h3 style=\"text-align: center;\">Contact Us</h3>'),(15416,205,'_group_69kihebviq0vjyc_form_content','group_69kihebviq0vjyc_field_8752483114009'),(15417,205,'group_69kihebviq0vjyc_form_gravity_form','1'),(15418,205,'_group_69kihebviq0vjyc_form_gravity_form','group_69kihebviq0vjyc_field_8752483114008'),(15419,205,'group_69kihebviq0vjyc_form_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(15420,205,'_group_69kihebviq0vjyc_form_background','group_69kihebviq0vjyc_field_8752483114011'),(18419,288,'_edit_last','2'),(18420,288,'subheading',''),(18421,288,'_subheading','field_5976417756400'),(18422,289,'subheading',''),(18423,289,'_subheading','field_5976417756400'),(18424,288,'_edit_lock','1560460634:2'),(18996,5,'group_zi794n2mdkggmlv_services_columns','single'),(18997,5,'_group_zi794n2mdkggmlv_services_columns','group_zi794n2mdkggmlv_field_1875124714003'),(18998,5,'group_jay33uzo882n74g_gallery_button','a:3:{s:4:\"text\";s:13:\"View Our Work\";s:3:\"url\";s:10:\"/our-work/\";s:8:\"external\";s:1:\"0\";}'),(18999,5,'_group_jay33uzo882n74g_gallery_button','group_jay33uzo882n74g_field_35a591ca6da88'),(19000,5,'group_7omya7l9yrr0mu0_testimonials_arrow_placement','sides'),(19001,5,'_group_7omya7l9yrr0mu0_testimonials_arrow_placement','group_7omya7l9yrr0mu0_field_124793247623'),(19215,326,'_menu_item_type','post_type'),(19216,326,'_menu_item_menu_item_parent','0'),(19217,326,'_menu_item_object_id','205'),(19218,326,'_menu_item_object','page'),(19219,326,'_menu_item_target',''),(19220,326,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(19221,326,'_menu_item_xfn',''),(19222,326,'_menu_item_url',''),(20809,5,'group_285xgh2d32ffzt8_special_offers_enable_padding','0'),(20810,5,'_group_285xgh2d32ffzt8_special_offers_enable_padding','group_285xgh2d32ffzt8_field_56489125487801'),(20811,5,'group_285xgh2d32ffzt8_special_offers_padding_top','0'),(20812,5,'_group_285xgh2d32ffzt8_special_offers_padding_top','group_285xgh2d32ffzt8_field_56489125487802'),(20813,5,'group_285xgh2d32ffzt8_special_offers_padding_bottom','0'),(20814,5,'_group_285xgh2d32ffzt8_special_offers_padding_bottom','group_285xgh2d32ffzt8_field_56489125487803'),(20815,5,'group_chcf29yih8zz3j3_content_area_enable_padding','1'),(20816,5,'_group_chcf29yih8zz3j3_content_area_enable_padding','group_chcf29yih8zz3j3_field_5923225383901'),(20817,5,'group_chcf29yih8zz3j3_content_area_padding_top','20'),(20818,5,'_group_chcf29yih8zz3j3_content_area_padding_top','group_chcf29yih8zz3j3_field_5923225383902'),(20819,5,'group_chcf29yih8zz3j3_content_area_padding_bottom','20'),(20820,5,'_group_chcf29yih8zz3j3_content_area_padding_bottom','group_chcf29yih8zz3j3_field_5923225383903'),(20827,5,'group_zi794n2mdkggmlv_services_services_0_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:15:\"/services/hvac/\";s:6:\"target\";s:0:\"\";}'),(20828,5,'_group_zi794n2mdkggmlv_services_services_0_item_link','field_35a935e59da79'),(20829,5,'group_zi794n2mdkggmlv_services_services_1_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/services/design-build/\";s:6:\"target\";s:0:\"\";}'),(20830,5,'_group_zi794n2mdkggmlv_services_services_1_item_link','field_35a935e59da79'),(20831,5,'group_zi794n2mdkggmlv_services_services_2_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:19:\"/services/plumbing/\";s:6:\"target\";s:0:\"\";}'),(20832,5,'_group_zi794n2mdkggmlv_services_services_2_item_link','field_35a935e59da79'),(20833,5,'group_zi794n2mdkggmlv_services_enable_padding','0'),(20834,5,'_group_zi794n2mdkggmlv_services_enable_padding','group_zi794n2mdkggmlv_field_35a935e59da91'),(20835,5,'group_zi794n2mdkggmlv_services_padding_top','0'),(20836,5,'_group_zi794n2mdkggmlv_services_padding_top','group_zi794n2mdkggmlv_field_35a935e59da92'),(20837,5,'group_zi794n2mdkggmlv_services_padding_bottom','0'),(20838,5,'_group_zi794n2mdkggmlv_services_padding_bottom','group_zi794n2mdkggmlv_field_35a935e59da93'),(20839,5,'group_jay33uzo882n74g_gallery_enable_padding','1'),(20840,5,'_group_jay33uzo882n74g_gallery_enable_padding','group_jay33uzo882n74g_field_591ca1f42e82901'),(20841,5,'group_jay33uzo882n74g_gallery_padding_top','0'),(20842,5,'_group_jay33uzo882n74g_gallery_padding_top','group_jay33uzo882n74g_field_591ca1f42e82902'),(20843,5,'group_jay33uzo882n74g_gallery_padding_bottom','0'),(20844,5,'_group_jay33uzo882n74g_gallery_padding_bottom','group_jay33uzo882n74g_field_591ca1f42e82903'),(20845,5,'group_7omya7l9yrr0mu0_testimonials_enable_padding','1'),(20846,5,'_group_7omya7l9yrr0mu0_testimonials_enable_padding','group_7omya7l9yrr0mu0_field_59232e687d188'),(20847,5,'group_7omya7l9yrr0mu0_testimonials_padding_top','60'),(20848,5,'_group_7omya7l9yrr0mu0_testimonials_padding_top','group_7omya7l9yrr0mu0_field_59232e687d189'),(20849,5,'group_7omya7l9yrr0mu0_testimonials_padding_bottom','60'),(20850,5,'_group_7omya7l9yrr0mu0_testimonials_padding_bottom','group_7omya7l9yrr0mu0_field_59232e687d187'),(22028,5,'group_0yx3acydmccnw9z_hero_css_classes',''),(22029,5,'_group_0yx3acydmccnw9z_hero_css_classes','group_0yx3acydmccnw9z_field_9877065828823'),(22030,5,'group_285xgh2d32ffzt8_special_offers_css_classes',''),(22031,5,'_group_285xgh2d32ffzt8_special_offers_css_classes','group_285xgh2d32ffzt8_field_9147022838688'),(22032,5,'group_chcf29yih8zz3j3_content_area_css_classes',''),(22033,5,'_group_chcf29yih8zz3j3_content_area_css_classes','group_chcf29yih8zz3j3_field_4554768684187'),(22036,5,'group_zi794n2mdkggmlv_services_css_classes',''),(22037,5,'_group_zi794n2mdkggmlv_services_css_classes','group_zi794n2mdkggmlv_field_8577178443184'),(22038,5,'group_jay33uzo882n74g_gallery_css_classes',''),(22039,5,'_group_jay33uzo882n74g_gallery_css_classes','group_jay33uzo882n74g_field_8987622106215'),(22040,5,'group_7omya7l9yrr0mu0_testimonials_css_classes',''),(22041,5,'_group_7omya7l9yrr0mu0_testimonials_css_classes','group_7omya7l9yrr0mu0_field_4310619693162'),(22594,205,'group_69kihebviq0vjyc_form_css_classes',''),(22595,205,'_group_69kihebviq0vjyc_form_css_classes','group_69kihebviq0vjyc_field_1554003208428'),(22596,205,'group_69kihebviq0vjyc_form_enable_padding','0'),(22597,205,'_group_69kihebviq0vjyc_form_enable_padding','group_69kihebviq0vjyc_field_8752483119801'),(22598,205,'group_69kihebviq0vjyc_form_padding_top','0'),(22599,205,'_group_69kihebviq0vjyc_form_padding_top','group_69kihebviq0vjyc_field_8752483119802'),(22600,205,'group_69kihebviq0vjyc_form_padding_bottom','0'),(22601,205,'_group_69kihebviq0vjyc_form_padding_bottom','group_69kihebviq0vjyc_field_8752483119803'),(24203,426,'_menu_item_type','post_type'),(24204,426,'_menu_item_menu_item_parent','0'),(24205,426,'_menu_item_object_id','288'),(24206,426,'_menu_item_object','page'),(24207,426,'_menu_item_target',''),(24208,426,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24209,426,'_menu_item_xfn',''),(24210,426,'_menu_item_url',''),(24220,429,'_edit_lock','1550253138:2'),(24221,429,'_edit_last','2'),(24222,429,'subheading',''),(24223,429,'_subheading','field_5976417756400'),(24224,430,'subheading',''),(24225,430,'_subheading','field_5976417756400'),(24226,431,'subheading',''),(24227,431,'_subheading','field_5976417756400'),(24370,5,'group_chcf29yih8zz3j3_content_area_content_lead',''),(24371,5,'_group_chcf29yih8zz3j3_content_area_content_lead','group_chcf29yih8zz3j3_field_0079736876206'),(24850,484,'_menu_item_type','post_type'),(24851,484,'_menu_item_menu_item_parent','0'),(24852,484,'_menu_item_object_id','5'),(24853,484,'_menu_item_object','page'),(24854,484,'_menu_item_target',''),(24855,484,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24856,484,'_menu_item_xfn',''),(24857,484,'_menu_item_url',''),(24868,488,'_wp_attached_file','2019/02/LocalIQ_Powered_lgt-1.png'),(24869,488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:30;s:4:\"file\";s:33:\"2019/02/LocalIQ_Powered_lgt-1.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:{}}}'),(24870,488,'_wp_attachment_image_alt','LOCALiQ Powered'),(24910,489,'_edit_lock','1609747758:8'),(24911,489,'_edit_last','8'),(24912,489,'columns','single'),(24913,489,'_columns','field_6757303362350'),(24914,489,'width','medium'),(24915,489,'_width','field_5075110064145'),(24916,489,'content','<h3>Get Financing Now</h3>\r\n(With Approved Credit)'),(24917,489,'_content','field_8909410827313'),(24918,489,'button','a:3:{s:4:\"text\";s:12:\"Get In Touch\";s:3:\"url\";s:65:\"https://retailservices.wellsfargo.com/ahapp/init-app?m=0024234437\";s:8:\"external\";s:1:\"1\";}'),(24919,489,'_button','field_4313867179721'),(24920,489,'css_classes','cta'),(24921,489,'_css_classes','field_4313867179728'),(24922,489,'align','centered'),(24923,489,'_align','field_5281797724312'),(24924,489,'enable_padding','1'),(24925,489,'_enable_padding','field_5605460994520'),(24926,489,'padding_top','20'),(24927,489,'_padding_top','field_5605460994525'),(24928,489,'padding_bottom','20'),(24929,489,'_padding_bottom','field_5605460994528'),(24930,489,'background','a:6:{s:5:\"image\";s:3:\"533\";s:16:\"background_color\";s:0:\"\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(24931,489,'_background','field_5605460994530'),(24932,429,'group_odfm2jkpw0mr44d_content_area_columns','single'),(24933,429,'_group_odfm2jkpw0mr44d_content_area_columns','group_odfm2jkpw0mr44d_field_5923225383814'),(24934,429,'group_odfm2jkpw0mr44d_content_area_width','medium'),(24935,429,'_group_odfm2jkpw0mr44d_content_area_width','group_odfm2jkpw0mr44d_field_5923225383891'),(24936,429,'group_odfm2jkpw0mr44d_content_area_content_lead',''),(24937,429,'_group_odfm2jkpw0mr44d_content_area_content_lead','group_odfm2jkpw0mr44d_field_0079736876206'),(24938,429,'group_odfm2jkpw0mr44d_content_area_content','<h5 style=\"text-align: center;\">Thank you for contacting us. We have received your information and will get back to you shortly.</h5>'),(24939,429,'_group_odfm2jkpw0mr44d_content_area_content','group_odfm2jkpw0mr44d_field_5923228483815'),(24940,429,'group_odfm2jkpw0mr44d_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(24941,429,'_group_odfm2jkpw0mr44d_content_area_button','group_odfm2jkpw0mr44d_field_5923225383819'),(24942,429,'group_odfm2jkpw0mr44d_content_area_css_classes',''),(24943,429,'_group_odfm2jkpw0mr44d_content_area_css_classes','group_odfm2jkpw0mr44d_field_4554768684187'),(24944,429,'group_odfm2jkpw0mr44d_content_area_align','centered'),(24945,429,'_group_odfm2jkpw0mr44d_content_area_align','group_odfm2jkpw0mr44d_field_5923225383899'),(24946,429,'group_odfm2jkpw0mr44d_content_area_enable_padding','1'),(24947,429,'_group_odfm2jkpw0mr44d_content_area_enable_padding','group_odfm2jkpw0mr44d_field_5923225383901'),(24948,429,'group_odfm2jkpw0mr44d_content_area_padding_top','20'),(24949,429,'_group_odfm2jkpw0mr44d_content_area_padding_top','group_odfm2jkpw0mr44d_field_5923225383902'),(24950,429,'group_odfm2jkpw0mr44d_content_area_padding_bottom','20'),(24951,429,'_group_odfm2jkpw0mr44d_content_area_padding_bottom','group_odfm2jkpw0mr44d_field_5923225383903'),(24952,429,'group_odfm2jkpw0mr44d_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(24953,429,'_group_odfm2jkpw0mr44d_content_area_background','group_odfm2jkpw0mr44d_field_5923225383818'),(24954,429,'group_odfm2jkpw0mr44d_content_area_animations_enabled','0'),(24955,429,'_group_odfm2jkpw0mr44d_content_area_animations_enabled','field_5b7ece2e8e4e9'),(24956,429,'group_odfm2jkpw0mr44d_content_area_animations',''),(24957,429,'_group_odfm2jkpw0mr44d_content_area_animations','group_odfm2jkpw0mr44d_field_5b7ece258e4e8'),(24958,429,'group_dk4qfpqwpvi9q29_ctas_ctas','489'),(24959,429,'_group_dk4qfpqwpvi9q29_ctas_ctas','group_dk4qfpqwpvi9q29_field_5620077701227'),(24960,429,'group_dk4qfpqwpvi9q29_ctas_css_classes','cta'),(24961,429,'_group_dk4qfpqwpvi9q29_ctas_css_classes','group_dk4qfpqwpvi9q29_field_8795774705172'),(24962,429,'group_dk4qfpqwpvi9q29_ctas_animations_enabled','0'),(24963,429,'_group_dk4qfpqwpvi9q29_ctas_animations_enabled','field_5b7ece2e8e4e9'),(24964,429,'group_dk4qfpqwpvi9q29_ctas_animations',''),(24965,429,'_group_dk4qfpqwpvi9q29_ctas_animations','group_dk4qfpqwpvi9q29_field_5b7ece258e4e8'),(24966,491,'subheading',''),(24967,491,'_subheading','field_5976417756400'),(24968,491,'group_odfm2jkpw0mr44d_content_area_columns','single'),(24969,491,'_group_odfm2jkpw0mr44d_content_area_columns','group_odfm2jkpw0mr44d_field_5923225383814'),(24970,491,'group_odfm2jkpw0mr44d_content_area_width','medium'),(24971,491,'_group_odfm2jkpw0mr44d_content_area_width','group_odfm2jkpw0mr44d_field_5923225383891'),(24972,491,'group_odfm2jkpw0mr44d_content_area_content_lead',''),(24973,491,'_group_odfm2jkpw0mr44d_content_area_content_lead','group_odfm2jkpw0mr44d_field_0079736876206'),(24974,491,'group_odfm2jkpw0mr44d_content_area_content','<h5 style=\"text-align: center;\">Thank you for contacting us. We have received your information and will get back to you shortly.</h5>'),(24975,491,'_group_odfm2jkpw0mr44d_content_area_content','group_odfm2jkpw0mr44d_field_5923228483815'),(24976,491,'group_odfm2jkpw0mr44d_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(24977,491,'_group_odfm2jkpw0mr44d_content_area_button','group_odfm2jkpw0mr44d_field_5923225383819'),(24978,491,'group_odfm2jkpw0mr44d_content_area_css_classes',''),(24979,491,'_group_odfm2jkpw0mr44d_content_area_css_classes','group_odfm2jkpw0mr44d_field_4554768684187'),(24980,491,'group_odfm2jkpw0mr44d_content_area_align','centered'),(24981,491,'_group_odfm2jkpw0mr44d_content_area_align','group_odfm2jkpw0mr44d_field_5923225383899'),(24982,491,'group_odfm2jkpw0mr44d_content_area_enable_padding','1'),(24983,491,'_group_odfm2jkpw0mr44d_content_area_enable_padding','group_odfm2jkpw0mr44d_field_5923225383901'),(24984,491,'group_odfm2jkpw0mr44d_content_area_padding_top','20'),(24985,491,'_group_odfm2jkpw0mr44d_content_area_padding_top','group_odfm2jkpw0mr44d_field_5923225383902'),(24986,491,'group_odfm2jkpw0mr44d_content_area_padding_bottom','20'),(24987,491,'_group_odfm2jkpw0mr44d_content_area_padding_bottom','group_odfm2jkpw0mr44d_field_5923225383903'),(24988,491,'group_odfm2jkpw0mr44d_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(24989,491,'_group_odfm2jkpw0mr44d_content_area_background','group_odfm2jkpw0mr44d_field_5923225383818'),(24990,491,'group_odfm2jkpw0mr44d_content_area_animations_enabled','0'),(24991,491,'_group_odfm2jkpw0mr44d_content_area_animations_enabled','field_5b7ece2e8e4e9'),(24992,491,'group_odfm2jkpw0mr44d_content_area_animations',''),(24993,491,'_group_odfm2jkpw0mr44d_content_area_animations','group_odfm2jkpw0mr44d_field_5b7ece258e4e8'),(24994,491,'group_dk4qfpqwpvi9q29_ctas_ctas','489'),(24995,491,'_group_dk4qfpqwpvi9q29_ctas_ctas','group_dk4qfpqwpvi9q29_field_5620077701227'),(24996,491,'group_dk4qfpqwpvi9q29_ctas_css_classes','cta'),(24997,491,'_group_dk4qfpqwpvi9q29_ctas_css_classes','group_dk4qfpqwpvi9q29_field_8795774705172'),(24998,491,'group_dk4qfpqwpvi9q29_ctas_animations_enabled','0'),(24999,491,'_group_dk4qfpqwpvi9q29_ctas_animations_enabled','field_5b7ece2e8e4e9'),(25000,491,'group_dk4qfpqwpvi9q29_ctas_animations',''),(25001,491,'_group_dk4qfpqwpvi9q29_ctas_animations','group_dk4qfpqwpvi9q29_field_5b7ece258e4e8'),(25002,429,'_yoast_wpseo_content_score','30'),(25003,429,'_yoast_wpseo_meta-robots-noindex','1'),(25004,5,'_yoast_wpseo_content_score','30'),(25005,5,'group_0yx3acydmccnw9z_hero_animations_enabled','1'),(25006,5,'_group_0yx3acydmccnw9z_hero_animations_enabled','field_5b7ece2e8e4e9'),(25007,5,'group_0yx3acydmccnw9z_hero_animations',''),(25008,5,'_group_0yx3acydmccnw9z_hero_animations','group_0yx3acydmccnw9z_field_5b7ece258e4e8'),(25009,5,'group_285xgh2d32ffzt8_special_offers_animations_enabled','1'),(25010,5,'_group_285xgh2d32ffzt8_special_offers_animations_enabled','field_5b7ece2e8e4e9'),(25011,5,'group_285xgh2d32ffzt8_special_offers_animations',''),(25012,5,'_group_285xgh2d32ffzt8_special_offers_animations','group_285xgh2d32ffzt8_field_5b7ece258e4e8'),(25013,5,'group_chcf29yih8zz3j3_content_area_animations_enabled','1'),(25014,5,'_group_chcf29yih8zz3j3_content_area_animations_enabled','field_5b7ece2e8e4e9'),(25015,5,'group_chcf29yih8zz3j3_content_area_animations',''),(25016,5,'_group_chcf29yih8zz3j3_content_area_animations','group_chcf29yih8zz3j3_field_5b7ece258e4e8'),(25023,5,'group_zi794n2mdkggmlv_services_button_alignment',''),(25024,5,'_group_zi794n2mdkggmlv_services_button_alignment','group_zi794n2mdkggmlv_field_8591648772677'),(25025,5,'group_zi794n2mdkggmlv_services_animations_enabled','0'),(25026,5,'_group_zi794n2mdkggmlv_services_animations_enabled','field_5b7ece2e8e4e9'),(25027,5,'group_zi794n2mdkggmlv_services_animations',''),(25028,5,'_group_zi794n2mdkggmlv_services_animations','group_zi794n2mdkggmlv_field_5b7ece258e4e8'),(25029,5,'group_jay33uzo882n74g_gallery_layout','non-bleeding'),(25030,5,'_group_jay33uzo882n74g_gallery_layout','group_jay33uzo882n74g_field_8973h3489324h324'),(25031,5,'group_jay33uzo882n74g_gallery_width','md'),(25032,5,'_group_jay33uzo882n74g_gallery_width','group_jay33uzo882n74g_field_8973h3489324a002'),(25033,5,'group_jay33uzo882n74g_gallery_enable_captions','0'),(25034,5,'_group_jay33uzo882n74g_gallery_enable_captions','group_jay33uzo882n74g_field_h29be82vf92b9ad3'),(25035,5,'group_jay33uzo882n74g_gallery_button_alignment','center'),(25036,5,'_group_jay33uzo882n74g_gallery_button_alignment','group_jay33uzo882n74g_field_8591648772866'),(25037,5,'group_jay33uzo882n74g_gallery_animations_enabled','0'),(25038,5,'_group_jay33uzo882n74g_gallery_animations_enabled','field_5b7ece2e8e4e9'),(25039,5,'group_jay33uzo882n74g_gallery_animations',''),(25040,5,'_group_jay33uzo882n74g_gallery_animations','group_jay33uzo882n74g_field_5b7ece258e4e8'),(25041,5,'group_7omya7l9yrr0mu0_testimonials_enable_content_limit','0'),(25042,5,'_group_7omya7l9yrr0mu0_testimonials_enable_content_limit','group_7omya7l9yrr0mu0_field_34r5654rfg45'),(25043,5,'group_7omya7l9yrr0mu0_testimonials_content_limit_range','120'),(25044,5,'_group_7omya7l9yrr0mu0_testimonials_content_limit_range','group_7omya7l9yrr0mu0_field_847h9938h3k39'),(25045,5,'group_7omya7l9yrr0mu0_testimonials_arrow_color','default'),(25046,5,'_group_7omya7l9yrr0mu0_testimonials_arrow_color','group_7omya7l9yrr0mu0_field_654793247766'),(25047,5,'group_7omya7l9yrr0mu0_testimonials_enable_arrow_background','default'),(25048,5,'_group_7omya7l9yrr0mu0_testimonials_enable_arrow_background','group_7omya7l9yrr0mu0_field_60232e6872399'),(25049,5,'group_7omya7l9yrr0mu0_testimonials_arrow_background_color',''),(25050,5,'_group_7omya7l9yrr0mu0_testimonials_arrow_background_color','group_7omya7l9yrr0mu0_field_591b6d8fe1000'),(25051,5,'group_7omya7l9yrr0mu0_testimonials_button_alignment',''),(25052,5,'_group_7omya7l9yrr0mu0_testimonials_button_alignment','group_7omya7l9yrr0mu0_field_8591648772644'),(25053,5,'group_7omya7l9yrr0mu0_testimonials_animations_enabled','1'),(25054,5,'_group_7omya7l9yrr0mu0_testimonials_animations_enabled','field_5b7ece2e8e4e9'),(25055,5,'group_7omya7l9yrr0mu0_testimonials_animations',''),(25056,5,'_group_7omya7l9yrr0mu0_testimonials_animations','group_7omya7l9yrr0mu0_field_5b7ece258e4e8'),(26531,205,'_yoast_wpseo_content_score','30'),(26532,205,'group_rnimyv52b1l53jv_contact_info_layout','content-left'),(26533,205,'_group_rnimyv52b1l53jv_contact_info_layout','group_rnimyv52b1l53jv_field_2950329921081'),(26534,205,'group_rnimyv52b1l53jv_contact_info_layout_mobile','content-top'),(26535,205,'_group_rnimyv52b1l53jv_contact_info_layout_mobile','group_rnimyv52b1l53jv_field_295012559486'),(26536,205,'group_rnimyv52b1l53jv_contact_info_content','<h3>Mann Plumbing &amp; Heating, LLC.</h3>\r\n<strong>Address</strong>\r\n<a href=\"https://goo.gl/maps/fTgT1g4T7yXUkdud7\" target=\"_blank\" rel=\"noopener\">6210 Lincoln Way E\r\nFayetteville, PA 17222</a>\r\n\r\n<strong>Phone</strong>\r\n[company-phone id=1]\r\n\r\n<strong>Hours of Operation</strong>\r\nMonday: 7:30 AM – 4:00 PM\r\nTuesday: 7:30 AM – 4:00 PM\r\nWednesday: 7:30 AM – 4:00 PM\r\nThursday: 7:30 AM – 4:00 PM\r\nFriday: 7:30 AM – 4:00 PM\r\n\r\n<strong>Emergency Service Available</strong>\r\n<strong>Seven Days A Week / 24 Hours A Day</strong>'),(26537,205,'_group_rnimyv52b1l53jv_contact_info_content','group_rnimyv52b1l53jv_field_2950329921082'),(26538,205,'group_rnimyv52b1l53jv_contact_info_multiple_locations','0'),(26539,205,'_group_rnimyv52b1l53jv_contact_info_multiple_locations','group_rnimyv52b1l53jv_field_2950329921979'),(26540,205,'group_rnimyv52b1l53jv_contact_info_location','a:3:{s:7:\"address\";s:71:\"Mann Plumbing and Heating, LLC, Lincoln Way East, Fayetteville, PA, USA\";s:3:\"lat\";s:17:\"39.90622919999999\";s:3:\"lng\";s:11:\"-77.5323874\";}'),(26541,205,'_group_rnimyv52b1l53jv_contact_info_location','group_rnimyv52b1l53jv_field_2950329921083'),(26542,205,'group_rnimyv52b1l53jv_contact_info_css_classes',''),(26543,205,'_group_rnimyv52b1l53jv_contact_info_css_classes','group_rnimyv52b1l53jv_field_2943940260591'),(26544,205,'group_rnimyv52b1l53jv_contact_info_enable_padding','0'),(26545,205,'_group_rnimyv52b1l53jv_contact_info_enable_padding','group_rnimyv52b1l53jv_field_2950329921034'),(26546,205,'group_rnimyv52b1l53jv_contact_info_padding_top','0'),(26547,205,'_group_rnimyv52b1l53jv_contact_info_padding_top','group_rnimyv52b1l53jv_field_2950329921035'),(26548,205,'group_rnimyv52b1l53jv_contact_info_padding_bottom','0'),(26549,205,'_group_rnimyv52b1l53jv_contact_info_padding_bottom','group_rnimyv52b1l53jv_field_2950329921036'),(26550,205,'group_rnimyv52b1l53jv_contact_info_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(26551,205,'_group_rnimyv52b1l53jv_contact_info_background','group_rnimyv52b1l53jv_field_2950329921085'),(26552,205,'group_rnimyv52b1l53jv_contact_info_animations_enabled','1'),(26553,205,'_group_rnimyv52b1l53jv_contact_info_animations_enabled','field_5b7ece2e8e4e9'),(26554,205,'group_rnimyv52b1l53jv_contact_info_animations',''),(26555,205,'_group_rnimyv52b1l53jv_contact_info_animations','group_rnimyv52b1l53jv_field_5b7ece258e4e8'),(26556,205,'group_69kihebviq0vjyc_form_animations_enabled','1'),(26557,205,'_group_69kihebviq0vjyc_form_animations_enabled','field_5b7ece2e8e4e9'),(26558,205,'group_69kihebviq0vjyc_form_animations',''),(26559,205,'_group_69kihebviq0vjyc_form_animations','group_69kihebviq0vjyc_field_5b7ece258e4e8'),(26652,500,'_edit_last','10'),(26653,500,'_yoast_wpseo_content_score','30'),(26654,500,'subheading',''),(26655,500,'_subheading','field_5976417756400'),(26658,500,'_edit_lock','1580915576:10'),(26659,500,'group_gtf9qg87luu5eqi_content_area_columns','single'),(26660,500,'_group_gtf9qg87luu5eqi_content_area_columns','group_gtf9qg87luu5eqi_field_5923225383814'),(26661,500,'group_gtf9qg87luu5eqi_content_area_width','medium'),(26662,500,'_group_gtf9qg87luu5eqi_content_area_width','group_gtf9qg87luu5eqi_field_5923225383891'),(26663,500,'group_gtf9qg87luu5eqi_content_area_content_lead',''),(26664,500,'_group_gtf9qg87luu5eqi_content_area_content_lead','group_gtf9qg87luu5eqi_field_0079736876206'),(26665,500,'group_gtf9qg87luu5eqi_content_area_content','<h2>Franklin County\'s Outstanding HVAC Services</h2>\r\nYour home or business’s HVAC system is a primary source of comfort for your building throughout the year. During the hot summers, you can stay cool, thanks to a fully functional air conditioning system. When the cold winter weather hits, your interior space keeps warm and cozy through the consistent performance of your heating system. Mann Plumbing &amp; Heating, LLC. provides thorough and honest HVAC services to ensure that your system runs at its best. Every HVAC system has maintenance and repair concerns, as well as a limited lifespan. Our technicians will evaluate your system’s condition and give you a straightforward assessment of the best actions to take. If you need repairs or new parts, we’ll execute them to get your system running again. If a replacement is necessary, our team will present you with your options, including Trane<sup>®</sup> heating and air conditioning products. We’ve assisted many residents with their environmental comfort, and Trane<sup>®</sup> is well-known for its reliability and outstanding performance.'),(26666,500,'_group_gtf9qg87luu5eqi_content_area_content','group_gtf9qg87luu5eqi_field_5923228483815'),(26667,500,'group_gtf9qg87luu5eqi_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(26668,500,'_group_gtf9qg87luu5eqi_content_area_button','group_gtf9qg87luu5eqi_field_5923225383819'),(26669,500,'group_gtf9qg87luu5eqi_content_area_css_classes',''),(26670,500,'_group_gtf9qg87luu5eqi_content_area_css_classes','group_gtf9qg87luu5eqi_field_4554768684187'),(26671,500,'group_gtf9qg87luu5eqi_content_area_align','centered'),(26672,500,'_group_gtf9qg87luu5eqi_content_area_align','group_gtf9qg87luu5eqi_field_5923225383899'),(26673,500,'group_gtf9qg87luu5eqi_content_area_enable_padding','1'),(26674,500,'_group_gtf9qg87luu5eqi_content_area_enable_padding','group_gtf9qg87luu5eqi_field_5923225383901'),(26675,500,'group_gtf9qg87luu5eqi_content_area_padding_top','20'),(26676,500,'_group_gtf9qg87luu5eqi_content_area_padding_top','group_gtf9qg87luu5eqi_field_5923225383902'),(26677,500,'group_gtf9qg87luu5eqi_content_area_padding_bottom','20'),(26678,500,'_group_gtf9qg87luu5eqi_content_area_padding_bottom','group_gtf9qg87luu5eqi_field_5923225383903'),(26679,500,'group_gtf9qg87luu5eqi_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(26680,500,'_group_gtf9qg87luu5eqi_content_area_background','group_gtf9qg87luu5eqi_field_5923225383818'),(26681,500,'group_gtf9qg87luu5eqi_content_area_animations_enabled','0'),(26682,500,'_group_gtf9qg87luu5eqi_content_area_animations_enabled','field_5b7ece2e8e4e9'),(26683,500,'group_gtf9qg87luu5eqi_content_area_animations',''),(26684,500,'_group_gtf9qg87luu5eqi_content_area_animations','group_gtf9qg87luu5eqi_field_5b7ece258e4e8'),(26685,500,'group_5ceuunsp1agbemn_content_area_columns','image-left'),(26686,500,'_group_5ceuunsp1agbemn_content_area_columns','group_5ceuunsp1agbemn_field_5923225383814'),(26687,500,'group_5ceuunsp1agbemn_content_area_content_lead',''),(26688,500,'_group_5ceuunsp1agbemn_content_area_content_lead','group_5ceuunsp1agbemn_field_0079736876206'),(26689,500,'group_5ceuunsp1agbemn_content_area_content','<h3>Heating &amp; Air Conditioning Repairs</h3>\r\nCustomers near Greencastle, Waynesboro, and many other South-Central Pennsylvania cities and towns can trust Mann Plumbing &amp; Heating, LLC. to repair and replace all types of heating systems. Our training and expertise include working on gas and electric furnaces, as well as heat pumps and hot water heaters. We’ll make recommendations on excellent choices for your lifestyle and home environmental comfort, and we offer humidifiers that enhance the comfort of your home. If your air conditioning system isn’t functioning at its best, we service and repair those systems with expert know-how while keeping any disruption to your daily life to a minimum. Our comfort consultants share a dedication to your comfort, and we’ll assess your system to determine if a replacement is the best option. If it is, we\'ll design an air conditioning system that fits your budget and situation.'),(26690,500,'_group_5ceuunsp1agbemn_content_area_content','group_5ceuunsp1agbemn_field_5923228483815'),(26691,500,'group_5ceuunsp1agbemn_content_area_image','739'),(26692,500,'_group_5ceuunsp1agbemn_content_area_image','group_5ceuunsp1agbemn_field_5923229983816'),(26693,500,'group_5ceuunsp1agbemn_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(26694,500,'_group_5ceuunsp1agbemn_content_area_button','group_5ceuunsp1agbemn_field_5923225383819'),(26695,500,'group_5ceuunsp1agbemn_content_area_css_classes',''),(26696,500,'_group_5ceuunsp1agbemn_content_area_css_classes','group_5ceuunsp1agbemn_field_4554768684187'),(26697,500,'group_5ceuunsp1agbemn_content_area_align','left'),(26698,500,'_group_5ceuunsp1agbemn_content_area_align','group_5ceuunsp1agbemn_field_5923225383899'),(26699,500,'group_5ceuunsp1agbemn_content_area_image_sizing','center'),(26700,500,'_group_5ceuunsp1agbemn_content_area_image_sizing','group_5ceuunsp1agbemn_field_5923225386557'),(26701,500,'group_5ceuunsp1agbemn_content_area_image_width','full-width'),(26702,500,'_group_5ceuunsp1agbemn_content_area_image_width','group_5ceuunsp1agbemn_field_5923225381234'),(26703,500,'group_5ceuunsp1agbemn_content_area_enable_padding','1'),(26704,500,'_group_5ceuunsp1agbemn_content_area_enable_padding','group_5ceuunsp1agbemn_field_5923225383901'),(26705,500,'group_5ceuunsp1agbemn_content_area_padding_top','0'),(26706,500,'_group_5ceuunsp1agbemn_content_area_padding_top','group_5ceuunsp1agbemn_field_5923225383902'),(26707,500,'group_5ceuunsp1agbemn_content_area_padding_bottom','0'),(26708,500,'_group_5ceuunsp1agbemn_content_area_padding_bottom','group_5ceuunsp1agbemn_field_5923225383903'),(26709,500,'group_5ceuunsp1agbemn_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(26710,500,'_group_5ceuunsp1agbemn_content_area_background','group_5ceuunsp1agbemn_field_5923225383818'),(26711,500,'group_5ceuunsp1agbemn_content_area_animations_enabled','0'),(26712,500,'_group_5ceuunsp1agbemn_content_area_animations_enabled','field_5b7ece2e8e4e9'),(26713,500,'group_5ceuunsp1agbemn_content_area_animations',''),(26714,500,'_group_5ceuunsp1agbemn_content_area_animations','group_5ceuunsp1agbemn_field_5b7ece258e4e8'),(26715,500,'group_zznmx4e2lzf8s9h_content_area_columns','single'),(26716,500,'_group_zznmx4e2lzf8s9h_content_area_columns','group_zznmx4e2lzf8s9h_field_5923225383814'),(26717,500,'group_zznmx4e2lzf8s9h_content_area_width','medium'),(26718,500,'_group_zznmx4e2lzf8s9h_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(26719,500,'group_zznmx4e2lzf8s9h_content_area_content_lead',''),(26720,500,'_group_zznmx4e2lzf8s9h_content_area_content_lead','group_zznmx4e2lzf8s9h_field_0079736876206'),(26721,500,'group_zznmx4e2lzf8s9h_content_area_content','<h3>Service is Just a Phone Call Away</h3>\r\nMann Plumbing &amp; Heating, LLC. is happy to help residential and commercial customers keep their spaces comfortable during any season with our comprehensive knowledge and training of HVAC systems. If your system isn’t keeping your winter home warm, we offer free consultations. Our technicians will examine your unit and determine the cause of your system’s lagging or failure. We might recommend repairs to your existing unit, or we might advise you to get a new system. Whatever assessment we present, you can rest assured our motivation for any action is to provide you with the best long-term solution. <a href=\"/contact-us/\">Give us a call</a> today to schedule professional care for your HVAC system. We’ll make sure you enjoy your time inside during the stifling summers and frigid winters.'),(26722,500,'_group_zznmx4e2lzf8s9h_content_area_content','group_zznmx4e2lzf8s9h_field_5923228483815'),(26723,500,'group_zznmx4e2lzf8s9h_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(26724,500,'_group_zznmx4e2lzf8s9h_content_area_button','group_zznmx4e2lzf8s9h_field_5923225383819'),(26725,500,'group_zznmx4e2lzf8s9h_content_area_css_classes',''),(26726,500,'_group_zznmx4e2lzf8s9h_content_area_css_classes','group_zznmx4e2lzf8s9h_field_4554768684187'),(26727,500,'group_zznmx4e2lzf8s9h_content_area_align','centered'),(26728,500,'_group_zznmx4e2lzf8s9h_content_area_align','group_zznmx4e2lzf8s9h_field_5923225383899'),(26729,500,'group_zznmx4e2lzf8s9h_content_area_enable_padding','1'),(26730,500,'_group_zznmx4e2lzf8s9h_content_area_enable_padding','group_zznmx4e2lzf8s9h_field_5923225383901'),(26731,500,'group_zznmx4e2lzf8s9h_content_area_padding_top','20'),(26732,500,'_group_zznmx4e2lzf8s9h_content_area_padding_top','group_zznmx4e2lzf8s9h_field_5923225383902'),(26733,500,'group_zznmx4e2lzf8s9h_content_area_padding_bottom','20'),(26734,500,'_group_zznmx4e2lzf8s9h_content_area_padding_bottom','group_zznmx4e2lzf8s9h_field_5923225383903'),(26735,500,'group_zznmx4e2lzf8s9h_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(26736,500,'_group_zznmx4e2lzf8s9h_content_area_background','group_zznmx4e2lzf8s9h_field_5923225383818'),(26737,500,'group_zznmx4e2lzf8s9h_content_area_animations_enabled','0'),(26738,500,'_group_zznmx4e2lzf8s9h_content_area_animations_enabled','field_5b7ece2e8e4e9'),(26739,500,'group_zznmx4e2lzf8s9h_content_area_animations',''),(26740,500,'_group_zznmx4e2lzf8s9h_content_area_animations','group_zznmx4e2lzf8s9h_field_5b7ece258e4e8'),(26741,500,'group_tzgv8v1sbieylt0_ctas_ctas','489'),(26742,500,'_group_tzgv8v1sbieylt0_ctas_ctas','group_tzgv8v1sbieylt0_field_5620077701227'),(26743,500,'group_tzgv8v1sbieylt0_ctas_css_classes','cta'),(26744,500,'_group_tzgv8v1sbieylt0_ctas_css_classes','group_tzgv8v1sbieylt0_field_8795774705172'),(26745,500,'group_tzgv8v1sbieylt0_ctas_animations_enabled','0'),(26746,500,'_group_tzgv8v1sbieylt0_ctas_animations_enabled','field_5b7ece2e8e4e9'),(26747,500,'group_tzgv8v1sbieylt0_ctas_animations',''),(26748,500,'_group_tzgv8v1sbieylt0_ctas_animations','group_tzgv8v1sbieylt0_field_5b7ece258e4e8'),(26942,505,'_menu_item_type','post_type'),(26943,505,'_menu_item_menu_item_parent','0'),(26944,505,'_menu_item_object_id','490'),(26945,505,'_menu_item_object','page'),(26946,505,'_menu_item_target',''),(26947,505,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(26948,505,'_menu_item_xfn',''),(26949,505,'_menu_item_url',''),(26951,506,'_menu_item_type','post_type'),(26952,506,'_menu_item_menu_item_parent','598'),(26953,506,'_menu_item_object_id','500'),(26954,506,'_menu_item_object','page'),(26955,506,'_menu_item_target',''),(26956,506,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(26957,506,'_menu_item_xfn',''),(26958,506,'_menu_item_url',''),(26960,506,'button_style','none'),(26961,506,'_button_style','field_59d2a067badfc'),(26962,207,'button_style','none'),(26963,207,'_button_style','field_59d2a067badfc'),(26964,489,'_yoast_wpseo_content_score','30'),(26965,490,'_edit_lock','1560460670:2'),(26966,490,'_edit_last','2'),(26967,490,'_yoast_wpseo_metadesc','%%sitename%% values our customer’s privacy and strives to provide the best possible experience when you utilize our services. Our privacy policy outlines how we collect and process your personal data.'),(26968,490,'_yoast_wpseo_content_score','30'),(26969,490,'subheading',''),(26970,490,'_subheading','field_5976417756400'),(26971,512,'subheading',''),(26972,512,'_subheading','field_5976417756400'),(26973,288,'_yoast_wpseo_metadesc','%%sitename%% provides this sitemap for the convenience of our customers. Here you will find information about the pages and content on this website so you can easily navigate to the sections you need.'),(26974,288,'_yoast_wpseo_content_score','30'),(27407,523,'_yoast_wpseo_content_score','30'),(27408,523,'subheading',''),(27409,523,'_subheading','field_5976417756400'),(27410,523,'group_b0v7q0nnl7smzja_content_area_columns','single'),(27411,523,'_group_b0v7q0nnl7smzja_content_area_columns','group_b0v7q0nnl7smzja_field_5923225383814'),(27412,523,'group_b0v7q0nnl7smzja_content_area_width','medium'),(27413,523,'_group_b0v7q0nnl7smzja_content_area_width','group_b0v7q0nnl7smzja_field_5923225383891'),(27414,523,'group_b0v7q0nnl7smzja_content_area_content_lead',''),(27415,523,'_group_b0v7q0nnl7smzja_content_area_content_lead','group_b0v7q0nnl7smzja_field_0079736876206'),(27416,523,'group_b0v7q0nnl7smzja_content_area_content','<h2 style=\"text-align: center;\">Lorem Ipsum Dolor Sit Amet</h2>\r\n<p style=\"text-align: center;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27417,523,'_group_b0v7q0nnl7smzja_content_area_content','group_b0v7q0nnl7smzja_field_5923228483815'),(27418,523,'group_b0v7q0nnl7smzja_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(27419,523,'_group_b0v7q0nnl7smzja_content_area_button','group_b0v7q0nnl7smzja_field_5923225383819'),(27420,523,'group_b0v7q0nnl7smzja_content_area_css_classes',''),(27421,523,'_group_b0v7q0nnl7smzja_content_area_css_classes','group_b0v7q0nnl7smzja_field_4554768684187'),(27422,523,'group_b0v7q0nnl7smzja_content_area_align','centered'),(27423,523,'_group_b0v7q0nnl7smzja_content_area_align','group_b0v7q0nnl7smzja_field_5923225383899'),(27424,523,'group_b0v7q0nnl7smzja_content_area_enable_padding','1'),(27425,523,'_group_b0v7q0nnl7smzja_content_area_enable_padding','group_b0v7q0nnl7smzja_field_5923225383901'),(27426,523,'group_b0v7q0nnl7smzja_content_area_padding_top','20'),(27427,523,'_group_b0v7q0nnl7smzja_content_area_padding_top','group_b0v7q0nnl7smzja_field_5923225383902'),(27428,523,'group_b0v7q0nnl7smzja_content_area_padding_bottom','20'),(27429,523,'_group_b0v7q0nnl7smzja_content_area_padding_bottom','group_b0v7q0nnl7smzja_field_5923225383903'),(27430,523,'group_b0v7q0nnl7smzja_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27431,523,'_group_b0v7q0nnl7smzja_content_area_background','group_b0v7q0nnl7smzja_field_5923225383818'),(27432,523,'group_b0v7q0nnl7smzja_content_area_animations_enabled','0'),(27433,523,'_group_b0v7q0nnl7smzja_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27434,523,'group_b0v7q0nnl7smzja_content_area_animations',''),(27435,523,'_group_b0v7q0nnl7smzja_content_area_animations','group_b0v7q0nnl7smzja_field_5b7ece258e4e8'),(27436,523,'group_rnc60ry282wfpen_content_area_columns','image-right'),(27437,523,'_group_rnc60ry282wfpen_content_area_columns','group_rnc60ry282wfpen_field_5923225383814'),(27438,523,'group_rnc60ry282wfpen_content_area_content_lead',''),(27439,523,'_group_rnc60ry282wfpen_content_area_content_lead','group_rnc60ry282wfpen_field_0079736876206'),(27440,523,'group_rnc60ry282wfpen_content_area_content','<h3 style=\"text-align: left;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: left;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27441,523,'_group_rnc60ry282wfpen_content_area_content','group_rnc60ry282wfpen_field_5923228483815'),(27442,523,'group_rnc60ry282wfpen_content_area_image','407'),(27443,523,'_group_rnc60ry282wfpen_content_area_image','group_rnc60ry282wfpen_field_5923229983816'),(27444,523,'group_rnc60ry282wfpen_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(27445,523,'_group_rnc60ry282wfpen_content_area_button','group_rnc60ry282wfpen_field_5923225383819'),(27446,523,'group_rnc60ry282wfpen_content_area_css_classes',''),(27447,523,'_group_rnc60ry282wfpen_content_area_css_classes','group_rnc60ry282wfpen_field_4554768684187'),(27448,523,'group_rnc60ry282wfpen_content_area_align','left'),(27449,523,'_group_rnc60ry282wfpen_content_area_align','group_rnc60ry282wfpen_field_5923225383899'),(27450,523,'group_rnc60ry282wfpen_content_area_image_sizing','center'),(27451,523,'_group_rnc60ry282wfpen_content_area_image_sizing','group_rnc60ry282wfpen_field_5923225386557'),(27452,523,'group_rnc60ry282wfpen_content_area_image_width','full-width'),(27453,523,'_group_rnc60ry282wfpen_content_area_image_width','group_rnc60ry282wfpen_field_5923225381234'),(27454,523,'group_rnc60ry282wfpen_content_area_enable_padding','1'),(27455,523,'_group_rnc60ry282wfpen_content_area_enable_padding','group_rnc60ry282wfpen_field_5923225383901'),(27456,523,'group_rnc60ry282wfpen_content_area_padding_top','20'),(27457,523,'_group_rnc60ry282wfpen_content_area_padding_top','group_rnc60ry282wfpen_field_5923225383902'),(27458,523,'group_rnc60ry282wfpen_content_area_padding_bottom','20'),(27459,523,'_group_rnc60ry282wfpen_content_area_padding_bottom','group_rnc60ry282wfpen_field_5923225383903'),(27460,523,'group_rnc60ry282wfpen_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27461,523,'_group_rnc60ry282wfpen_content_area_background','group_rnc60ry282wfpen_field_5923225383818'),(27462,523,'group_rnc60ry282wfpen_content_area_animations_enabled','0'),(27463,523,'_group_rnc60ry282wfpen_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27464,523,'group_rnc60ry282wfpen_content_area_animations',''),(27465,523,'_group_rnc60ry282wfpen_content_area_animations','group_rnc60ry282wfpen_field_5b7ece258e4e8'),(27466,523,'group_o71dc4si7yrb9ju_content_area_columns','two-column'),(27467,523,'_group_o71dc4si7yrb9ju_content_area_columns','group_o71dc4si7yrb9ju_field_5923225383814'),(27468,523,'group_o71dc4si7yrb9ju_content_area_width','medium'),(27469,523,'_group_o71dc4si7yrb9ju_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(27470,523,'group_o71dc4si7yrb9ju_content_area_content_lead',''),(27471,523,'_group_o71dc4si7yrb9ju_content_area_content_lead','group_o71dc4si7yrb9ju_field_0079736876206'),(27472,523,'group_o71dc4si7yrb9ju_content_area_content','<h3 style=\"text-align: left;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: left;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27473,523,'_group_o71dc4si7yrb9ju_content_area_content','group_o71dc4si7yrb9ju_field_5923228483815'),(27474,523,'group_o71dc4si7yrb9ju_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(27475,523,'_group_o71dc4si7yrb9ju_content_area_button','group_o71dc4si7yrb9ju_field_5923225383819'),(27476,523,'group_o71dc4si7yrb9ju_content_area_css_classes',''),(27477,523,'_group_o71dc4si7yrb9ju_content_area_css_classes','group_o71dc4si7yrb9ju_field_4554768684187'),(27478,523,'group_o71dc4si7yrb9ju_content_area_align','centered'),(27479,523,'_group_o71dc4si7yrb9ju_content_area_align','group_o71dc4si7yrb9ju_field_5923225383899'),(27480,523,'group_o71dc4si7yrb9ju_content_area_enable_padding','1'),(27481,523,'_group_o71dc4si7yrb9ju_content_area_enable_padding','group_o71dc4si7yrb9ju_field_5923225383901'),(27482,523,'group_o71dc4si7yrb9ju_content_area_padding_top','20'),(27483,523,'_group_o71dc4si7yrb9ju_content_area_padding_top','group_o71dc4si7yrb9ju_field_5923225383902'),(27484,523,'group_o71dc4si7yrb9ju_content_area_padding_bottom','20'),(27485,523,'_group_o71dc4si7yrb9ju_content_area_padding_bottom','group_o71dc4si7yrb9ju_field_5923225383903'),(27486,523,'group_o71dc4si7yrb9ju_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27487,523,'_group_o71dc4si7yrb9ju_content_area_background','group_o71dc4si7yrb9ju_field_5923225383818'),(27488,523,'group_o71dc4si7yrb9ju_content_area_animations_enabled','0'),(27489,523,'_group_o71dc4si7yrb9ju_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27490,523,'group_o71dc4si7yrb9ju_content_area_animations',''),(27491,523,'_group_o71dc4si7yrb9ju_content_area_animations','group_o71dc4si7yrb9ju_field_5b7ece258e4e8'),(27492,523,'group_kpnm8dq6b461nnn_ctas_ctas','489'),(27493,523,'_group_kpnm8dq6b461nnn_ctas_ctas','group_kpnm8dq6b461nnn_field_5620077701227'),(27494,523,'group_kpnm8dq6b461nnn_ctas_css_classes','cta'),(27495,523,'_group_kpnm8dq6b461nnn_ctas_css_classes','group_kpnm8dq6b461nnn_field_8795774705172'),(27496,523,'group_kpnm8dq6b461nnn_ctas_animations_enabled','0'),(27497,523,'_group_kpnm8dq6b461nnn_ctas_animations_enabled','field_5b7ece2e8e4e9'),(27498,523,'group_kpnm8dq6b461nnn_ctas_animations',''),(27499,523,'_group_kpnm8dq6b461nnn_ctas_animations','group_kpnm8dq6b461nnn_field_5b7ece258e4e8'),(27500,523,'_dp_original','500'),(27501,523,'_edit_last','3'),(27502,523,'_edit_lock','1571437698:3'),(27503,523,'group_3ze24gyj4v2v5kl_content_area_columns','single'),(27504,523,'_group_3ze24gyj4v2v5kl_content_area_columns','group_3ze24gyj4v2v5kl_field_5923225383814'),(27505,523,'group_3ze24gyj4v2v5kl_content_area_width','medium'),(27506,523,'_group_3ze24gyj4v2v5kl_content_area_width','group_3ze24gyj4v2v5kl_field_5923225383891'),(27507,523,'group_3ze24gyj4v2v5kl_content_area_content_lead',''),(27508,523,'_group_3ze24gyj4v2v5kl_content_area_content_lead','group_3ze24gyj4v2v5kl_field_0079736876206'),(27509,523,'group_3ze24gyj4v2v5kl_content_area_content','<h3 style=\"text-align: center;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: center;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27510,523,'_group_3ze24gyj4v2v5kl_content_area_content','group_3ze24gyj4v2v5kl_field_5923228483815'),(27511,523,'group_3ze24gyj4v2v5kl_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(27512,523,'_group_3ze24gyj4v2v5kl_content_area_button','group_3ze24gyj4v2v5kl_field_5923225383819'),(27513,523,'group_3ze24gyj4v2v5kl_content_area_css_classes',''),(27514,523,'_group_3ze24gyj4v2v5kl_content_area_css_classes','group_3ze24gyj4v2v5kl_field_4554768684187'),(27515,523,'group_3ze24gyj4v2v5kl_content_area_align','centered'),(27516,523,'_group_3ze24gyj4v2v5kl_content_area_align','group_3ze24gyj4v2v5kl_field_5923225383899'),(27517,523,'group_3ze24gyj4v2v5kl_content_area_enable_padding','1'),(27518,523,'_group_3ze24gyj4v2v5kl_content_area_enable_padding','group_3ze24gyj4v2v5kl_field_5923225383901'),(27519,523,'group_3ze24gyj4v2v5kl_content_area_padding_top','20'),(27520,523,'_group_3ze24gyj4v2v5kl_content_area_padding_top','group_3ze24gyj4v2v5kl_field_5923225383902'),(27521,523,'group_3ze24gyj4v2v5kl_content_area_padding_bottom','20'),(27522,523,'_group_3ze24gyj4v2v5kl_content_area_padding_bottom','group_3ze24gyj4v2v5kl_field_5923225383903'),(27523,523,'group_3ze24gyj4v2v5kl_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27524,523,'_group_3ze24gyj4v2v5kl_content_area_background','group_3ze24gyj4v2v5kl_field_5923225383818'),(27525,523,'group_3ze24gyj4v2v5kl_content_area_animations_enabled','0'),(27526,523,'_group_3ze24gyj4v2v5kl_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27527,523,'group_3ze24gyj4v2v5kl_content_area_animations',''),(27528,523,'_group_3ze24gyj4v2v5kl_content_area_animations','group_3ze24gyj4v2v5kl_field_5b7ece258e4e8'),(27529,523,'group_o71dc4si7yrb9ju_content_area_content_two','<h3 style=\"text-align: left;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: left;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27530,523,'_group_o71dc4si7yrb9ju_content_area_content_two','group_o71dc4si7yrb9ju_field_9871214998600'),(27651,528,'subheading',''),(27652,528,'_subheading','field_5976417756400'),(27653,528,'group_b0v7q0nnl7smzja_content_area_columns','single'),(27654,528,'_group_b0v7q0nnl7smzja_content_area_columns','group_b0v7q0nnl7smzja_field_5923225383814'),(27655,528,'group_b0v7q0nnl7smzja_content_area_width','medium'),(27656,528,'_group_b0v7q0nnl7smzja_content_area_width','group_b0v7q0nnl7smzja_field_5923225383891'),(27657,528,'group_b0v7q0nnl7smzja_content_area_content_lead',''),(27658,528,'_group_b0v7q0nnl7smzja_content_area_content_lead','group_b0v7q0nnl7smzja_field_0079736876206'),(27659,528,'group_b0v7q0nnl7smzja_content_area_content','<h2 style=\"text-align: center;\">Lorem Ipsum Dolor Sit Amet</h2>\r\n<p style=\"text-align: center;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27660,528,'_group_b0v7q0nnl7smzja_content_area_content','group_b0v7q0nnl7smzja_field_5923228483815'),(27661,528,'group_b0v7q0nnl7smzja_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(27662,528,'_group_b0v7q0nnl7smzja_content_area_button','group_b0v7q0nnl7smzja_field_5923225383819'),(27663,528,'group_b0v7q0nnl7smzja_content_area_css_classes',''),(27664,528,'_group_b0v7q0nnl7smzja_content_area_css_classes','group_b0v7q0nnl7smzja_field_4554768684187'),(27665,528,'group_b0v7q0nnl7smzja_content_area_align','centered'),(27666,528,'_group_b0v7q0nnl7smzja_content_area_align','group_b0v7q0nnl7smzja_field_5923225383899'),(27667,528,'group_b0v7q0nnl7smzja_content_area_enable_padding','1'),(27668,528,'_group_b0v7q0nnl7smzja_content_area_enable_padding','group_b0v7q0nnl7smzja_field_5923225383901'),(27669,528,'group_b0v7q0nnl7smzja_content_area_padding_top','20'),(27670,528,'_group_b0v7q0nnl7smzja_content_area_padding_top','group_b0v7q0nnl7smzja_field_5923225383902'),(27671,528,'group_b0v7q0nnl7smzja_content_area_padding_bottom','20'),(27672,528,'_group_b0v7q0nnl7smzja_content_area_padding_bottom','group_b0v7q0nnl7smzja_field_5923225383903'),(27673,528,'group_b0v7q0nnl7smzja_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27674,528,'_group_b0v7q0nnl7smzja_content_area_background','group_b0v7q0nnl7smzja_field_5923225383818'),(27675,528,'group_b0v7q0nnl7smzja_content_area_animations_enabled','0'),(27676,528,'_group_b0v7q0nnl7smzja_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27677,528,'group_b0v7q0nnl7smzja_content_area_animations',''),(27678,528,'_group_b0v7q0nnl7smzja_content_area_animations','group_b0v7q0nnl7smzja_field_5b7ece258e4e8'),(27679,528,'group_rnc60ry282wfpen_content_area_columns','image-right'),(27680,528,'_group_rnc60ry282wfpen_content_area_columns','group_rnc60ry282wfpen_field_5923225383814'),(27681,528,'group_rnc60ry282wfpen_content_area_content_lead',''),(27682,528,'_group_rnc60ry282wfpen_content_area_content_lead','group_rnc60ry282wfpen_field_0079736876206'),(27683,528,'group_rnc60ry282wfpen_content_area_content','<h3 style=\"text-align: left;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: left;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27684,528,'_group_rnc60ry282wfpen_content_area_content','group_rnc60ry282wfpen_field_5923228483815'),(27685,528,'group_rnc60ry282wfpen_content_area_image','401'),(27686,528,'_group_rnc60ry282wfpen_content_area_image','group_rnc60ry282wfpen_field_5923229983816'),(27687,528,'group_rnc60ry282wfpen_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(27688,528,'_group_rnc60ry282wfpen_content_area_button','group_rnc60ry282wfpen_field_5923225383819'),(27689,528,'group_rnc60ry282wfpen_content_area_css_classes',''),(27690,528,'_group_rnc60ry282wfpen_content_area_css_classes','group_rnc60ry282wfpen_field_4554768684187'),(27691,528,'group_rnc60ry282wfpen_content_area_align','left'),(27692,528,'_group_rnc60ry282wfpen_content_area_align','group_rnc60ry282wfpen_field_5923225383899'),(27693,528,'group_rnc60ry282wfpen_content_area_image_sizing','center'),(27694,528,'_group_rnc60ry282wfpen_content_area_image_sizing','group_rnc60ry282wfpen_field_5923225386557'),(27695,528,'group_rnc60ry282wfpen_content_area_image_width','full-width'),(27696,528,'_group_rnc60ry282wfpen_content_area_image_width','group_rnc60ry282wfpen_field_5923225381234'),(27697,528,'group_rnc60ry282wfpen_content_area_enable_padding','1'),(27698,528,'_group_rnc60ry282wfpen_content_area_enable_padding','group_rnc60ry282wfpen_field_5923225383901'),(27699,528,'group_rnc60ry282wfpen_content_area_padding_top','20'),(27700,528,'_group_rnc60ry282wfpen_content_area_padding_top','group_rnc60ry282wfpen_field_5923225383902'),(27701,528,'group_rnc60ry282wfpen_content_area_padding_bottom','20'),(27702,528,'_group_rnc60ry282wfpen_content_area_padding_bottom','group_rnc60ry282wfpen_field_5923225383903'),(27703,528,'group_rnc60ry282wfpen_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27704,528,'_group_rnc60ry282wfpen_content_area_background','group_rnc60ry282wfpen_field_5923225383818'),(27705,528,'group_rnc60ry282wfpen_content_area_animations_enabled','0'),(27706,528,'_group_rnc60ry282wfpen_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27707,528,'group_rnc60ry282wfpen_content_area_animations',''),(27708,528,'_group_rnc60ry282wfpen_content_area_animations','group_rnc60ry282wfpen_field_5b7ece258e4e8'),(27709,528,'group_o71dc4si7yrb9ju_content_area_columns','two-column'),(27710,528,'_group_o71dc4si7yrb9ju_content_area_columns','group_o71dc4si7yrb9ju_field_5923225383814'),(27711,528,'group_o71dc4si7yrb9ju_content_area_width','medium'),(27712,528,'_group_o71dc4si7yrb9ju_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(27713,528,'group_o71dc4si7yrb9ju_content_area_content_lead',''),(27714,528,'_group_o71dc4si7yrb9ju_content_area_content_lead','group_o71dc4si7yrb9ju_field_0079736876206'),(27715,528,'group_o71dc4si7yrb9ju_content_area_content','<h3 style=\"text-align: left;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: left;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27716,528,'_group_o71dc4si7yrb9ju_content_area_content','group_o71dc4si7yrb9ju_field_5923228483815'),(27717,528,'group_o71dc4si7yrb9ju_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(27718,528,'_group_o71dc4si7yrb9ju_content_area_button','group_o71dc4si7yrb9ju_field_5923225383819'),(27719,528,'group_o71dc4si7yrb9ju_content_area_css_classes',''),(27720,528,'_group_o71dc4si7yrb9ju_content_area_css_classes','group_o71dc4si7yrb9ju_field_4554768684187'),(27721,528,'group_o71dc4si7yrb9ju_content_area_align','centered'),(27722,528,'_group_o71dc4si7yrb9ju_content_area_align','group_o71dc4si7yrb9ju_field_5923225383899'),(27723,528,'group_o71dc4si7yrb9ju_content_area_enable_padding','1'),(27724,528,'_group_o71dc4si7yrb9ju_content_area_enable_padding','group_o71dc4si7yrb9ju_field_5923225383901'),(27725,528,'group_o71dc4si7yrb9ju_content_area_padding_top','20'),(27726,528,'_group_o71dc4si7yrb9ju_content_area_padding_top','group_o71dc4si7yrb9ju_field_5923225383902'),(27727,528,'group_o71dc4si7yrb9ju_content_area_padding_bottom','20'),(27728,528,'_group_o71dc4si7yrb9ju_content_area_padding_bottom','group_o71dc4si7yrb9ju_field_5923225383903'),(27729,528,'group_o71dc4si7yrb9ju_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27730,528,'_group_o71dc4si7yrb9ju_content_area_background','group_o71dc4si7yrb9ju_field_5923225383818'),(27731,528,'group_o71dc4si7yrb9ju_content_area_animations_enabled','0'),(27732,528,'_group_o71dc4si7yrb9ju_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27733,528,'group_o71dc4si7yrb9ju_content_area_animations',''),(27734,528,'_group_o71dc4si7yrb9ju_content_area_animations','group_o71dc4si7yrb9ju_field_5b7ece258e4e8'),(27735,528,'group_kpnm8dq6b461nnn_ctas_ctas','489'),(27736,528,'_group_kpnm8dq6b461nnn_ctas_ctas','group_kpnm8dq6b461nnn_field_5620077701227'),(27737,528,'group_kpnm8dq6b461nnn_ctas_css_classes','cta'),(27738,528,'_group_kpnm8dq6b461nnn_ctas_css_classes','group_kpnm8dq6b461nnn_field_8795774705172'),(27739,528,'group_kpnm8dq6b461nnn_ctas_animations_enabled','0'),(27740,528,'_group_kpnm8dq6b461nnn_ctas_animations_enabled','field_5b7ece2e8e4e9'),(27741,528,'group_kpnm8dq6b461nnn_ctas_animations',''),(27742,528,'_group_kpnm8dq6b461nnn_ctas_animations','group_kpnm8dq6b461nnn_field_5b7ece258e4e8'),(27743,528,'group_3ze24gyj4v2v5kl_content_area_columns','single'),(27744,528,'_group_3ze24gyj4v2v5kl_content_area_columns','group_3ze24gyj4v2v5kl_field_5923225383814'),(27745,528,'group_3ze24gyj4v2v5kl_content_area_width','medium'),(27746,528,'_group_3ze24gyj4v2v5kl_content_area_width','group_3ze24gyj4v2v5kl_field_5923225383891'),(27747,528,'group_3ze24gyj4v2v5kl_content_area_content_lead',''),(27748,528,'_group_3ze24gyj4v2v5kl_content_area_content_lead','group_3ze24gyj4v2v5kl_field_0079736876206'),(27749,528,'group_3ze24gyj4v2v5kl_content_area_content','<h3 style=\"text-align: center;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: center;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.a</p>'),(27750,528,'_group_3ze24gyj4v2v5kl_content_area_content','group_3ze24gyj4v2v5kl_field_5923228483815'),(27751,528,'group_3ze24gyj4v2v5kl_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(27752,528,'_group_3ze24gyj4v2v5kl_content_area_button','group_3ze24gyj4v2v5kl_field_5923225383819'),(27753,528,'group_3ze24gyj4v2v5kl_content_area_css_classes',''),(27754,528,'_group_3ze24gyj4v2v5kl_content_area_css_classes','group_3ze24gyj4v2v5kl_field_4554768684187'),(27755,528,'group_3ze24gyj4v2v5kl_content_area_align','centered'),(27756,528,'_group_3ze24gyj4v2v5kl_content_area_align','group_3ze24gyj4v2v5kl_field_5923225383899'),(27757,528,'group_3ze24gyj4v2v5kl_content_area_enable_padding','1'),(27758,528,'_group_3ze24gyj4v2v5kl_content_area_enable_padding','group_3ze24gyj4v2v5kl_field_5923225383901'),(27759,528,'group_3ze24gyj4v2v5kl_content_area_padding_top','20'),(27760,528,'_group_3ze24gyj4v2v5kl_content_area_padding_top','group_3ze24gyj4v2v5kl_field_5923225383902'),(27761,528,'group_3ze24gyj4v2v5kl_content_area_padding_bottom','20'),(27762,528,'_group_3ze24gyj4v2v5kl_content_area_padding_bottom','group_3ze24gyj4v2v5kl_field_5923225383903'),(27763,528,'group_3ze24gyj4v2v5kl_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27764,528,'_group_3ze24gyj4v2v5kl_content_area_background','group_3ze24gyj4v2v5kl_field_5923225383818'),(27765,528,'group_3ze24gyj4v2v5kl_content_area_animations_enabled','0'),(27766,528,'_group_3ze24gyj4v2v5kl_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27767,528,'group_3ze24gyj4v2v5kl_content_area_animations',''),(27768,528,'_group_3ze24gyj4v2v5kl_content_area_animations','group_3ze24gyj4v2v5kl_field_5b7ece258e4e8'),(27769,528,'group_o71dc4si7yrb9ju_content_area_content_two','<h3 style=\"text-align: left;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: left;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27770,528,'_group_o71dc4si7yrb9ju_content_area_content_two','group_o71dc4si7yrb9ju_field_9871214998600'),(27771,529,'subheading',''),(27772,529,'_subheading','field_5976417756400'),(27773,529,'group_b0v7q0nnl7smzja_content_area_columns','single'),(27774,529,'_group_b0v7q0nnl7smzja_content_area_columns','group_b0v7q0nnl7smzja_field_5923225383814'),(27775,529,'group_b0v7q0nnl7smzja_content_area_width','medium'),(27776,529,'_group_b0v7q0nnl7smzja_content_area_width','group_b0v7q0nnl7smzja_field_5923225383891'),(27777,529,'group_b0v7q0nnl7smzja_content_area_content_lead',''),(27778,529,'_group_b0v7q0nnl7smzja_content_area_content_lead','group_b0v7q0nnl7smzja_field_0079736876206'),(27779,529,'group_b0v7q0nnl7smzja_content_area_content','<h2 style=\"text-align: center;\">Lorem Ipsum Dolor Sit Amet</h2>\r\n<p style=\"text-align: center;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27780,529,'_group_b0v7q0nnl7smzja_content_area_content','group_b0v7q0nnl7smzja_field_5923228483815'),(27781,529,'group_b0v7q0nnl7smzja_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(27782,529,'_group_b0v7q0nnl7smzja_content_area_button','group_b0v7q0nnl7smzja_field_5923225383819'),(27783,529,'group_b0v7q0nnl7smzja_content_area_css_classes',''),(27784,529,'_group_b0v7q0nnl7smzja_content_area_css_classes','group_b0v7q0nnl7smzja_field_4554768684187'),(27785,529,'group_b0v7q0nnl7smzja_content_area_align','centered'),(27786,529,'_group_b0v7q0nnl7smzja_content_area_align','group_b0v7q0nnl7smzja_field_5923225383899'),(27787,529,'group_b0v7q0nnl7smzja_content_area_enable_padding','1'),(27788,529,'_group_b0v7q0nnl7smzja_content_area_enable_padding','group_b0v7q0nnl7smzja_field_5923225383901'),(27789,529,'group_b0v7q0nnl7smzja_content_area_padding_top','20'),(27790,529,'_group_b0v7q0nnl7smzja_content_area_padding_top','group_b0v7q0nnl7smzja_field_5923225383902'),(27791,529,'group_b0v7q0nnl7smzja_content_area_padding_bottom','20'),(27792,529,'_group_b0v7q0nnl7smzja_content_area_padding_bottom','group_b0v7q0nnl7smzja_field_5923225383903'),(27793,529,'group_b0v7q0nnl7smzja_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27794,529,'_group_b0v7q0nnl7smzja_content_area_background','group_b0v7q0nnl7smzja_field_5923225383818'),(27795,529,'group_b0v7q0nnl7smzja_content_area_animations_enabled','0'),(27796,529,'_group_b0v7q0nnl7smzja_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27797,529,'group_b0v7q0nnl7smzja_content_area_animations',''),(27798,529,'_group_b0v7q0nnl7smzja_content_area_animations','group_b0v7q0nnl7smzja_field_5b7ece258e4e8'),(27799,529,'group_rnc60ry282wfpen_content_area_columns','image-right'),(27800,529,'_group_rnc60ry282wfpen_content_area_columns','group_rnc60ry282wfpen_field_5923225383814'),(27801,529,'group_rnc60ry282wfpen_content_area_content_lead',''),(27802,529,'_group_rnc60ry282wfpen_content_area_content_lead','group_rnc60ry282wfpen_field_0079736876206'),(27803,529,'group_rnc60ry282wfpen_content_area_content','<h3 style=\"text-align: left;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: left;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27804,529,'_group_rnc60ry282wfpen_content_area_content','group_rnc60ry282wfpen_field_5923228483815'),(27805,529,'group_rnc60ry282wfpen_content_area_image','407'),(27806,529,'_group_rnc60ry282wfpen_content_area_image','group_rnc60ry282wfpen_field_5923229983816'),(27807,529,'group_rnc60ry282wfpen_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(27808,529,'_group_rnc60ry282wfpen_content_area_button','group_rnc60ry282wfpen_field_5923225383819'),(27809,529,'group_rnc60ry282wfpen_content_area_css_classes',''),(27810,529,'_group_rnc60ry282wfpen_content_area_css_classes','group_rnc60ry282wfpen_field_4554768684187'),(27811,529,'group_rnc60ry282wfpen_content_area_align','left'),(27812,529,'_group_rnc60ry282wfpen_content_area_align','group_rnc60ry282wfpen_field_5923225383899'),(27813,529,'group_rnc60ry282wfpen_content_area_image_sizing','center'),(27814,529,'_group_rnc60ry282wfpen_content_area_image_sizing','group_rnc60ry282wfpen_field_5923225386557'),(27815,529,'group_rnc60ry282wfpen_content_area_image_width','full-width'),(27816,529,'_group_rnc60ry282wfpen_content_area_image_width','group_rnc60ry282wfpen_field_5923225381234'),(27817,529,'group_rnc60ry282wfpen_content_area_enable_padding','1'),(27818,529,'_group_rnc60ry282wfpen_content_area_enable_padding','group_rnc60ry282wfpen_field_5923225383901'),(27819,529,'group_rnc60ry282wfpen_content_area_padding_top','20'),(27820,529,'_group_rnc60ry282wfpen_content_area_padding_top','group_rnc60ry282wfpen_field_5923225383902'),(27821,529,'group_rnc60ry282wfpen_content_area_padding_bottom','20'),(27822,529,'_group_rnc60ry282wfpen_content_area_padding_bottom','group_rnc60ry282wfpen_field_5923225383903'),(27823,529,'group_rnc60ry282wfpen_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27824,529,'_group_rnc60ry282wfpen_content_area_background','group_rnc60ry282wfpen_field_5923225383818'),(27825,529,'group_rnc60ry282wfpen_content_area_animations_enabled','0'),(27826,529,'_group_rnc60ry282wfpen_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27827,529,'group_rnc60ry282wfpen_content_area_animations',''),(27828,529,'_group_rnc60ry282wfpen_content_area_animations','group_rnc60ry282wfpen_field_5b7ece258e4e8'),(27829,529,'group_o71dc4si7yrb9ju_content_area_columns','two-column'),(27830,529,'_group_o71dc4si7yrb9ju_content_area_columns','group_o71dc4si7yrb9ju_field_5923225383814'),(27831,529,'group_o71dc4si7yrb9ju_content_area_width','medium'),(27832,529,'_group_o71dc4si7yrb9ju_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(27833,529,'group_o71dc4si7yrb9ju_content_area_content_lead',''),(27834,529,'_group_o71dc4si7yrb9ju_content_area_content_lead','group_o71dc4si7yrb9ju_field_0079736876206'),(27835,529,'group_o71dc4si7yrb9ju_content_area_content','<h3 style=\"text-align: left;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: left;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27836,529,'_group_o71dc4si7yrb9ju_content_area_content','group_o71dc4si7yrb9ju_field_5923228483815'),(27837,529,'group_o71dc4si7yrb9ju_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(27838,529,'_group_o71dc4si7yrb9ju_content_area_button','group_o71dc4si7yrb9ju_field_5923225383819'),(27839,529,'group_o71dc4si7yrb9ju_content_area_css_classes',''),(27840,529,'_group_o71dc4si7yrb9ju_content_area_css_classes','group_o71dc4si7yrb9ju_field_4554768684187'),(27841,529,'group_o71dc4si7yrb9ju_content_area_align','centered'),(27842,529,'_group_o71dc4si7yrb9ju_content_area_align','group_o71dc4si7yrb9ju_field_5923225383899'),(27843,529,'group_o71dc4si7yrb9ju_content_area_enable_padding','1'),(27844,529,'_group_o71dc4si7yrb9ju_content_area_enable_padding','group_o71dc4si7yrb9ju_field_5923225383901'),(27845,529,'group_o71dc4si7yrb9ju_content_area_padding_top','20'),(27846,529,'_group_o71dc4si7yrb9ju_content_area_padding_top','group_o71dc4si7yrb9ju_field_5923225383902'),(27847,529,'group_o71dc4si7yrb9ju_content_area_padding_bottom','20'),(27848,529,'_group_o71dc4si7yrb9ju_content_area_padding_bottom','group_o71dc4si7yrb9ju_field_5923225383903'),(27849,529,'group_o71dc4si7yrb9ju_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27850,529,'_group_o71dc4si7yrb9ju_content_area_background','group_o71dc4si7yrb9ju_field_5923225383818'),(27851,529,'group_o71dc4si7yrb9ju_content_area_animations_enabled','0'),(27852,529,'_group_o71dc4si7yrb9ju_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27853,529,'group_o71dc4si7yrb9ju_content_area_animations',''),(27854,529,'_group_o71dc4si7yrb9ju_content_area_animations','group_o71dc4si7yrb9ju_field_5b7ece258e4e8'),(27855,529,'group_kpnm8dq6b461nnn_ctas_ctas','489'),(27856,529,'_group_kpnm8dq6b461nnn_ctas_ctas','group_kpnm8dq6b461nnn_field_5620077701227'),(27857,529,'group_kpnm8dq6b461nnn_ctas_css_classes','cta'),(27858,529,'_group_kpnm8dq6b461nnn_ctas_css_classes','group_kpnm8dq6b461nnn_field_8795774705172'),(27859,529,'group_kpnm8dq6b461nnn_ctas_animations_enabled','0'),(27860,529,'_group_kpnm8dq6b461nnn_ctas_animations_enabled','field_5b7ece2e8e4e9'),(27861,529,'group_kpnm8dq6b461nnn_ctas_animations',''),(27862,529,'_group_kpnm8dq6b461nnn_ctas_animations','group_kpnm8dq6b461nnn_field_5b7ece258e4e8'),(27863,529,'group_3ze24gyj4v2v5kl_content_area_columns','single'),(27864,529,'_group_3ze24gyj4v2v5kl_content_area_columns','group_3ze24gyj4v2v5kl_field_5923225383814'),(27865,529,'group_3ze24gyj4v2v5kl_content_area_width','medium'),(27866,529,'_group_3ze24gyj4v2v5kl_content_area_width','group_3ze24gyj4v2v5kl_field_5923225383891'),(27867,529,'group_3ze24gyj4v2v5kl_content_area_content_lead',''),(27868,529,'_group_3ze24gyj4v2v5kl_content_area_content_lead','group_3ze24gyj4v2v5kl_field_0079736876206'),(27869,529,'group_3ze24gyj4v2v5kl_content_area_content','<h3 style=\"text-align: center;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: center;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.a</p>'),(27870,529,'_group_3ze24gyj4v2v5kl_content_area_content','group_3ze24gyj4v2v5kl_field_5923228483815'),(27871,529,'group_3ze24gyj4v2v5kl_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(27872,529,'_group_3ze24gyj4v2v5kl_content_area_button','group_3ze24gyj4v2v5kl_field_5923225383819'),(27873,529,'group_3ze24gyj4v2v5kl_content_area_css_classes',''),(27874,529,'_group_3ze24gyj4v2v5kl_content_area_css_classes','group_3ze24gyj4v2v5kl_field_4554768684187'),(27875,529,'group_3ze24gyj4v2v5kl_content_area_align','centered'),(27876,529,'_group_3ze24gyj4v2v5kl_content_area_align','group_3ze24gyj4v2v5kl_field_5923225383899'),(27877,529,'group_3ze24gyj4v2v5kl_content_area_enable_padding','1'),(27878,529,'_group_3ze24gyj4v2v5kl_content_area_enable_padding','group_3ze24gyj4v2v5kl_field_5923225383901'),(27879,529,'group_3ze24gyj4v2v5kl_content_area_padding_top','20'),(27880,529,'_group_3ze24gyj4v2v5kl_content_area_padding_top','group_3ze24gyj4v2v5kl_field_5923225383902'),(27881,529,'group_3ze24gyj4v2v5kl_content_area_padding_bottom','20'),(27882,529,'_group_3ze24gyj4v2v5kl_content_area_padding_bottom','group_3ze24gyj4v2v5kl_field_5923225383903'),(27883,529,'group_3ze24gyj4v2v5kl_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27884,529,'_group_3ze24gyj4v2v5kl_content_area_background','group_3ze24gyj4v2v5kl_field_5923225383818'),(27885,529,'group_3ze24gyj4v2v5kl_content_area_animations_enabled','0'),(27886,529,'_group_3ze24gyj4v2v5kl_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27887,529,'group_3ze24gyj4v2v5kl_content_area_animations',''),(27888,529,'_group_3ze24gyj4v2v5kl_content_area_animations','group_3ze24gyj4v2v5kl_field_5b7ece258e4e8'),(27889,529,'group_o71dc4si7yrb9ju_content_area_content_two','<h3 style=\"text-align: left;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: left;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27890,529,'_group_o71dc4si7yrb9ju_content_area_content_two','group_o71dc4si7yrb9ju_field_9871214998600'),(27891,530,'subheading',''),(27892,530,'_subheading','field_5976417756400'),(27893,530,'group_b0v7q0nnl7smzja_content_area_columns','single'),(27894,530,'_group_b0v7q0nnl7smzja_content_area_columns','group_b0v7q0nnl7smzja_field_5923225383814'),(27895,530,'group_b0v7q0nnl7smzja_content_area_width','medium'),(27896,530,'_group_b0v7q0nnl7smzja_content_area_width','group_b0v7q0nnl7smzja_field_5923225383891'),(27897,530,'group_b0v7q0nnl7smzja_content_area_content_lead',''),(27898,530,'_group_b0v7q0nnl7smzja_content_area_content_lead','group_b0v7q0nnl7smzja_field_0079736876206'),(27899,530,'group_b0v7q0nnl7smzja_content_area_content','<h2 style=\"text-align: center;\">Lorem Ipsum Dolor Sit Amet</h2>\r\n<p style=\"text-align: center;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27900,530,'_group_b0v7q0nnl7smzja_content_area_content','group_b0v7q0nnl7smzja_field_5923228483815'),(27901,530,'group_b0v7q0nnl7smzja_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(27902,530,'_group_b0v7q0nnl7smzja_content_area_button','group_b0v7q0nnl7smzja_field_5923225383819'),(27903,530,'group_b0v7q0nnl7smzja_content_area_css_classes',''),(27904,530,'_group_b0v7q0nnl7smzja_content_area_css_classes','group_b0v7q0nnl7smzja_field_4554768684187'),(27905,530,'group_b0v7q0nnl7smzja_content_area_align','centered'),(27906,530,'_group_b0v7q0nnl7smzja_content_area_align','group_b0v7q0nnl7smzja_field_5923225383899'),(27907,530,'group_b0v7q0nnl7smzja_content_area_enable_padding','1'),(27908,530,'_group_b0v7q0nnl7smzja_content_area_enable_padding','group_b0v7q0nnl7smzja_field_5923225383901'),(27909,530,'group_b0v7q0nnl7smzja_content_area_padding_top','20'),(27910,530,'_group_b0v7q0nnl7smzja_content_area_padding_top','group_b0v7q0nnl7smzja_field_5923225383902'),(27911,530,'group_b0v7q0nnl7smzja_content_area_padding_bottom','20'),(27912,530,'_group_b0v7q0nnl7smzja_content_area_padding_bottom','group_b0v7q0nnl7smzja_field_5923225383903'),(27913,530,'group_b0v7q0nnl7smzja_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27914,530,'_group_b0v7q0nnl7smzja_content_area_background','group_b0v7q0nnl7smzja_field_5923225383818'),(27915,530,'group_b0v7q0nnl7smzja_content_area_animations_enabled','0'),(27916,530,'_group_b0v7q0nnl7smzja_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27917,530,'group_b0v7q0nnl7smzja_content_area_animations',''),(27918,530,'_group_b0v7q0nnl7smzja_content_area_animations','group_b0v7q0nnl7smzja_field_5b7ece258e4e8'),(27919,530,'group_rnc60ry282wfpen_content_area_columns','image-right'),(27920,530,'_group_rnc60ry282wfpen_content_area_columns','group_rnc60ry282wfpen_field_5923225383814'),(27921,530,'group_rnc60ry282wfpen_content_area_content_lead',''),(27922,530,'_group_rnc60ry282wfpen_content_area_content_lead','group_rnc60ry282wfpen_field_0079736876206'),(27923,530,'group_rnc60ry282wfpen_content_area_content','<h3 style=\"text-align: left;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: left;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27924,530,'_group_rnc60ry282wfpen_content_area_content','group_rnc60ry282wfpen_field_5923228483815'),(27925,530,'group_rnc60ry282wfpen_content_area_image','407'),(27926,530,'_group_rnc60ry282wfpen_content_area_image','group_rnc60ry282wfpen_field_5923229983816'),(27927,530,'group_rnc60ry282wfpen_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(27928,530,'_group_rnc60ry282wfpen_content_area_button','group_rnc60ry282wfpen_field_5923225383819'),(27929,530,'group_rnc60ry282wfpen_content_area_css_classes',''),(27930,530,'_group_rnc60ry282wfpen_content_area_css_classes','group_rnc60ry282wfpen_field_4554768684187'),(27931,530,'group_rnc60ry282wfpen_content_area_align','left'),(27932,530,'_group_rnc60ry282wfpen_content_area_align','group_rnc60ry282wfpen_field_5923225383899'),(27933,530,'group_rnc60ry282wfpen_content_area_image_sizing','center'),(27934,530,'_group_rnc60ry282wfpen_content_area_image_sizing','group_rnc60ry282wfpen_field_5923225386557'),(27935,530,'group_rnc60ry282wfpen_content_area_image_width','full-width'),(27936,530,'_group_rnc60ry282wfpen_content_area_image_width','group_rnc60ry282wfpen_field_5923225381234'),(27937,530,'group_rnc60ry282wfpen_content_area_enable_padding','1'),(27938,530,'_group_rnc60ry282wfpen_content_area_enable_padding','group_rnc60ry282wfpen_field_5923225383901'),(27939,530,'group_rnc60ry282wfpen_content_area_padding_top','20'),(27940,530,'_group_rnc60ry282wfpen_content_area_padding_top','group_rnc60ry282wfpen_field_5923225383902'),(27941,530,'group_rnc60ry282wfpen_content_area_padding_bottom','20'),(27942,530,'_group_rnc60ry282wfpen_content_area_padding_bottom','group_rnc60ry282wfpen_field_5923225383903'),(27943,530,'group_rnc60ry282wfpen_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27944,530,'_group_rnc60ry282wfpen_content_area_background','group_rnc60ry282wfpen_field_5923225383818'),(27945,530,'group_rnc60ry282wfpen_content_area_animations_enabled','0'),(27946,530,'_group_rnc60ry282wfpen_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27947,530,'group_rnc60ry282wfpen_content_area_animations',''),(27948,530,'_group_rnc60ry282wfpen_content_area_animations','group_rnc60ry282wfpen_field_5b7ece258e4e8'),(27949,530,'group_o71dc4si7yrb9ju_content_area_columns','two-column'),(27950,530,'_group_o71dc4si7yrb9ju_content_area_columns','group_o71dc4si7yrb9ju_field_5923225383814'),(27951,530,'group_o71dc4si7yrb9ju_content_area_width','medium'),(27952,530,'_group_o71dc4si7yrb9ju_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(27953,530,'group_o71dc4si7yrb9ju_content_area_content_lead',''),(27954,530,'_group_o71dc4si7yrb9ju_content_area_content_lead','group_o71dc4si7yrb9ju_field_0079736876206'),(27955,530,'group_o71dc4si7yrb9ju_content_area_content','<h3 style=\"text-align: left;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: left;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27956,530,'_group_o71dc4si7yrb9ju_content_area_content','group_o71dc4si7yrb9ju_field_5923228483815'),(27957,530,'group_o71dc4si7yrb9ju_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(27958,530,'_group_o71dc4si7yrb9ju_content_area_button','group_o71dc4si7yrb9ju_field_5923225383819'),(27959,530,'group_o71dc4si7yrb9ju_content_area_css_classes',''),(27960,530,'_group_o71dc4si7yrb9ju_content_area_css_classes','group_o71dc4si7yrb9ju_field_4554768684187'),(27961,530,'group_o71dc4si7yrb9ju_content_area_align','centered'),(27962,530,'_group_o71dc4si7yrb9ju_content_area_align','group_o71dc4si7yrb9ju_field_5923225383899'),(27963,530,'group_o71dc4si7yrb9ju_content_area_enable_padding','1'),(27964,530,'_group_o71dc4si7yrb9ju_content_area_enable_padding','group_o71dc4si7yrb9ju_field_5923225383901'),(27965,530,'group_o71dc4si7yrb9ju_content_area_padding_top','20'),(27966,530,'_group_o71dc4si7yrb9ju_content_area_padding_top','group_o71dc4si7yrb9ju_field_5923225383902'),(27967,530,'group_o71dc4si7yrb9ju_content_area_padding_bottom','20'),(27968,530,'_group_o71dc4si7yrb9ju_content_area_padding_bottom','group_o71dc4si7yrb9ju_field_5923225383903'),(27969,530,'group_o71dc4si7yrb9ju_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(27970,530,'_group_o71dc4si7yrb9ju_content_area_background','group_o71dc4si7yrb9ju_field_5923225383818'),(27971,530,'group_o71dc4si7yrb9ju_content_area_animations_enabled','0'),(27972,530,'_group_o71dc4si7yrb9ju_content_area_animations_enabled','field_5b7ece2e8e4e9'),(27973,530,'group_o71dc4si7yrb9ju_content_area_animations',''),(27974,530,'_group_o71dc4si7yrb9ju_content_area_animations','group_o71dc4si7yrb9ju_field_5b7ece258e4e8'),(27975,530,'group_kpnm8dq6b461nnn_ctas_ctas','489'),(27976,530,'_group_kpnm8dq6b461nnn_ctas_ctas','group_kpnm8dq6b461nnn_field_5620077701227'),(27977,530,'group_kpnm8dq6b461nnn_ctas_css_classes','cta'),(27978,530,'_group_kpnm8dq6b461nnn_ctas_css_classes','group_kpnm8dq6b461nnn_field_8795774705172'),(27979,530,'group_kpnm8dq6b461nnn_ctas_animations_enabled','0'),(27980,530,'_group_kpnm8dq6b461nnn_ctas_animations_enabled','field_5b7ece2e8e4e9'),(27981,530,'group_kpnm8dq6b461nnn_ctas_animations',''),(27982,530,'_group_kpnm8dq6b461nnn_ctas_animations','group_kpnm8dq6b461nnn_field_5b7ece258e4e8'),(27983,530,'group_3ze24gyj4v2v5kl_content_area_columns','single'),(27984,530,'_group_3ze24gyj4v2v5kl_content_area_columns','group_3ze24gyj4v2v5kl_field_5923225383814'),(27985,530,'group_3ze24gyj4v2v5kl_content_area_width','medium'),(27986,530,'_group_3ze24gyj4v2v5kl_content_area_width','group_3ze24gyj4v2v5kl_field_5923225383891'),(27987,530,'group_3ze24gyj4v2v5kl_content_area_content_lead',''),(27988,530,'_group_3ze24gyj4v2v5kl_content_area_content_lead','group_3ze24gyj4v2v5kl_field_0079736876206'),(27989,530,'group_3ze24gyj4v2v5kl_content_area_content','<h3 style=\"text-align: center;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: center;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(27990,530,'_group_3ze24gyj4v2v5kl_content_area_content','group_3ze24gyj4v2v5kl_field_5923228483815'),(27991,530,'group_3ze24gyj4v2v5kl_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(27992,530,'_group_3ze24gyj4v2v5kl_content_area_button','group_3ze24gyj4v2v5kl_field_5923225383819'),(27993,530,'group_3ze24gyj4v2v5kl_content_area_css_classes',''),(27994,530,'_group_3ze24gyj4v2v5kl_content_area_css_classes','group_3ze24gyj4v2v5kl_field_4554768684187'),(27995,530,'group_3ze24gyj4v2v5kl_content_area_align','centered'),(27996,530,'_group_3ze24gyj4v2v5kl_content_area_align','group_3ze24gyj4v2v5kl_field_5923225383899'),(27997,530,'group_3ze24gyj4v2v5kl_content_area_enable_padding','1'),(27998,530,'_group_3ze24gyj4v2v5kl_content_area_enable_padding','group_3ze24gyj4v2v5kl_field_5923225383901'),(27999,530,'group_3ze24gyj4v2v5kl_content_area_padding_top','20'),(28000,530,'_group_3ze24gyj4v2v5kl_content_area_padding_top','group_3ze24gyj4v2v5kl_field_5923225383902'),(28001,530,'group_3ze24gyj4v2v5kl_content_area_padding_bottom','20'),(28002,530,'_group_3ze24gyj4v2v5kl_content_area_padding_bottom','group_3ze24gyj4v2v5kl_field_5923225383903'),(28003,530,'group_3ze24gyj4v2v5kl_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(28004,530,'_group_3ze24gyj4v2v5kl_content_area_background','group_3ze24gyj4v2v5kl_field_5923225383818'),(28005,530,'group_3ze24gyj4v2v5kl_content_area_animations_enabled','0'),(28006,530,'_group_3ze24gyj4v2v5kl_content_area_animations_enabled','field_5b7ece2e8e4e9'),(28007,530,'group_3ze24gyj4v2v5kl_content_area_animations',''),(28008,530,'_group_3ze24gyj4v2v5kl_content_area_animations','group_3ze24gyj4v2v5kl_field_5b7ece258e4e8'),(28009,530,'group_o71dc4si7yrb9ju_content_area_content_two','<h3 style=\"text-align: left;\">Lorem Ipsum Dolor Sit Amet</h3>\r\n<p style=\"text-align: left;\">Id interdum velit laoreet id donec ultrices tincidunt arcu. Sit amet nulla facilisi morbi tempus iaculis urna. In aliquam sem fringilla ut morbi tincidunt augue interdum. Fringilla est ullamcorper eget nulla facilisi etiam. Pellentesque pulvinar pellentesque habitant morbi tristique senectus et netus. Et tortor consequat id porta nibh venenatis cras sed. Pellentesque eu tincidunt tortor aliquam nulla facilisi. Aenean euismod elementum nisi quis. Morbi tincidunt ornare massa eget egestas purus viverra. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Id donec ultrices tincidunt arcu non sodales. Facilisi nullam vehicula ipsum a arcu.</p>'),(28010,530,'_group_o71dc4si7yrb9ju_content_area_content_two','group_o71dc4si7yrb9ju_field_9871214998600'),(28011,532,'_wp_attached_file','2019/12/bg_mann-bldg.jpg'),(28012,532,'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:127389;s:10:\"size_after\";i:127389;s:4:\"time\";d:0.23999999999999996;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\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2336;s:10:\"size_after\";i:2336;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3851;s:10:\"size_after\";i:3851;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12781;s:10:\"size_after\";i:12781;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19526;s:10:\"size_after\";i:19526;s:4:\"time\";d:0.02;}s:14:\"featured-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:32359;s:10:\"size_after\";i:32359;s:4:\"time\";d:0.089999999999999997;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17684;s:10:\"size_after\";i:17684;s:4:\"time\";d:0.02;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12781;s:10:\"size_after\";i:12781;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6820;s:10:\"size_after\";i:6820;s:4:\"time\";d:0.01;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8673;s:10:\"size_after\";i:8673;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10578;s:10:\"size_after\";i:10578;s:4:\"time\";d:0.02;}}}'),(28013,532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2019/12/bg_mann-bldg.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"bg_mann-bldg-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:\"bg_mann-bldg-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"bg_mann-bldg-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"bg_mann-bldg-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-large\";a:4:{s:4:\"file\";s:25:\"bg_mann-bldg-1440x600.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:24:\"bg_mann-bldg-960x400.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"bg_mann-bldg-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"bg_mann-bldg-480x200.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"bg_mann-bldg-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"bg_mann-bldg-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:{}}}'),(28014,533,'_wp_attached_file','2019/12/CTA_Interior.jpg'),(28015,533,'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:126860;s:10:\"size_after\";i:126860;s:4:\"time\";d:0.22999999999999998;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\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3004;s:10:\"size_after\";i:3004;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2318;s:10:\"size_after\";i:2318;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10526;s:10:\"size_after\";i:10526;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17259;s:10:\"size_after\";i:17259;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:32427;s:10:\"size_after\";i:32427;s:4:\"time\";d:0.029999999999999999;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15081;s:10:\"size_after\";i:15081;s:4:\"time\";d:0.02;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10526;s:10:\"size_after\";i:10526;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4963;s:10:\"size_after\";i:4963;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15378;s:10:\"size_after\";i:15378;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15378;s:10:\"size_after\";i:15378;s:4:\"time\";d:0.02;}}}'),(28016,533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2019/12/CTA_Interior.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"CTA_Interior-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:\"CTA_Interior-300x63.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"CTA_Interior-768x160.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"CTA_Interior-1024x213.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-large\";a:4:{s:4:\"file\";s:25:\"CTA_Interior-1440x300.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:24:\"CTA_Interior-960x200.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"CTA_Interior-768x160.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"CTA_Interior-480x100.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"CTA_Interior-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"CTA_Interior-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;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:{}}}'),(28023,536,'_wp_attached_file','2019/12/Hero_home_mobile.jpg'),(28024,536,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.59181850385817913;s:5:\"bytes\";i:1537;s:11:\"size_before\";i:259708;s:10:\"size_after\";i:258171;s:4:\"time\";d:0.23000000000000004;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:4859;s:10:\"size_after\";i:4859;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10809;s:10:\"size_after\";i:10809;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44350;s:10:\"size_after\";i:44350;s:4:\"time\";d:0.029999999999999999;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44350;s:10:\"size_after\";i:44350;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21061;s:10:\"size_after\";i:21061;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19668;s:10:\"size_after\";i:19668;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25455;s:10:\"size_after\";i:25455;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.72;s:5:\"bytes\";i:1537;s:11:\"size_before\";i:89156;s:10:\"size_after\";i:87619;s:4:\"time\";d:0.050000000000000003;}}}'),(28025,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:549;s:4:\"file\";s:28:\"2019/12/Hero_home_mobile.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Hero_home_mobile-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:\"Hero_home_mobile-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Hero_home_mobile-768x549.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:28:\"Hero_home_mobile-768x549.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:28:\"Hero_home_mobile-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:28:\"Hero_home_mobile-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:28:\"Hero_home_mobile-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:{}}}'),(28026,537,'_wp_attached_file','2019/12/Hero_home_web.jpg'),(28027,537,'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:310822;s:10:\"size_after\";i:310822;s:4:\"time\";d:0.26000000000000001;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\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4689;s:10:\"size_after\";i:4689;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8473;s:10:\"size_after\";i:8473;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:31443;s:10:\"size_after\";i:31443;s:4:\"time\";d:0.029999999999999999;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:47896;s:10:\"size_after\";i:47896;s:4:\"time\";d:0.059999999999999998;}s:14:\"featured-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:83593;s:10:\"size_after\";i:83593;s:4:\"time\";d:0.050000000000000003;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:43648;s:10:\"size_after\";i:43648;s:4:\"time\";d:0.029999999999999999;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:31443;s:10:\"size_after\";i:31443;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16261;s:10:\"size_after\";i:16261;s:4:\"time\";d:0.01;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19976;s:10:\"size_after\";i:19976;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23400;s:10:\"size_after\";i:23400;s:4:\"time\";d:0.02;}}}'),(28028,537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:700;s:4:\"file\";s:25:\"2019/12/Hero_home_web.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Hero_home_web-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:\"Hero_home_web-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Hero_home_web-768x373.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Hero_home_web-1024x498.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-large\";a:4:{s:4:\"file\";s:26:\"Hero_home_web-1440x700.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:25:\"Hero_home_web-960x467.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:25:\"Hero_home_web-768x373.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:25:\"Hero_home_web-480x233.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:25:\"Hero_home_web-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:25:\"Hero_home_web-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:{}}}'),(28029,538,'_wp_attached_file','2019/12/Hero_Interior.jpg'),(28030,538,'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:153371;s:10:\"size_after\";i:153371;s:4:\"time\";d:0.23999999999999996;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\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3076;s:10:\"size_after\";i:3076;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2096;s:10:\"size_after\";i:2096;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13636;s:10:\"size_after\";i:13636;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23047;s:10:\"size_after\";i:23047;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-large\";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.040000000000000001;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20195;s:10:\"size_after\";i:20195;s:4:\"time\";d:0.02;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13636;s:10:\"size_after\";i:13636;s:4:\"time\";d:0.050000000000000003;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5383;s:10:\"size_after\";i:5383;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13882;s:10:\"size_after\";i:13882;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13882;s:10:\"size_after\";i:13882;s:4:\"time\";d:0.02;}}}'),(28031,538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:260;s:4:\"file\";s:25:\"2019/12/Hero_Interior.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Hero_Interior-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:\"Hero_Interior-300x54.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:54;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Hero_Interior-768x139.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Hero_Interior-1024x185.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-large\";a:4:{s:4:\"file\";s:26:\"Hero_Interior-1440x260.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:25:\"Hero_Interior-960x173.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:25:\"Hero_Interior-768x139.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"Hero_Interior-480x87.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:25:\"Hero_Interior-480x260.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:25:\"Hero_Interior-480x260.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:260;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:{}}}'),(28035,540,'_wp_attached_file','2019/12/Mann_favicon.png'),(28036,540,'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:411562;s:10:\"size_after\";i:411562;s:4:\"time\";d:0.40000000000000002;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:14343;s:10:\"size_after\";i:14343;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:38519;s:10:\"size_after\";i:38519;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:75219;s:10:\"size_after\";i:75219;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:64510;s:10:\"size_after\";i:64510;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:75219;s:10:\"size_after\";i:75219;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:143752;s:10:\"size_after\";i:143752;s:4:\"time\";d:0.33000000000000002;}}}'),(28037,540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:24:\"2019/12/Mann_favicon.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Mann_favicon-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:24:\"Mann_favicon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"Mann_favicon-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"Mann_favicon-480x320.png\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"Mann_favicon-480x480.png\";s:5:\"width\";i:480;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:{}}}'),(28038,541,'_wp_attached_file','2019/12/Mann_logo.png'),(28039,541,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.094636843185302;s:5:\"bytes\";i:16647;s:11:\"size_before\";i:82843;s:10:\"size_after\";i:66196;s:4:\"time\";d:0.17999999999999999;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:17.370000000000001;s:5:\"bytes\";i:2027;s:11:\"size_before\";i:11667;s:10:\"size_after\";i:9640;s:4:\"time\";d:0.040000000000000001;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.600000000000001;s:5:\"bytes\";i:6819;s:11:\"size_before\";i:36663;s:10:\"size_after\";i:29844;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.600000000000001;s:5:\"bytes\";i:7801;s:11:\"size_before\";i:34513;s:10:\"size_after\";i:26712;s:4:\"time\";d:0.089999999999999997;}}}'),(28040,541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:132;s:4:\"file\";s:21:\"2019/12/Mann_logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Mann_logo-150x132.png\";s:5:\"width\";i:150;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Mann_logo-300x102.png\";s:5:\"width\";i:300;s:6:\"height\";i:102;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:{}}}'),(28056,547,'_wp_attached_file','2019/12/cropped-Mann_favicon.png'),(28057,547,'_wp_attachment_context','site-icon'),(28058,547,'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:419000;s:10:\"size_after\";i:419000;s:4:\"time\";d:0.17000000000000001;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\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14343;s:10:\"size_after\";i:14343;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:38519;s:10:\"size_after\";i:38519;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:75219;s:10:\"size_after\";i:75219;s:4:\"time\";d:0.01;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:64510;s:10:\"size_after\";i:64510;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:75219;s:10:\"size_after\";i:75219;s:4:\"time\";d:0.02;}s:13:\"site_icon-270\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33152;s:10:\"size_after\";i:33152;s:4:\"time\";d:0.01;}s:13:\"site_icon-192\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20404;s:10:\"size_after\";i:20404;s:4:\"time\";d:0.02;}s:13:\"site_icon-180\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18668;s:10:\"size_after\";i:18668;s:4:\"time\";d:0.01;}s:12:\"site_icon-32\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1448;s:10:\"size_after\";i:1448;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77518;s:10:\"size_after\";i:77518;s:4:\"time\";d:0.01;}}}'),(28059,547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:32:\"2019/12/cropped-Mann_favicon.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-Mann_favicon-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:32:\"cropped-Mann_favicon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:32:\"cropped-Mann_favicon-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:32:\"cropped-Mann_favicon-480x320.png\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:32:\"cropped-Mann_favicon-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:32:\"cropped-Mann_favicon-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:32:\"cropped-Mann_favicon-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:32:\"cropped-Mann_favicon-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:30:\"cropped-Mann_favicon-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28062,550,'_menu_item_type','custom'),(28063,550,'_menu_item_menu_item_parent','0'),(28064,550,'_menu_item_object_id','550'),(28065,550,'_menu_item_object','custom'),(28066,550,'_menu_item_target','_blank'),(28067,550,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28068,550,'_menu_item_xfn',''),(28069,550,'_menu_item_url','https://goo.gl/maps/ztkdmKCYXybNr55G9'),(28070,551,'_menu_item_type','custom'),(28071,551,'_menu_item_menu_item_parent','0'),(28072,551,'_menu_item_object_id','551'),(28073,551,'_menu_item_object','custom'),(28074,551,'_menu_item_target',''),(28075,551,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28076,551,'_menu_item_xfn',''),(28077,551,'_menu_item_url','tel:717-352-9549'),(28650,554,'_wp_attached_file','2019/12/service-2.jpg'),(28651,554,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.6007269920703093;s:5:\"bytes\";i:5785;s:11:\"size_before\";i:160662;s:10:\"size_after\";i:154877;s:4:\"time\";d:0.10000000000000001;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.720000000000001;s:5:\"bytes\";i:825;s:11:\"size_before\";i:6485;s:10:\"size_after\";i:5660;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79;s:5:\"bytes\";i:1001;s:11:\"size_before\";i:17299;s:10:\"size_after\";i:16298;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.54;s:5:\"bytes\";i:1208;s:11:\"size_before\";i:34159;s:10:\"size_after\";i:32951;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4299999999999997;s:5:\"bytes\";i:1074;s:11:\"size_before\";i:24239;s:10:\"size_after\";i:23165;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:32951;s:10:\"size_after\";i:32951;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6800000000000002;s:5:\"bytes\";i:1677;s:11:\"size_before\";i:45529;s:10:\"size_after\";i:43852;s:4:\"time\";d:0.02;}}}'),(28652,554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2019/12/service-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"service-2-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:\"service-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:21:\"service-2-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:21:\"service-2-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:21:\"service-2-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:{}}}'),(28653,555,'_wp_attached_file','2019/12/service-1.jpg'),(28654,555,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.7484522445338273;s:5:\"bytes\";i:9748;s:11:\"size_before\";i:260054;s:10:\"size_after\";i:250306;s:4:\"time\";d:0.17000000000000001;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:11.02;s:5:\"bytes\";i:895;s:11:\"size_before\";i:8120;s:10:\"size_after\";i:7225;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6900000000000004;s:5:\"bytes\";i:1402;s:11:\"size_before\";i:24657;s:10:\"size_after\";i:23255;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.46;s:5:\"bytes\";i:2434;s:11:\"size_before\";i:54539;s:10:\"size_after\";i:52105;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5700000000000003;s:5:\"bytes\";i:1602;s:11:\"size_before\";i:35031;s:10:\"size_after\";i:33429;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:52105;s:10:\"size_after\";i:52105;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9900000000000002;s:5:\"bytes\";i:3415;s:11:\"size_before\";i:85602;s:10:\"size_after\";i:82187;s:4:\"time\";d:0.070000000000000007;}}}'),(28655,555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2019/12/service-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"service-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:21:\"service-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:21:\"service-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:21:\"service-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:21:\"service-1-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:{}}}'),(28656,556,'_wp_attached_file','2019/12/service-3.jpg'),(28657,556,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.9294064409080627;s:5:\"bytes\";i:6252;s:11:\"size_before\";i:159108;s:10:\"size_after\";i:152856;s:4:\"time\";d:0.11;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:13.58;s:5:\"bytes\";i:1023;s:11:\"size_before\";i:7532;s:10:\"size_after\";i:6509;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4299999999999997;s:5:\"bytes\";i:1177;s:11:\"size_before\";i:18306;s:10:\"size_after\";i:17129;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4900000000000002;s:5:\"bytes\";i:1180;s:11:\"size_before\";i:33786;s:10:\"size_after\";i:32606;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6699999999999999;s:5:\"bytes\";i:1106;s:11:\"size_before\";i:23703;s:10:\"size_after\";i:22597;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:32606;s:10:\"size_after\";i:32606;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0899999999999999;s:5:\"bytes\";i:1766;s:11:\"size_before\";i:43175;s:10:\"size_after\";i:41409;s:4:\"time\";d:0.02;}}}'),(28658,556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2019/12/service-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"service-3-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:\"service-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:21:\"service-3-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:21:\"service-3-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:21:\"service-3-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:{}}}'),(28659,557,'_wp_attached_file','2019/12/service-4.jpg'),(28660,557,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.2730420714915427;s:5:\"bytes\";i:9403;s:11:\"size_before\";i:220054;s:10:\"size_after\";i:210651;s:4:\"time\";d:0.090000000000000011;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:11.699999999999999;s:5:\"bytes\";i:832;s:11:\"size_before\";i:7114;s:10:\"size_after\";i:6282;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3600000000000003;s:5:\"bytes\";i:1306;s:11:\"size_before\";i:20538;s:10:\"size_after\";i:19232;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0800000000000001;s:5:\"bytes\";i:2300;s:11:\"size_before\";i:45265;s:10:\"size_after\";i:42965;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7000000000000002;s:5:\"bytes\";i:1954;s:11:\"size_before\";i:34290;s:10:\"size_after\";i:32336;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42965;s:10:\"size_after\";i:42965;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3099999999999996;s:5:\"bytes\";i:3011;s:11:\"size_before\";i:69882;s:10:\"size_after\";i:66871;s:4:\"time\";d:0.02;}}}'),(28661,557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2019/12/service-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"service-4-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:\"service-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:21:\"service-4-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:21:\"service-4-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:21:\"service-4-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:{}}}'),(28662,5,'group_zi794n2mdkggmlv_services_services_3_image','557'),(28663,5,'_group_zi794n2mdkggmlv_services_services_3_image','field_35a935e59da73'),(28664,5,'group_zi794n2mdkggmlv_services_services_3_name','Excavation Services'),(28665,5,'_group_zi794n2mdkggmlv_services_services_3_name','field_35a935e59da72'),(28666,5,'group_zi794n2mdkggmlv_services_services_3_content','Our team offers a variety of solutions for your excavating needs. If you require party sewer line separation, video inspections, or horizontal directional drilling, we can help you. We handle site work or design and consultation.'),(28667,5,'_group_zi794n2mdkggmlv_services_services_3_content','field_35a935e59da74'),(28668,5,'group_zi794n2mdkggmlv_services_services_3_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(28669,5,'_group_zi794n2mdkggmlv_services_services_3_button','field_35a935e59da76'),(28670,5,'group_zi794n2mdkggmlv_services_services_3_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:30:\"/services/excavation-services/\";s:6:\"target\";s:0:\"\";}'),(28671,5,'_group_zi794n2mdkggmlv_services_services_3_item_link','field_35a935e59da79'),(28672,5,'group_zi794n2mdkggmlv_services_services_3_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(28673,5,'_group_zi794n2mdkggmlv_services_services_3_background','field_35a935e59da75'),(29246,560,'_wp_attached_file','2019/12/mann-work-16.jpg'),(29247,560,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.0447552797831108;s:5:\"bytes\";i:12920;s:11:\"size_before\";i:319426;s:10:\"size_after\";i:306506;s:4:\"time\";d:0.14999999999999999;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:10.74;s:5:\"bytes\";i:736;s:11:\"size_before\";i:6854;s:10:\"size_after\";i:6118;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0800000000000001;s:5:\"bytes\";i:1058;s:11:\"size_before\";i:17415;s:10:\"size_after\";i:16357;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6600000000000001;s:5:\"bytes\";i:2698;s:11:\"size_before\";i:73762;s:10:\"size_after\";i:71064;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6399999999999997;s:5:\"bytes\";i:1765;s:11:\"size_before\";i:38032;s:10:\"size_after\";i:36267;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1900000000000004;s:5:\"bytes\";i:2331;s:11:\"size_before\";i:55633;s:10:\"size_after\";i:53302;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3900000000000001;s:5:\"bytes\";i:4332;s:11:\"size_before\";i:127730;s:10:\"size_after\";i:123398;s:4:\"time\";d:0.040000000000000001;}}}'),(29248,560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-16.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-16-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:\"mann-work-16-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-16-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-16-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-16-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:{}}}'),(29249,561,'_wp_attached_file','2019/12/mann-work-12.jpg'),(29250,561,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.2325489707835322;s:5:\"bytes\";i:8159;s:11:\"size_before\";i:192768;s:10:\"size_after\";i:184609;s:4:\"time\";d:0.12000000000000001;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.51;s:5:\"bytes\";i:757;s:11:\"size_before\";i:6050;s:10:\"size_after\";i:5293;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3200000000000003;s:5:\"bytes\";i:884;s:11:\"size_before\";i:13985;s:10:\"size_after\";i:13101;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2799999999999998;s:5:\"bytes\";i:1547;s:11:\"size_before\";i:47153;s:10:\"size_after\";i:45606;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0899999999999999;s:5:\"bytes\";i:954;s:11:\"size_before\";i:23297;s:10:\"size_after\";i:22343;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5499999999999998;s:5:\"bytes\";i:1249;s:11:\"size_before\";i:35172;s:10:\"size_after\";i:33923;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1200000000000001;s:5:\"bytes\";i:2768;s:11:\"size_before\";i:67111;s:10:\"size_after\";i:64343;s:4:\"time\";d:0.029999999999999999;}}}'),(29251,561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-12.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-12-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:\"mann-work-12-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-12-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-12-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-12-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:{}}}'),(29252,562,'_wp_attached_file','2019/12/mann-work-17.jpg'),(29253,562,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.6185098912970086;s:5:\"bytes\";i:8575;s:11:\"size_before\";i:236976;s:10:\"size_after\";i:228401;s:4:\"time\";d:0.16;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:11.859999999999999;s:5:\"bytes\";i:698;s:11:\"size_before\";i:5885;s:10:\"size_after\";i:5187;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8799999999999999;s:5:\"bytes\";i:888;s:11:\"size_before\";i:15101;s:10:\"size_after\";i:14213;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.48;s:5:\"bytes\";i:1401;s:11:\"size_before\";i:56544;s:10:\"size_after\";i:55143;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";i:3;s:5:\"bytes\";i:857;s:11:\"size_before\";i:28573;s:10:\"size_after\";i:27716;s:4:\"time\";d:0.040000000000000001;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6000000000000001;s:5:\"bytes\";i:1099;s:11:\"size_before\";i:42211;s:10:\"size_after\";i:41112;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0999999999999996;s:5:\"bytes\";i:3632;s:11:\"size_before\";i:88662;s:10:\"size_after\";i:85030;s:4:\"time\";d:0.029999999999999999;}}}'),(29254,562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-17.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-17-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:\"mann-work-17-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-17-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-17-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-17-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:{}}}'),(29255,563,'_wp_attached_file','2019/12/mann-work-14.jpg'),(29256,563,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.9027311931001436;s:5:\"bytes\";i:11403;s:11:\"size_before\";i:292180;s:10:\"size_after\";i:280777;s:4:\"time\";d:0.26000000000000001;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:10.85;s:5:\"bytes\";i:819;s:11:\"size_before\";i:7545;s:10:\"size_after\";i:6726;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.29;s:5:\"bytes\";i:1233;s:11:\"size_before\";i:19606;s:10:\"size_after\";i:18373;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5800000000000001;s:5:\"bytes\";i:2546;s:11:\"size_before\";i:71060;s:10:\"size_after\";i:68514;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7200000000000002;s:5:\"bytes\";i:1256;s:11:\"size_before\";i:33757;s:10:\"size_after\";i:32501;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3199999999999998;s:5:\"bytes\";i:1684;s:11:\"size_before\";i:50703;s:10:\"size_after\";i:49019;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5299999999999998;s:5:\"bytes\";i:3865;s:11:\"size_before\";i:109509;s:10:\"size_after\";i:105644;s:4:\"time\";d:0.11;}}}'),(29257,563,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-14.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-14-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:\"mann-work-14-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-14-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-14-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-14-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:{}}}'),(29258,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_name','B H'),(29259,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_name','field_59232e937d163'),(29260,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_date',''),(29261,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_date','field_59232e967d164'),(29262,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_content','Great service. Mann\'s installed Trane Heat Pump. Very professional and courteous. Highly recommend. A+++'),(29263,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_content','field_59232e817d162'),(29264,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_star_rating','5'),(29265,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_star_rating','field_59232e817d166'),(29266,5,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_avatar',''),(29267,5,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_avatar','field_59232e817d165'),(30251,569,'_edit_last','7'),(30252,569,'_yoast_wpseo_content_score','30'),(30253,569,'subheading',''),(30254,569,'_subheading','field_5976417756400'),(30255,570,'subheading',''),(30256,570,'_subheading','field_5976417756400'),(30257,569,'_edit_lock','1577114709:7'),(30258,569,'group_ffgoalgidcgol8d_services_content','<h2>View Our Services</h2>'),(30259,569,'_group_ffgoalgidcgol8d_services_content','group_ffgoalgidcgol8d_field_35a935e59d870'),(30260,569,'group_ffgoalgidcgol8d_services_services','4'),(30261,569,'_group_ffgoalgidcgol8d_services_services','group_ffgoalgidcgol8d_field_35a935e59d871'),(30262,569,'group_ffgoalgidcgol8d_services_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30263,569,'_group_ffgoalgidcgol8d_services_button','group_ffgoalgidcgol8d_field_35a935e59da88'),(30264,569,'group_ffgoalgidcgol8d_services_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#ffffff\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:6:\"repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:4:\"auto\";}'),(30265,569,'_group_ffgoalgidcgol8d_services_background','group_ffgoalgidcgol8d_field_35a935e59da75'),(30266,569,'group_ffgoalgidcgol8d_services_services_0_image','555'),(30267,569,'_group_ffgoalgidcgol8d_services_services_0_image','field_35a935e59da73'),(30268,569,'group_ffgoalgidcgol8d_services_services_0_name','HVAC'),(30269,569,'_group_ffgoalgidcgol8d_services_services_0_name','field_35a935e59da72'),(30270,569,'group_ffgoalgidcgol8d_services_services_0_content',''),(30271,569,'_group_ffgoalgidcgol8d_services_services_0_content','field_35a935e59da74'),(30272,569,'group_ffgoalgidcgol8d_services_services_0_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30273,569,'_group_ffgoalgidcgol8d_services_services_0_button','field_35a935e59da76'),(30274,569,'group_ffgoalgidcgol8d_services_services_1_image','554'),(30275,569,'_group_ffgoalgidcgol8d_services_services_1_image','field_35a935e59da73'),(30276,569,'group_ffgoalgidcgol8d_services_services_1_name','Design / Build'),(30277,569,'_group_ffgoalgidcgol8d_services_services_1_name','field_35a935e59da72'),(30278,569,'group_ffgoalgidcgol8d_services_services_1_content',''),(30279,569,'_group_ffgoalgidcgol8d_services_services_1_content','field_35a935e59da74'),(30280,569,'group_ffgoalgidcgol8d_services_services_1_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30281,569,'_group_ffgoalgidcgol8d_services_services_1_button','field_35a935e59da76'),(30282,569,'group_ffgoalgidcgol8d_services_services_2_image','556'),(30283,569,'_group_ffgoalgidcgol8d_services_services_2_image','field_35a935e59da73'),(30284,569,'group_ffgoalgidcgol8d_services_services_2_name','Plumbing'),(30285,569,'_group_ffgoalgidcgol8d_services_services_2_name','field_35a935e59da72'),(30286,569,'group_ffgoalgidcgol8d_services_services_2_content',''),(30287,569,'_group_ffgoalgidcgol8d_services_services_2_content','field_35a935e59da74'),(30288,569,'group_ffgoalgidcgol8d_services_services_2_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30289,569,'_group_ffgoalgidcgol8d_services_services_2_button','field_35a935e59da76'),(30290,569,'group_ffgoalgidcgol8d_services_services_0_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30291,569,'_group_ffgoalgidcgol8d_services_services_0_background','field_35a935e59da75'),(30292,569,'group_ffgoalgidcgol8d_services_services_1_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30293,569,'_group_ffgoalgidcgol8d_services_services_1_background','field_35a935e59da75'),(30294,569,'group_ffgoalgidcgol8d_services_services_2_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30295,569,'_group_ffgoalgidcgol8d_services_services_2_background','field_35a935e59da75'),(30296,569,'group_ffgoalgidcgol8d_services_columns','single'),(30297,569,'_group_ffgoalgidcgol8d_services_columns','group_ffgoalgidcgol8d_field_1875124714003'),(30298,569,'group_ffgoalgidcgol8d_services_services_0_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:15:\"/services/hvac/\";s:6:\"target\";s:0:\"\";}'),(30299,569,'_group_ffgoalgidcgol8d_services_services_0_item_link','field_35a935e59da79'),(30300,569,'group_ffgoalgidcgol8d_services_services_1_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/services/design-build/\";s:6:\"target\";s:0:\"\";}'),(30301,569,'_group_ffgoalgidcgol8d_services_services_1_item_link','field_35a935e59da79'),(30302,569,'group_ffgoalgidcgol8d_services_services_2_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:19:\"/services/plumbing/\";s:6:\"target\";s:0:\"\";}'),(30303,569,'_group_ffgoalgidcgol8d_services_services_2_item_link','field_35a935e59da79'),(30304,569,'group_ffgoalgidcgol8d_services_enable_padding','0'),(30305,569,'_group_ffgoalgidcgol8d_services_enable_padding','group_ffgoalgidcgol8d_field_35a935e59da91'),(30306,569,'group_ffgoalgidcgol8d_services_padding_top','0'),(30307,569,'_group_ffgoalgidcgol8d_services_padding_top','group_ffgoalgidcgol8d_field_35a935e59da92'),(30308,569,'group_ffgoalgidcgol8d_services_padding_bottom','0'),(30309,569,'_group_ffgoalgidcgol8d_services_padding_bottom','group_ffgoalgidcgol8d_field_35a935e59da93'),(30310,569,'group_ffgoalgidcgol8d_services_css_classes',''),(30311,569,'_group_ffgoalgidcgol8d_services_css_classes','group_ffgoalgidcgol8d_field_8577178443184'),(30312,569,'group_ffgoalgidcgol8d_services_button_alignment',''),(30313,569,'_group_ffgoalgidcgol8d_services_button_alignment','group_ffgoalgidcgol8d_field_8591648772677'),(30314,569,'group_ffgoalgidcgol8d_services_animations_enabled','0'),(30315,569,'_group_ffgoalgidcgol8d_services_animations_enabled','field_5b7ece2e8e4e9'),(30316,569,'group_ffgoalgidcgol8d_services_animations',''),(30317,569,'_group_ffgoalgidcgol8d_services_animations','group_ffgoalgidcgol8d_field_5b7ece258e4e8'),(30318,569,'group_ffgoalgidcgol8d_services_services_3_image','557'),(30319,569,'_group_ffgoalgidcgol8d_services_services_3_image','field_35a935e59da73'),(30320,569,'group_ffgoalgidcgol8d_services_services_3_name','Excavation Services'),(30321,569,'_group_ffgoalgidcgol8d_services_services_3_name','field_35a935e59da72'),(30322,569,'group_ffgoalgidcgol8d_services_services_3_content',''),(30323,569,'_group_ffgoalgidcgol8d_services_services_3_content','field_35a935e59da74'),(30324,569,'group_ffgoalgidcgol8d_services_services_3_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30325,569,'_group_ffgoalgidcgol8d_services_services_3_button','field_35a935e59da76'),(30326,569,'group_ffgoalgidcgol8d_services_services_3_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:30:\"/services/excavation-services/\";s:6:\"target\";s:0:\"\";}'),(30327,569,'_group_ffgoalgidcgol8d_services_services_3_item_link','field_35a935e59da79'),(30328,569,'group_ffgoalgidcgol8d_services_services_3_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30329,569,'_group_ffgoalgidcgol8d_services_services_3_background','field_35a935e59da75'),(30330,572,'_yoast_wpseo_content_score','30'),(30331,572,'subheading',''),(30332,572,'_subheading','field_5976417756400'),(30333,572,'group_0j287z8smusg8ro_content_area_columns','single'),(30334,572,'_group_0j287z8smusg8ro_content_area_columns','group_0j287z8smusg8ro_field_5923225383814'),(30335,572,'group_0j287z8smusg8ro_content_area_width','medium'),(30336,572,'_group_0j287z8smusg8ro_content_area_width','group_0j287z8smusg8ro_field_5923225383891'),(30337,572,'group_0j287z8smusg8ro_content_area_content_lead',''),(30338,572,'_group_0j287z8smusg8ro_content_area_content_lead','group_0j287z8smusg8ro_field_0079736876206'),(30339,572,'group_0j287z8smusg8ro_content_area_content','<h2>Custom HVAC Design &amp; Build Services for Customers</h2>\r\nThe talented team at Mann Plumbing & Heating, LLC. plans and installs heating and air conditioning systems that ensure long-term efficiency and comfort for new buildings. We design and build HVAC systems for customers throughout cities and towns in South-Central Pennsylvania, such as Waynesboro, Greencastle, Gettysburg, and Chambersburg. Other areas in which we excel include gas installation, plumbing and excavating. Whatever project we’re working on, we always ensure your water pipes, gas line, and HVAC system operate as efficiently as possible. Our clients include a wide variety of businesses and institutions, including nursing homes, restaurants, schools, and other large commercial establishments. After 30 years of serving commercial and residential clients, we’ve built our expertise and skillset to make sure we can handle any type of HVAC project. Don’t leave your business’s heating and cooling systems in the hands of an inexperienced contractor with limited knowledge. Our seasoned professionals will create and install a system that suits your space for long-term performance.'),(30340,572,'_group_0j287z8smusg8ro_content_area_content','group_0j287z8smusg8ro_field_5923228483815'),(30341,572,'group_0j287z8smusg8ro_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(30342,572,'_group_0j287z8smusg8ro_content_area_button','group_0j287z8smusg8ro_field_5923225383819'),(30343,572,'group_0j287z8smusg8ro_content_area_css_classes',''),(30344,572,'_group_0j287z8smusg8ro_content_area_css_classes','group_0j287z8smusg8ro_field_4554768684187'),(30345,572,'group_0j287z8smusg8ro_content_area_align','centered'),(30346,572,'_group_0j287z8smusg8ro_content_area_align','group_0j287z8smusg8ro_field_5923225383899'),(30347,572,'group_0j287z8smusg8ro_content_area_enable_padding','1'),(30348,572,'_group_0j287z8smusg8ro_content_area_enable_padding','group_0j287z8smusg8ro_field_5923225383901'),(30349,572,'group_0j287z8smusg8ro_content_area_padding_top','20'),(30350,572,'_group_0j287z8smusg8ro_content_area_padding_top','group_0j287z8smusg8ro_field_5923225383902'),(30351,572,'group_0j287z8smusg8ro_content_area_padding_bottom','20'),(30352,572,'_group_0j287z8smusg8ro_content_area_padding_bottom','group_0j287z8smusg8ro_field_5923225383903'),(30353,572,'group_0j287z8smusg8ro_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30354,572,'_group_0j287z8smusg8ro_content_area_background','group_0j287z8smusg8ro_field_5923225383818'),(30355,572,'group_0j287z8smusg8ro_content_area_animations_enabled','0'),(30356,572,'_group_0j287z8smusg8ro_content_area_animations_enabled','field_5b7ece2e8e4e9'),(30357,572,'group_0j287z8smusg8ro_content_area_animations',''),(30358,572,'_group_0j287z8smusg8ro_content_area_animations','group_0j287z8smusg8ro_field_5b7ece258e4e8'),(30359,572,'group_glogz5elw7g3d94_content_area_columns','image-left'),(30360,572,'_group_glogz5elw7g3d94_content_area_columns','group_glogz5elw7g3d94_field_5923225383814'),(30361,572,'group_glogz5elw7g3d94_content_area_content_lead',''),(30362,572,'_group_glogz5elw7g3d94_content_area_content_lead','group_glogz5elw7g3d94_field_0079736876206'),(30363,572,'group_glogz5elw7g3d94_content_area_content','<h3>Designing Your Heating &amp; Air Conditioning Systems</h3>\r\nWhen it’s no longer cost-effective to repair your heating or cooling system due to its age or lack of efficiency, we’ll help you find a solution that fits your space and budget needs. Let our comfort consultants evaluate the comfort needs of your home or business and recommend equipment options to replace your system. The reason your heating and cooling system isn’t providing comfortable temperatures adequately is sometimes because the unit isn’t the right size for the space. When an AC (air conditioning) or heating unit isn’t big enough to handle the needed capacity, then keeping your home or building comfortable will be impossible. Our team will design a custom system that we engineer with load calculations for your space specifically, which will provide maximum comfort and save you energy over time.'),(30364,572,'_group_glogz5elw7g3d94_content_area_content','group_glogz5elw7g3d94_field_5923228483815'),(30365,572,'group_glogz5elw7g3d94_content_area_image','740'),(30366,572,'_group_glogz5elw7g3d94_content_area_image','group_glogz5elw7g3d94_field_5923229983816'),(30367,572,'group_glogz5elw7g3d94_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30368,572,'_group_glogz5elw7g3d94_content_area_button','group_glogz5elw7g3d94_field_5923225383819'),(30369,572,'group_glogz5elw7g3d94_content_area_css_classes',''),(30370,572,'_group_glogz5elw7g3d94_content_area_css_classes','group_glogz5elw7g3d94_field_4554768684187'),(30371,572,'group_glogz5elw7g3d94_content_area_align','left'),(30372,572,'_group_glogz5elw7g3d94_content_area_align','group_glogz5elw7g3d94_field_5923225383899'),(30373,572,'group_glogz5elw7g3d94_content_area_image_sizing','center'),(30374,572,'_group_glogz5elw7g3d94_content_area_image_sizing','group_glogz5elw7g3d94_field_5923225386557'),(30375,572,'group_glogz5elw7g3d94_content_area_image_width','full-width'),(30376,572,'_group_glogz5elw7g3d94_content_area_image_width','group_glogz5elw7g3d94_field_5923225381234'),(30377,572,'group_glogz5elw7g3d94_content_area_enable_padding','1'),(30378,572,'_group_glogz5elw7g3d94_content_area_enable_padding','group_glogz5elw7g3d94_field_5923225383901'),(30379,572,'group_glogz5elw7g3d94_content_area_padding_top','0'),(30380,572,'_group_glogz5elw7g3d94_content_area_padding_top','group_glogz5elw7g3d94_field_5923225383902'),(30381,572,'group_glogz5elw7g3d94_content_area_padding_bottom','0'),(30382,572,'_group_glogz5elw7g3d94_content_area_padding_bottom','group_glogz5elw7g3d94_field_5923225383903'),(30383,572,'group_glogz5elw7g3d94_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30384,572,'_group_glogz5elw7g3d94_content_area_background','group_glogz5elw7g3d94_field_5923225383818'),(30385,572,'group_glogz5elw7g3d94_content_area_animations_enabled','0'),(30386,572,'_group_glogz5elw7g3d94_content_area_animations_enabled','field_5b7ece2e8e4e9'),(30387,572,'group_glogz5elw7g3d94_content_area_animations',''),(30388,572,'_group_glogz5elw7g3d94_content_area_animations','group_glogz5elw7g3d94_field_5b7ece258e4e8'),(30389,572,'group_lt793odq0j0s3qx_content_area_columns','single'),(30390,572,'_group_lt793odq0j0s3qx_content_area_columns','group_lt793odq0j0s3qx_field_5923225383814'),(30391,572,'group_lt793odq0j0s3qx_content_area_width','medium'),(30392,572,'_group_lt793odq0j0s3qx_content_area_width','group_lt793odq0j0s3qx_field_5923225383891'),(30393,572,'group_lt793odq0j0s3qx_content_area_content_lead',''),(30394,572,'_group_lt793odq0j0s3qx_content_area_content_lead','group_lt793odq0j0s3qx_field_0079736876206'),(30395,572,'group_lt793odq0j0s3qx_content_area_content','<h3>Solutions for Your Duct Work</h3>\r\nIf you have undersized or leaky ducts, then your heating and air conditioning bills can increase significantly. Your HVAC equipment’s capacity will also reduce dramatically, and you’ll end up having problems with your indoor air quality. Our technicians perform thorough repairs to resolve your ductwork, or we can redesign it to optimize your airflow and ensure you won’t have any issues in the future. We’re the team you can count on in South-Central Pennsylvania for new ductwork to support your heating and air conditioning systems. We\'ve spent decades installing air conditioning ductwork in homes and businesses, and we welcome the opportunity to do the same for you. <a href=\"/contact-us/\">Give us a call today</a> to schedule a consultation. We\'ll examine your system and ductwork and recommend the solution that suits your budget and comfort needs.'),(30396,572,'_group_lt793odq0j0s3qx_content_area_content','group_lt793odq0j0s3qx_field_5923228483815'),(30397,572,'group_lt793odq0j0s3qx_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30398,572,'_group_lt793odq0j0s3qx_content_area_button','group_lt793odq0j0s3qx_field_5923225383819'),(30399,572,'group_lt793odq0j0s3qx_content_area_css_classes',''),(30400,572,'_group_lt793odq0j0s3qx_content_area_css_classes','group_lt793odq0j0s3qx_field_4554768684187'),(30401,572,'group_lt793odq0j0s3qx_content_area_align','centered'),(30402,572,'_group_lt793odq0j0s3qx_content_area_align','group_lt793odq0j0s3qx_field_5923225383899'),(30403,572,'group_lt793odq0j0s3qx_content_area_enable_padding','1'),(30404,572,'_group_lt793odq0j0s3qx_content_area_enable_padding','group_lt793odq0j0s3qx_field_5923225383901'),(30405,572,'group_lt793odq0j0s3qx_content_area_padding_top','20'),(30406,572,'_group_lt793odq0j0s3qx_content_area_padding_top','group_lt793odq0j0s3qx_field_5923225383902'),(30407,572,'group_lt793odq0j0s3qx_content_area_padding_bottom','20'),(30408,572,'_group_lt793odq0j0s3qx_content_area_padding_bottom','group_lt793odq0j0s3qx_field_5923225383903'),(30409,572,'group_lt793odq0j0s3qx_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30410,572,'_group_lt793odq0j0s3qx_content_area_background','group_lt793odq0j0s3qx_field_5923225383818'),(30411,572,'group_lt793odq0j0s3qx_content_area_animations_enabled','0'),(30412,572,'_group_lt793odq0j0s3qx_content_area_animations_enabled','field_5b7ece2e8e4e9'),(30413,572,'group_lt793odq0j0s3qx_content_area_animations',''),(30414,572,'_group_lt793odq0j0s3qx_content_area_animations','group_lt793odq0j0s3qx_field_5b7ece258e4e8'),(30415,572,'group_7hpz2gts0xxjbk1_ctas_ctas','489'),(30416,572,'_group_7hpz2gts0xxjbk1_ctas_ctas','group_7hpz2gts0xxjbk1_field_5620077701227'),(30417,572,'group_7hpz2gts0xxjbk1_ctas_css_classes','cta'),(30418,572,'_group_7hpz2gts0xxjbk1_ctas_css_classes','group_7hpz2gts0xxjbk1_field_8795774705172'),(30419,572,'group_7hpz2gts0xxjbk1_ctas_animations_enabled','0'),(30420,572,'_group_7hpz2gts0xxjbk1_ctas_animations_enabled','field_5b7ece2e8e4e9'),(30421,572,'group_7hpz2gts0xxjbk1_ctas_animations',''),(30422,572,'_group_7hpz2gts0xxjbk1_ctas_animations','group_7hpz2gts0xxjbk1_field_5b7ece258e4e8'),(30423,572,'_dp_original','500'),(30424,572,'_edit_last','10'),(30425,572,'_edit_lock','1580915733:10'),(30426,574,'_yoast_wpseo_content_score','30'),(30427,574,'subheading',''),(30428,574,'_subheading','field_5976417756400'),(30429,574,'group_qo98bywf16e4f60_content_area_columns','single'),(30430,574,'_group_qo98bywf16e4f60_content_area_columns','group_qo98bywf16e4f60_field_5923225383814'),(30431,574,'group_qo98bywf16e4f60_content_area_width','medium'),(30432,574,'_group_qo98bywf16e4f60_content_area_width','group_qo98bywf16e4f60_field_5923225383891'),(30433,574,'group_qo98bywf16e4f60_content_area_content_lead',''),(30434,574,'_group_qo98bywf16e4f60_content_area_content_lead','group_qo98bywf16e4f60_field_0079736876206'),(30435,574,'group_qo98bywf16e4f60_content_area_content','<h2>Plumbing Solutions for Clients in South-Central PA</h2>\r\nMann Plumbing &amp; Heating, LLC. is a full-service plumbing contractor for your entire plumbing system. We offer a comprehensive list of plumbing services for homes and businesses in Gettysburg, PA, as well as near Shippensburg, Chambersburg, and beyond. Whether you need to replace or repair your toilet or faucet, or you have a water heater that needs installation, we’ll make sure you get the service you need for a complete working system in your building. On top of our hands-on plumbing services, our experts are happy to consult with you regarding improvements to your existing system. This collaboration can lead to better performance and save you energy costs. For the past 30 years, Mann Plumbing &amp; Heating, LLC. has upheld a reputation of quality in every job we perform in South-Central Pennsylvania. Let our team of skilled professionals show you the difference our exceptional expertise makes in maintaining an efficient plumbing system.'),(30436,574,'_group_qo98bywf16e4f60_content_area_content','group_qo98bywf16e4f60_field_5923228483815'),(30437,574,'group_qo98bywf16e4f60_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(30438,574,'_group_qo98bywf16e4f60_content_area_button','group_qo98bywf16e4f60_field_5923225383819'),(30439,574,'group_qo98bywf16e4f60_content_area_css_classes',''),(30440,574,'_group_qo98bywf16e4f60_content_area_css_classes','group_qo98bywf16e4f60_field_4554768684187'),(30441,574,'group_qo98bywf16e4f60_content_area_align','centered'),(30442,574,'_group_qo98bywf16e4f60_content_area_align','group_qo98bywf16e4f60_field_5923225383899'),(30443,574,'group_qo98bywf16e4f60_content_area_enable_padding','1'),(30444,574,'_group_qo98bywf16e4f60_content_area_enable_padding','group_qo98bywf16e4f60_field_5923225383901'),(30445,574,'group_qo98bywf16e4f60_content_area_padding_top','20'),(30446,574,'_group_qo98bywf16e4f60_content_area_padding_top','group_qo98bywf16e4f60_field_5923225383902'),(30447,574,'group_qo98bywf16e4f60_content_area_padding_bottom','20'),(30448,574,'_group_qo98bywf16e4f60_content_area_padding_bottom','group_qo98bywf16e4f60_field_5923225383903'),(30449,574,'group_qo98bywf16e4f60_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30450,574,'_group_qo98bywf16e4f60_content_area_background','group_qo98bywf16e4f60_field_5923225383818'),(30451,574,'group_qo98bywf16e4f60_content_area_animations_enabled','0'),(30452,574,'_group_qo98bywf16e4f60_content_area_animations_enabled','field_5b7ece2e8e4e9'),(30453,574,'group_qo98bywf16e4f60_content_area_animations',''),(30454,574,'_group_qo98bywf16e4f60_content_area_animations','group_qo98bywf16e4f60_field_5b7ece258e4e8'),(30455,574,'group_sfvs9xaj2olhh3a_content_area_columns','image-left'),(30456,574,'_group_sfvs9xaj2olhh3a_content_area_columns','group_sfvs9xaj2olhh3a_field_5923225383814'),(30457,574,'group_sfvs9xaj2olhh3a_content_area_content_lead',''),(30458,574,'_group_sfvs9xaj2olhh3a_content_area_content_lead','group_sfvs9xaj2olhh3a_field_0079736876206'),(30459,574,'group_sfvs9xaj2olhh3a_content_area_content','<h3>Types of Plumbing Services We Offer</h3>\r\nFor any plumbing repair and installation we perform, you can count on the team at Mann Plumbing & Heating, LLC. for thorough work with sharp attention to detail. We make sure your water and sanitary lines run without any issues, and you should depend on a hot shower in the morning and a steady stream from the faucet when you’re washing dishes. Our versatile expertise in plumbing makes us the prime company to call when you have a clog, leak, or new major component for your building. We ensure your newly installed water heater supplies hot water for your home, restaurant, or office. Reach out to us for high-quality plumbing services for your new or existing home or building.'),(30460,574,'_group_sfvs9xaj2olhh3a_content_area_content','group_sfvs9xaj2olhh3a_field_5923228483815'),(30461,574,'group_sfvs9xaj2olhh3a_content_area_image','738'),(30462,574,'_group_sfvs9xaj2olhh3a_content_area_image','group_sfvs9xaj2olhh3a_field_5923229983816'),(30463,574,'group_sfvs9xaj2olhh3a_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30464,574,'_group_sfvs9xaj2olhh3a_content_area_button','group_sfvs9xaj2olhh3a_field_5923225383819'),(30465,574,'group_sfvs9xaj2olhh3a_content_area_css_classes',''),(30466,574,'_group_sfvs9xaj2olhh3a_content_area_css_classes','group_sfvs9xaj2olhh3a_field_4554768684187'),(30467,574,'group_sfvs9xaj2olhh3a_content_area_align','left'),(30468,574,'_group_sfvs9xaj2olhh3a_content_area_align','group_sfvs9xaj2olhh3a_field_5923225383899'),(30469,574,'group_sfvs9xaj2olhh3a_content_area_image_sizing','center'),(30470,574,'_group_sfvs9xaj2olhh3a_content_area_image_sizing','group_sfvs9xaj2olhh3a_field_5923225386557'),(30471,574,'group_sfvs9xaj2olhh3a_content_area_image_width','full-width'),(30472,574,'_group_sfvs9xaj2olhh3a_content_area_image_width','group_sfvs9xaj2olhh3a_field_5923225381234'),(30473,574,'group_sfvs9xaj2olhh3a_content_area_enable_padding','1'),(30474,574,'_group_sfvs9xaj2olhh3a_content_area_enable_padding','group_sfvs9xaj2olhh3a_field_5923225383901'),(30475,574,'group_sfvs9xaj2olhh3a_content_area_padding_top','0'),(30476,574,'_group_sfvs9xaj2olhh3a_content_area_padding_top','group_sfvs9xaj2olhh3a_field_5923225383902'),(30477,574,'group_sfvs9xaj2olhh3a_content_area_padding_bottom','0'),(30478,574,'_group_sfvs9xaj2olhh3a_content_area_padding_bottom','group_sfvs9xaj2olhh3a_field_5923225383903'),(30479,574,'group_sfvs9xaj2olhh3a_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30480,574,'_group_sfvs9xaj2olhh3a_content_area_background','group_sfvs9xaj2olhh3a_field_5923225383818'),(30481,574,'group_sfvs9xaj2olhh3a_content_area_animations_enabled','0'),(30482,574,'_group_sfvs9xaj2olhh3a_content_area_animations_enabled','field_5b7ece2e8e4e9'),(30483,574,'group_sfvs9xaj2olhh3a_content_area_animations',''),(30484,574,'_group_sfvs9xaj2olhh3a_content_area_animations','group_sfvs9xaj2olhh3a_field_5b7ece258e4e8'),(30485,574,'group_xd5cu11k7q2944x_content_area_columns','two-column'),(30486,574,'_group_xd5cu11k7q2944x_content_area_columns','group_xd5cu11k7q2944x_field_5923225383814'),(30487,574,'group_xd5cu11k7q2944x_content_area_width','medium'),(30488,574,'_group_xd5cu11k7q2944x_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(30489,574,'group_xd5cu11k7q2944x_content_area_content_lead','<h5>We provide all of the following services:</h5>'),(30490,574,'_group_xd5cu11k7q2944x_content_area_content_lead','group_xd5cu11k7q2944x_field_0079736876206'),(30491,574,'group_xd5cu11k7q2944x_content_area_content','<ul>\r\n 	<li>Residential and Commercial New Construction</li>\r\n 	<li>Service and Repair of All Makes and Models</li>\r\n 	<li>Remodeling Projects (Include Free Estimates)</li>\r\n 	<li>Sewer Drain Cleaning and Repair</li>\r\n 	<li>Residential and Commerical Excavation</li>\r\n</ul>'),(30492,574,'_group_xd5cu11k7q2944x_content_area_content','group_xd5cu11k7q2944x_field_5923228483815'),(30493,574,'group_xd5cu11k7q2944x_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30494,574,'_group_xd5cu11k7q2944x_content_area_button','group_xd5cu11k7q2944x_field_5923225383819'),(30495,574,'group_xd5cu11k7q2944x_content_area_css_classes',''),(30496,574,'_group_xd5cu11k7q2944x_content_area_css_classes','group_xd5cu11k7q2944x_field_4554768684187'),(30497,574,'group_xd5cu11k7q2944x_content_area_align','left'),(30498,574,'_group_xd5cu11k7q2944x_content_area_align','group_xd5cu11k7q2944x_field_5923225383899'),(30499,574,'group_xd5cu11k7q2944x_content_area_enable_padding','1'),(30500,574,'_group_xd5cu11k7q2944x_content_area_enable_padding','group_xd5cu11k7q2944x_field_5923225383901'),(30501,574,'group_xd5cu11k7q2944x_content_area_padding_top','20'),(30502,574,'_group_xd5cu11k7q2944x_content_area_padding_top','group_xd5cu11k7q2944x_field_5923225383902'),(30503,574,'group_xd5cu11k7q2944x_content_area_padding_bottom','20'),(30504,574,'_group_xd5cu11k7q2944x_content_area_padding_bottom','group_xd5cu11k7q2944x_field_5923225383903'),(30505,574,'group_xd5cu11k7q2944x_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30506,574,'_group_xd5cu11k7q2944x_content_area_background','group_xd5cu11k7q2944x_field_5923225383818'),(30507,574,'group_xd5cu11k7q2944x_content_area_animations_enabled','0'),(30508,574,'_group_xd5cu11k7q2944x_content_area_animations_enabled','field_5b7ece2e8e4e9'),(30509,574,'group_xd5cu11k7q2944x_content_area_animations',''),(30510,574,'_group_xd5cu11k7q2944x_content_area_animations','group_xd5cu11k7q2944x_field_5b7ece258e4e8'),(30511,574,'group_ud1z6cp3we1stc6_ctas_ctas','489'),(30512,574,'_group_ud1z6cp3we1stc6_ctas_ctas','group_ud1z6cp3we1stc6_field_5620077701227'),(30513,574,'group_ud1z6cp3we1stc6_ctas_css_classes','cta'),(30514,574,'_group_ud1z6cp3we1stc6_ctas_css_classes','group_ud1z6cp3we1stc6_field_8795774705172'),(30515,574,'group_ud1z6cp3we1stc6_ctas_animations_enabled','0'),(30516,574,'_group_ud1z6cp3we1stc6_ctas_animations_enabled','field_5b7ece2e8e4e9'),(30517,574,'group_ud1z6cp3we1stc6_ctas_animations',''),(30518,574,'_group_ud1z6cp3we1stc6_ctas_animations','group_ud1z6cp3we1stc6_field_5b7ece258e4e8'),(30520,574,'_dp_original','572'),(30521,574,'_edit_last','10'),(30522,574,'_edit_lock','1580915770:10'),(30523,576,'_yoast_wpseo_content_score','30'),(30524,576,'subheading',''),(30525,576,'_subheading','field_5976417756400'),(30526,576,'group_bll1v31dtnw9rl6_content_area_columns','single'),(30527,576,'_group_bll1v31dtnw9rl6_content_area_columns','group_bll1v31dtnw9rl6_field_5923225383814'),(30528,576,'group_bll1v31dtnw9rl6_content_area_width','medium'),(30529,576,'_group_bll1v31dtnw9rl6_content_area_width','group_bll1v31dtnw9rl6_field_5923225383891'),(30530,576,'group_bll1v31dtnw9rl6_content_area_content_lead',''),(30531,576,'_group_bll1v31dtnw9rl6_content_area_content_lead','group_bll1v31dtnw9rl6_field_0079736876206'),(30532,576,'group_bll1v31dtnw9rl6_content_area_content','<h2>Your Local Professionals for Excavation Services</h2>\r\nMann Plumbing &amp; Heating, LLC. offers customers near Shippensburg, Gettysburg, Waynesboro, Chambersburg, and beyond a wide array of solutions for their excavating needs. Home and business owners, buyers, and developers in Franklin County can get the drilling, separation, and inspection services they require from our team of seasoned experts in property excavation. Our services cover all sectors that customers need, spanning from commercial and residential to industrial and municipal. We’re ready to put our site work, design, and consultation services to work for you to find an efficient plan for your project. You can trust our 30 years of experience in plumbing, HVAC, and excavation.'),(30533,576,'_group_bll1v31dtnw9rl6_content_area_content','group_bll1v31dtnw9rl6_field_5923228483815'),(30534,576,'group_bll1v31dtnw9rl6_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(30535,576,'_group_bll1v31dtnw9rl6_content_area_button','group_bll1v31dtnw9rl6_field_5923225383819'),(30536,576,'group_bll1v31dtnw9rl6_content_area_css_classes',''),(30537,576,'_group_bll1v31dtnw9rl6_content_area_css_classes','group_bll1v31dtnw9rl6_field_4554768684187'),(30538,576,'group_bll1v31dtnw9rl6_content_area_align','centered'),(30539,576,'_group_bll1v31dtnw9rl6_content_area_align','group_bll1v31dtnw9rl6_field_5923225383899'),(30540,576,'group_bll1v31dtnw9rl6_content_area_enable_padding','1'),(30541,576,'_group_bll1v31dtnw9rl6_content_area_enable_padding','group_bll1v31dtnw9rl6_field_5923225383901'),(30542,576,'group_bll1v31dtnw9rl6_content_area_padding_top','20'),(30543,576,'_group_bll1v31dtnw9rl6_content_area_padding_top','group_bll1v31dtnw9rl6_field_5923225383902'),(30544,576,'group_bll1v31dtnw9rl6_content_area_padding_bottom','20'),(30545,576,'_group_bll1v31dtnw9rl6_content_area_padding_bottom','group_bll1v31dtnw9rl6_field_5923225383903'),(30546,576,'group_bll1v31dtnw9rl6_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30547,576,'_group_bll1v31dtnw9rl6_content_area_background','group_bll1v31dtnw9rl6_field_5923225383818'),(30548,576,'group_bll1v31dtnw9rl6_content_area_animations_enabled','0'),(30549,576,'_group_bll1v31dtnw9rl6_content_area_animations_enabled','field_5b7ece2e8e4e9'),(30550,576,'group_bll1v31dtnw9rl6_content_area_animations',''),(30551,576,'_group_bll1v31dtnw9rl6_content_area_animations','group_bll1v31dtnw9rl6_field_5b7ece258e4e8'),(30552,576,'group_5zwsdbbzhgq9b3k_content_area_columns','image-left'),(30553,576,'_group_5zwsdbbzhgq9b3k_content_area_columns','group_5zwsdbbzhgq9b3k_field_5923225383814'),(30554,576,'group_5zwsdbbzhgq9b3k_content_area_content_lead',''),(30555,576,'_group_5zwsdbbzhgq9b3k_content_area_content_lead','group_5zwsdbbzhgq9b3k_field_0079736876206'),(30556,576,'group_5zwsdbbzhgq9b3k_content_area_content','<h3>Services for Residential &amp; Commercial Customers</h3>\r\nIf you have a project that involves new construction, work on an existing structure, or inspection of a home or building’s sewer and drain lines, Mann Plumbing &amp; Heating can help. Our team of talented professionals offers a variety of excavation services to provide solutions for residential and commercial projects.'),(30557,576,'_group_5zwsdbbzhgq9b3k_content_area_content','group_5zwsdbbzhgq9b3k_field_5923228483815'),(30558,576,'group_5zwsdbbzhgq9b3k_content_area_image','741'),(30559,576,'_group_5zwsdbbzhgq9b3k_content_area_image','group_5zwsdbbzhgq9b3k_field_5923229983816'),(30560,576,'group_5zwsdbbzhgq9b3k_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30561,576,'_group_5zwsdbbzhgq9b3k_content_area_button','group_5zwsdbbzhgq9b3k_field_5923225383819'),(30562,576,'group_5zwsdbbzhgq9b3k_content_area_css_classes',''),(30563,576,'_group_5zwsdbbzhgq9b3k_content_area_css_classes','group_5zwsdbbzhgq9b3k_field_4554768684187'),(30564,576,'group_5zwsdbbzhgq9b3k_content_area_align','left'),(30565,576,'_group_5zwsdbbzhgq9b3k_content_area_align','group_5zwsdbbzhgq9b3k_field_5923225383899'),(30566,576,'group_5zwsdbbzhgq9b3k_content_area_image_sizing','center'),(30567,576,'_group_5zwsdbbzhgq9b3k_content_area_image_sizing','group_5zwsdbbzhgq9b3k_field_5923225386557'),(30568,576,'group_5zwsdbbzhgq9b3k_content_area_image_width','full-width'),(30569,576,'_group_5zwsdbbzhgq9b3k_content_area_image_width','group_5zwsdbbzhgq9b3k_field_5923225381234'),(30570,576,'group_5zwsdbbzhgq9b3k_content_area_enable_padding','1'),(30571,576,'_group_5zwsdbbzhgq9b3k_content_area_enable_padding','group_5zwsdbbzhgq9b3k_field_5923225383901'),(30572,576,'group_5zwsdbbzhgq9b3k_content_area_padding_top','0'),(30573,576,'_group_5zwsdbbzhgq9b3k_content_area_padding_top','group_5zwsdbbzhgq9b3k_field_5923225383902'),(30574,576,'group_5zwsdbbzhgq9b3k_content_area_padding_bottom','0'),(30575,576,'_group_5zwsdbbzhgq9b3k_content_area_padding_bottom','group_5zwsdbbzhgq9b3k_field_5923225383903'),(30576,576,'group_5zwsdbbzhgq9b3k_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30577,576,'_group_5zwsdbbzhgq9b3k_content_area_background','group_5zwsdbbzhgq9b3k_field_5923225383818'),(30578,576,'group_5zwsdbbzhgq9b3k_content_area_animations_enabled','0'),(30579,576,'_group_5zwsdbbzhgq9b3k_content_area_animations_enabled','field_5b7ece2e8e4e9'),(30580,576,'group_5zwsdbbzhgq9b3k_content_area_animations',''),(30581,576,'_group_5zwsdbbzhgq9b3k_content_area_animations','group_5zwsdbbzhgq9b3k_field_5b7ece258e4e8'),(30582,576,'group_6tb9wboffn47hyy_content_area_columns','two-column'),(30583,576,'_group_6tb9wboffn47hyy_content_area_columns','group_6tb9wboffn47hyy_field_5923225383814'),(30584,576,'group_6tb9wboffn47hyy_content_area_width','medium'),(30585,576,'_group_6tb9wboffn47hyy_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(30586,576,'group_6tb9wboffn47hyy_content_area_content_lead',''),(30587,576,'_group_6tb9wboffn47hyy_content_area_content_lead','group_6tb9wboffn47hyy_field_0079736876206'),(30588,576,'group_6tb9wboffn47hyy_content_area_content','<h5>Horizontal Directional Drilling</h5>\r\nThis form of drilling allows contractors to install power lines, sewer and water mains, and pipelines without digging trenches into the property. We take care to keep all drilling as efficient as possible with minimal disturbance to any surface structures or utility lines and pipes already in place.\r\n<h5>Sewer Scopes</h5>\r\nA sewer scope is a video inspection of your sewer line. It leads from the house or building to the connection to the septic tank or HOA tap. The information that sewer scopes collect is highly beneficial to home and property buyers, which is why many inspections include a sewer scope as part of their property assessment.'),(30589,576,'_group_6tb9wboffn47hyy_content_area_content','group_6tb9wboffn47hyy_field_5923228483815'),(30590,576,'group_6tb9wboffn47hyy_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30591,576,'_group_6tb9wboffn47hyy_content_area_button','group_6tb9wboffn47hyy_field_5923225383819'),(30592,576,'group_6tb9wboffn47hyy_content_area_css_classes','padding-fix'),(30593,576,'_group_6tb9wboffn47hyy_content_area_css_classes','group_6tb9wboffn47hyy_field_4554768684187'),(30594,576,'group_6tb9wboffn47hyy_content_area_align','left'),(30595,576,'_group_6tb9wboffn47hyy_content_area_align','group_6tb9wboffn47hyy_field_5923225383899'),(30596,576,'group_6tb9wboffn47hyy_content_area_enable_padding','1'),(30597,576,'_group_6tb9wboffn47hyy_content_area_enable_padding','group_6tb9wboffn47hyy_field_5923225383901'),(30598,576,'group_6tb9wboffn47hyy_content_area_padding_top','20'),(30599,576,'_group_6tb9wboffn47hyy_content_area_padding_top','group_6tb9wboffn47hyy_field_5923225383902'),(30600,576,'group_6tb9wboffn47hyy_content_area_padding_bottom','20'),(30601,576,'_group_6tb9wboffn47hyy_content_area_padding_bottom','group_6tb9wboffn47hyy_field_5923225383903'),(30602,576,'group_6tb9wboffn47hyy_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30603,576,'_group_6tb9wboffn47hyy_content_area_background','group_6tb9wboffn47hyy_field_5923225383818'),(30604,576,'group_6tb9wboffn47hyy_content_area_animations_enabled','0'),(30605,576,'_group_6tb9wboffn47hyy_content_area_animations_enabled','field_5b7ece2e8e4e9'),(30606,576,'group_6tb9wboffn47hyy_content_area_animations',''),(30607,576,'_group_6tb9wboffn47hyy_content_area_animations','group_6tb9wboffn47hyy_field_5b7ece258e4e8'),(30608,576,'group_57f36i17ugcs5l4_ctas_ctas','489'),(30609,576,'_group_57f36i17ugcs5l4_ctas_ctas','group_57f36i17ugcs5l4_field_5620077701227'),(30610,576,'group_57f36i17ugcs5l4_ctas_css_classes','cta'),(30611,576,'_group_57f36i17ugcs5l4_ctas_css_classes','group_57f36i17ugcs5l4_field_8795774705172'),(30612,576,'group_57f36i17ugcs5l4_ctas_animations_enabled','0'),(30613,576,'_group_57f36i17ugcs5l4_ctas_animations_enabled','field_5b7ece2e8e4e9'),(30614,576,'group_57f36i17ugcs5l4_ctas_animations',''),(30615,576,'_group_57f36i17ugcs5l4_ctas_animations','group_57f36i17ugcs5l4_field_5b7ece258e4e8'),(30617,576,'_dp_original','574'),(30618,576,'_edit_last','10'),(30619,576,'_edit_lock','1580915807:10'),(30620,578,'_edit_last','7'),(30621,578,'_yoast_wpseo_content_score','30'),(30622,578,'subheading',''),(30623,578,'_subheading','field_5976417756400'),(30624,579,'subheading',''),(30625,579,'_subheading','field_5976417756400'),(30626,578,'_edit_lock','1577203892:7'),(30627,580,'_edit_last','10'),(30628,580,'subheading',''),(30629,580,'_subheading','field_5976417756400'),(30632,580,'_edit_lock','1580915965:10'),(30633,582,'_edit_last','16'),(30634,582,'subheading',''),(30635,582,'_subheading','field_5976417756400'),(30638,582,'_edit_lock','1608653991:16'),(30639,585,'subheading',''),(30640,585,'_subheading','field_5976417756400'),(30641,585,'_dp_original','582'),(30642,585,'_edit_last','7'),(30643,585,'_edit_lock','1635514100:19'),(30644,588,'subheading',''),(30645,588,'_subheading','field_5976417756400'),(30646,588,'_dp_original','582'),(30647,588,'_edit_last','15'),(30648,588,'_edit_lock','1608181937:15'),(30649,590,'_yoast_wpseo_content_score','30'),(30650,590,'subheading',''),(30651,590,'_subheading','field_5976417756400'),(30652,590,'group_r9k1mdmqbq8p3mx_content_area_columns','single'),(30653,590,'_group_r9k1mdmqbq8p3mx_content_area_columns','group_r9k1mdmqbq8p3mx_field_5923225383814'),(30654,590,'group_r9k1mdmqbq8p3mx_content_area_width','medium'),(30655,590,'_group_r9k1mdmqbq8p3mx_content_area_width','group_r9k1mdmqbq8p3mx_field_5923225383891'),(30656,590,'group_r9k1mdmqbq8p3mx_content_area_content_lead',''),(30657,590,'_group_r9k1mdmqbq8p3mx_content_area_content_lead','group_r9k1mdmqbq8p3mx_field_0079736876206'),(30658,590,'group_r9k1mdmqbq8p3mx_content_area_content','<h2>About Mann Plumbing &amp; Heating, LLC.</h2>\r\nWhat qualities make a plumbing and HVAC company worthwhile? At Mann Plumbing &amp; Heating, LLC., we believe it comes down to providing solutions that keep you worry-free consistently, no matter what situation we address. Our technicians get the job done right for your peace of mind. Whether you require a new system installation or expert repairs and maintenance, you can count on us to provide service with lasting value at a fair price. Our priority for every job is to offer honest answers and solutions to your plumbing, heating, and cooling issues. We want your systems to be dependable year-round, which is why we perform all repairs, maintenance, and installations to ensure they run efficiently and save you on energy costs. Our technicians will evaluate your plumbing or HVAC equipment and give you a straightforward recommendation of the best action to take. Whether repairs will rectify your system’s issues, or you need to replace it with a newer model, we make our recommendations based on what\'s best for your home or business.'),(30659,590,'_group_r9k1mdmqbq8p3mx_content_area_content','group_r9k1mdmqbq8p3mx_field_5923228483815'),(30660,590,'group_r9k1mdmqbq8p3mx_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(30661,590,'_group_r9k1mdmqbq8p3mx_content_area_button','group_r9k1mdmqbq8p3mx_field_5923225383819'),(30662,590,'group_r9k1mdmqbq8p3mx_content_area_css_classes',''),(30663,590,'_group_r9k1mdmqbq8p3mx_content_area_css_classes','group_r9k1mdmqbq8p3mx_field_4554768684187'),(30664,590,'group_r9k1mdmqbq8p3mx_content_area_align','centered'),(30665,590,'_group_r9k1mdmqbq8p3mx_content_area_align','group_r9k1mdmqbq8p3mx_field_5923225383899'),(30666,590,'group_r9k1mdmqbq8p3mx_content_area_enable_padding','1'),(30667,590,'_group_r9k1mdmqbq8p3mx_content_area_enable_padding','group_r9k1mdmqbq8p3mx_field_5923225383901'),(30668,590,'group_r9k1mdmqbq8p3mx_content_area_padding_top','20'),(30669,590,'_group_r9k1mdmqbq8p3mx_content_area_padding_top','group_r9k1mdmqbq8p3mx_field_5923225383902'),(30670,590,'group_r9k1mdmqbq8p3mx_content_area_padding_bottom','20'),(30671,590,'_group_r9k1mdmqbq8p3mx_content_area_padding_bottom','group_r9k1mdmqbq8p3mx_field_5923225383903'),(30672,590,'group_r9k1mdmqbq8p3mx_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30673,590,'_group_r9k1mdmqbq8p3mx_content_area_background','group_r9k1mdmqbq8p3mx_field_5923225383818'),(30674,590,'group_r9k1mdmqbq8p3mx_content_area_animations_enabled','1'),(30675,590,'_group_r9k1mdmqbq8p3mx_content_area_animations_enabled','field_5b7ece2e8e4e9'),(30676,590,'group_r9k1mdmqbq8p3mx_content_area_animations',''),(30677,590,'_group_r9k1mdmqbq8p3mx_content_area_animations','group_r9k1mdmqbq8p3mx_field_5b7ece258e4e8'),(30678,590,'group_o94sm7iw1sypujx_content_area_columns','image-left'),(30679,590,'_group_o94sm7iw1sypujx_content_area_columns','group_o94sm7iw1sypujx_field_5923225383814'),(30680,590,'group_o94sm7iw1sypujx_content_area_content_lead',''),(30681,590,'_group_o94sm7iw1sypujx_content_area_content_lead','group_o94sm7iw1sypujx_field_0079736876206'),(30682,590,'group_o94sm7iw1sypujx_content_area_content','<h3>Putting Quality in Every Service We Provide</h3>\r\nOur team of talented professionals puts in the extra attention to detail your project deserves. We always strive to achieve exceptional results on jobs large and small. A point of pride for our company is being recognized as a Trane<sup>®</sup> Comfort Specialist™ dealer. Only a select group that meets the stringent standards of Trane<sup>®</sup> earns this honor for technical expertise and customer service. For all projects, we provide quality support and service for your home or business in South-Central Pennsylvania. We have many specialties, including the following:\r\n<ul>\r\n 	<li>Plumbing Installation and Repairs</li>\r\n 	<li>Heating and Air Conditioning Installation and Repairs</li>\r\n 	<li>Service for All Makes and Models of Boilers, Furnaces, and Air Conditioners</li>\r\n 	<li>Preventative Maintenance Agreements</li>\r\n 	<li>Complete Duct System Cleaning, Repair, and Design</li>\r\n 	<li>Electronic Air Cleaners</li>\r\n 	<li>Excavation Services</li>\r\n</ul>'),(30683,590,'_group_o94sm7iw1sypujx_content_area_content','group_o94sm7iw1sypujx_field_5923228483815'),(30684,590,'group_o94sm7iw1sypujx_content_area_image','748'),(30685,590,'_group_o94sm7iw1sypujx_content_area_image','group_o94sm7iw1sypujx_field_5923229983816'),(30686,590,'group_o94sm7iw1sypujx_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30687,590,'_group_o94sm7iw1sypujx_content_area_button','group_o94sm7iw1sypujx_field_5923225383819'),(30688,590,'group_o94sm7iw1sypujx_content_area_css_classes',''),(30689,590,'_group_o94sm7iw1sypujx_content_area_css_classes','group_o94sm7iw1sypujx_field_4554768684187'),(30690,590,'group_o94sm7iw1sypujx_content_area_align','left'),(30691,590,'_group_o94sm7iw1sypujx_content_area_align','group_o94sm7iw1sypujx_field_5923225383899'),(30692,590,'group_o94sm7iw1sypujx_content_area_image_sizing','center'),(30693,590,'_group_o94sm7iw1sypujx_content_area_image_sizing','group_o94sm7iw1sypujx_field_5923225386557'),(30694,590,'group_o94sm7iw1sypujx_content_area_image_width','full-width'),(30695,590,'_group_o94sm7iw1sypujx_content_area_image_width','group_o94sm7iw1sypujx_field_5923225381234'),(30696,590,'group_o94sm7iw1sypujx_content_area_enable_padding','1'),(30697,590,'_group_o94sm7iw1sypujx_content_area_enable_padding','group_o94sm7iw1sypujx_field_5923225383901'),(30698,590,'group_o94sm7iw1sypujx_content_area_padding_top','0'),(30699,590,'_group_o94sm7iw1sypujx_content_area_padding_top','group_o94sm7iw1sypujx_field_5923225383902'),(30700,590,'group_o94sm7iw1sypujx_content_area_padding_bottom','0'),(30701,590,'_group_o94sm7iw1sypujx_content_area_padding_bottom','group_o94sm7iw1sypujx_field_5923225383903'),(30702,590,'group_o94sm7iw1sypujx_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30703,590,'_group_o94sm7iw1sypujx_content_area_background','group_o94sm7iw1sypujx_field_5923225383818'),(30704,590,'group_o94sm7iw1sypujx_content_area_animations_enabled','1'),(30705,590,'_group_o94sm7iw1sypujx_content_area_animations_enabled','field_5b7ece2e8e4e9'),(30706,590,'group_o94sm7iw1sypujx_content_area_animations',''),(30707,590,'_group_o94sm7iw1sypujx_content_area_animations','group_o94sm7iw1sypujx_field_5b7ece258e4e8'),(30708,590,'group_4trfhcisy1rje8c_content_area_columns','single'),(30709,590,'_group_4trfhcisy1rje8c_content_area_columns','group_4trfhcisy1rje8c_field_5923225383814'),(30710,590,'group_4trfhcisy1rje8c_content_area_width','medium'),(30711,590,'_group_4trfhcisy1rje8c_content_area_width','group_4trfhcisy1rje8c_field_5923225383891'),(30712,590,'group_4trfhcisy1rje8c_content_area_content_lead',''),(30713,590,'_group_4trfhcisy1rje8c_content_area_content_lead','group_4trfhcisy1rje8c_field_0079736876206'),(30714,590,'group_4trfhcisy1rje8c_content_area_content','<h3>Your Satisfaction is Our Priority</h3>\r\nWe make sure that whenever you call Mann Plumbing &amp; Heating, LLC. for a repair, installation, or maintenance, you can expect reliable, high-quality service. Our technicians work hard to earn your trust and build a long-lasting relationship as we perform service for long-lasting system efficiency. You put your faith in us for your home or business\'s plumbing and HVAC systems, and we believe in living up to that faith. Whenever we visit your residence or building, we’re not done with the job until we’ve achieved your complete satisfaction. The next time you have issues with your plumbing, heating, or cooling system, <a href=\"/contact-us/\">give us a call</a> to schedule quick and effective service with long-term results. Let us show you what you’ve been missing by bringing in Mann Plumbing &amp; Heating, LLC. for your residential or commercial projects.'),(30715,590,'_group_4trfhcisy1rje8c_content_area_content','group_4trfhcisy1rje8c_field_5923228483815'),(30716,590,'group_4trfhcisy1rje8c_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30717,590,'_group_4trfhcisy1rje8c_content_area_button','group_4trfhcisy1rje8c_field_5923225383819'),(30718,590,'group_4trfhcisy1rje8c_content_area_css_classes',''),(30719,590,'_group_4trfhcisy1rje8c_content_area_css_classes','group_4trfhcisy1rje8c_field_4554768684187'),(30720,590,'group_4trfhcisy1rje8c_content_area_align','centered'),(30721,590,'_group_4trfhcisy1rje8c_content_area_align','group_4trfhcisy1rje8c_field_5923225383899'),(30722,590,'group_4trfhcisy1rje8c_content_area_enable_padding','1'),(30723,590,'_group_4trfhcisy1rje8c_content_area_enable_padding','group_4trfhcisy1rje8c_field_5923225383901'),(30724,590,'group_4trfhcisy1rje8c_content_area_padding_top','20'),(30725,590,'_group_4trfhcisy1rje8c_content_area_padding_top','group_4trfhcisy1rje8c_field_5923225383902'),(30726,590,'group_4trfhcisy1rje8c_content_area_padding_bottom','20'),(30727,590,'_group_4trfhcisy1rje8c_content_area_padding_bottom','group_4trfhcisy1rje8c_field_5923225383903'),(30728,590,'group_4trfhcisy1rje8c_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30729,590,'_group_4trfhcisy1rje8c_content_area_background','group_4trfhcisy1rje8c_field_5923225383818'),(30730,590,'group_4trfhcisy1rje8c_content_area_animations_enabled','1'),(30731,590,'_group_4trfhcisy1rje8c_content_area_animations_enabled','field_5b7ece2e8e4e9'),(30732,590,'group_4trfhcisy1rje8c_content_area_animations',''),(30733,590,'_group_4trfhcisy1rje8c_content_area_animations','group_4trfhcisy1rje8c_field_5b7ece258e4e8'),(30734,590,'group_jgklj4r4l3wngs8_ctas_ctas','489'),(30735,590,'_group_jgklj4r4l3wngs8_ctas_ctas','group_jgklj4r4l3wngs8_field_5620077701227'),(30736,590,'group_jgklj4r4l3wngs8_ctas_css_classes','cta'),(30737,590,'_group_jgklj4r4l3wngs8_ctas_css_classes','group_jgklj4r4l3wngs8_field_8795774705172'),(30738,590,'group_jgklj4r4l3wngs8_ctas_animations_enabled','0'),(30739,590,'_group_jgklj4r4l3wngs8_ctas_animations_enabled','field_5b7ece2e8e4e9'),(30740,590,'group_jgklj4r4l3wngs8_ctas_animations',''),(30741,590,'_group_jgklj4r4l3wngs8_ctas_animations','group_jgklj4r4l3wngs8_field_5b7ece258e4e8'),(30742,590,'_dp_original','500'),(30743,590,'_edit_last','10'),(30744,590,'_edit_lock','1580915499:10'),(30745,592,'_menu_item_type','post_type'),(30746,592,'_menu_item_menu_item_parent','0'),(30747,592,'_menu_item_object_id','590'),(30748,592,'_menu_item_object','page'),(30749,592,'_menu_item_target',''),(30750,592,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30751,592,'_menu_item_xfn',''),(30752,592,'_menu_item_url',''),(30754,593,'_menu_item_type','post_type'),(30755,593,'_menu_item_menu_item_parent','592'),(30756,593,'_menu_item_object_id','588'),(30757,593,'_menu_item_object','page'),(30758,593,'_menu_item_target',''),(30759,593,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30760,593,'_menu_item_xfn',''),(30761,593,'_menu_item_url',''),(30763,594,'_menu_item_type','post_type'),(30764,594,'_menu_item_menu_item_parent','592'),(30765,594,'_menu_item_object_id','585'),(30766,594,'_menu_item_object','page'),(30767,594,'_menu_item_target',''),(30768,594,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30769,594,'_menu_item_xfn',''),(30770,594,'_menu_item_url',''),(30772,595,'_menu_item_type','post_type'),(30773,595,'_menu_item_menu_item_parent','592'),(30774,595,'_menu_item_object_id','582'),(30775,595,'_menu_item_object','page'),(30776,595,'_menu_item_target',''),(30777,595,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30778,595,'_menu_item_xfn',''),(30779,595,'_menu_item_url',''),(30781,596,'_menu_item_type','post_type'),(30782,596,'_menu_item_menu_item_parent','0'),(30783,596,'_menu_item_object_id','580'),(30784,596,'_menu_item_object','page'),(30785,596,'_menu_item_target',''),(30786,596,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30787,596,'_menu_item_xfn',''),(30788,596,'_menu_item_url',''),(30790,597,'_menu_item_type','post_type'),(30791,597,'_menu_item_menu_item_parent','0'),(30792,597,'_menu_item_object_id','578'),(30793,597,'_menu_item_object','page'),(30794,597,'_menu_item_target',''),(30795,597,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30796,597,'_menu_item_xfn',''),(30797,597,'_menu_item_url',''),(30799,598,'_menu_item_type','post_type'),(30800,598,'_menu_item_menu_item_parent','0'),(30801,598,'_menu_item_object_id','569'),(30802,598,'_menu_item_object','page'),(30803,598,'_menu_item_target',''),(30804,598,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30805,598,'_menu_item_xfn',''),(30806,598,'_menu_item_url',''),(30808,599,'_menu_item_type','post_type'),(30809,599,'_menu_item_menu_item_parent','598'),(30810,599,'_menu_item_object_id','576'),(30811,599,'_menu_item_object','page'),(30812,599,'_menu_item_target',''),(30813,599,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30814,599,'_menu_item_xfn',''),(30815,599,'_menu_item_url',''),(30817,600,'_menu_item_type','post_type'),(30818,600,'_menu_item_menu_item_parent','598'),(30819,600,'_menu_item_object_id','574'),(30820,600,'_menu_item_object','page'),(30821,600,'_menu_item_target',''),(30822,600,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30823,600,'_menu_item_xfn',''),(30824,600,'_menu_item_url',''),(30826,601,'_menu_item_type','post_type'),(30827,601,'_menu_item_menu_item_parent','598'),(30828,601,'_menu_item_object_id','572'),(30829,601,'_menu_item_object','page'),(30830,601,'_menu_item_target',''),(30831,601,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30832,601,'_menu_item_xfn',''),(30833,601,'_menu_item_url',''),(30835,598,'button_style','none'),(30836,598,'_button_style','field_59d2a067badfc'),(30837,601,'button_style','none'),(30838,601,'_button_style','field_59d2a067badfc'),(30839,600,'button_style','none'),(30840,600,'_button_style','field_59d2a067badfc'),(30841,599,'button_style','none'),(30842,599,'_button_style','field_59d2a067badfc'),(30843,597,'button_style','none'),(30844,597,'_button_style','field_59d2a067badfc'),(30845,596,'button_style','none'),(30846,596,'_button_style','field_59d2a067badfc'),(30847,592,'button_style','none'),(30848,592,'_button_style','field_59d2a067badfc'),(30849,594,'button_style','none'),(30850,594,'_button_style','field_59d2a067badfc'),(30851,595,'button_style','none'),(30852,595,'_button_style','field_59d2a067badfc'),(30853,593,'button_style','none'),(30854,593,'_button_style','field_59d2a067badfc'),(30855,602,'_menu_item_type','post_type'),(30856,602,'_menu_item_menu_item_parent','0'),(30857,602,'_menu_item_object_id','590'),(30858,602,'_menu_item_object','page'),(30859,602,'_menu_item_target',''),(30860,602,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30861,602,'_menu_item_xfn',''),(30862,602,'_menu_item_url',''),(30864,603,'_menu_item_type','post_type'),(30865,603,'_menu_item_menu_item_parent','0'),(30866,603,'_menu_item_object_id','580'),(30867,603,'_menu_item_object','page'),(30868,603,'_menu_item_target',''),(30869,603,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30870,603,'_menu_item_xfn',''),(30871,603,'_menu_item_url',''),(30873,604,'_menu_item_type','post_type'),(30874,604,'_menu_item_menu_item_parent','0'),(30875,604,'_menu_item_object_id','578'),(30876,604,'_menu_item_object','page'),(30877,604,'_menu_item_target',''),(30878,604,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30879,604,'_menu_item_xfn',''),(30880,604,'_menu_item_url',''),(30882,605,'_menu_item_type','post_type'),(30883,605,'_menu_item_menu_item_parent','0'),(30884,605,'_menu_item_object_id','569'),(30885,605,'_menu_item_object','page'),(30886,605,'_menu_item_target',''),(30887,605,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30888,605,'_menu_item_xfn',''),(30889,605,'_menu_item_url',''),(30891,569,'group_xlmnj6mgvckzsbl_ctas_ctas','489'),(30892,569,'_group_xlmnj6mgvckzsbl_ctas_ctas','group_xlmnj6mgvckzsbl_field_5620077701227'),(30893,569,'group_xlmnj6mgvckzsbl_ctas_css_classes','cta'),(30894,569,'_group_xlmnj6mgvckzsbl_ctas_css_classes','group_xlmnj6mgvckzsbl_field_8795774705172'),(30895,569,'group_xlmnj6mgvckzsbl_ctas_animations_enabled','0'),(30896,569,'_group_xlmnj6mgvckzsbl_ctas_animations_enabled','field_5b7ece2e8e4e9'),(30897,569,'group_xlmnj6mgvckzsbl_ctas_animations',''),(30898,569,'_group_xlmnj6mgvckzsbl_ctas_animations','group_xlmnj6mgvckzsbl_field_5b7ece258e4e8'),(30899,606,'subheading',''),(30900,606,'_subheading','field_5976417756400'),(30901,606,'group_ffgoalgidcgol8d_services_content','<h2>View Our Services</h2>'),(30902,606,'_group_ffgoalgidcgol8d_services_content','group_ffgoalgidcgol8d_field_35a935e59d870'),(30903,606,'group_ffgoalgidcgol8d_services_services','4'),(30904,606,'_group_ffgoalgidcgol8d_services_services','group_ffgoalgidcgol8d_field_35a935e59d871'),(30905,606,'group_ffgoalgidcgol8d_services_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30906,606,'_group_ffgoalgidcgol8d_services_button','group_ffgoalgidcgol8d_field_35a935e59da88'),(30907,606,'group_ffgoalgidcgol8d_services_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#ffffff\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:6:\"repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:4:\"auto\";}'),(30908,606,'_group_ffgoalgidcgol8d_services_background','group_ffgoalgidcgol8d_field_35a935e59da75'),(30909,606,'group_ffgoalgidcgol8d_services_services_0_image','555'),(30910,606,'_group_ffgoalgidcgol8d_services_services_0_image','field_35a935e59da73'),(30911,606,'group_ffgoalgidcgol8d_services_services_0_name','HVAC'),(30912,606,'_group_ffgoalgidcgol8d_services_services_0_name','field_35a935e59da72'),(30913,606,'group_ffgoalgidcgol8d_services_services_0_content',''),(30914,606,'_group_ffgoalgidcgol8d_services_services_0_content','field_35a935e59da74'),(30915,606,'group_ffgoalgidcgol8d_services_services_0_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30916,606,'_group_ffgoalgidcgol8d_services_services_0_button','field_35a935e59da76'),(30917,606,'group_ffgoalgidcgol8d_services_services_1_image','554'),(30918,606,'_group_ffgoalgidcgol8d_services_services_1_image','field_35a935e59da73'),(30919,606,'group_ffgoalgidcgol8d_services_services_1_name','Design / Build'),(30920,606,'_group_ffgoalgidcgol8d_services_services_1_name','field_35a935e59da72'),(30921,606,'group_ffgoalgidcgol8d_services_services_1_content',''),(30922,606,'_group_ffgoalgidcgol8d_services_services_1_content','field_35a935e59da74'),(30923,606,'group_ffgoalgidcgol8d_services_services_1_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30924,606,'_group_ffgoalgidcgol8d_services_services_1_button','field_35a935e59da76'),(30925,606,'group_ffgoalgidcgol8d_services_services_2_image','556'),(30926,606,'_group_ffgoalgidcgol8d_services_services_2_image','field_35a935e59da73'),(30927,606,'group_ffgoalgidcgol8d_services_services_2_name','Plumbing'),(30928,606,'_group_ffgoalgidcgol8d_services_services_2_name','field_35a935e59da72'),(30929,606,'group_ffgoalgidcgol8d_services_services_2_content',''),(30930,606,'_group_ffgoalgidcgol8d_services_services_2_content','field_35a935e59da74'),(30931,606,'group_ffgoalgidcgol8d_services_services_2_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30932,606,'_group_ffgoalgidcgol8d_services_services_2_button','field_35a935e59da76'),(30933,606,'group_ffgoalgidcgol8d_services_services_0_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30934,606,'_group_ffgoalgidcgol8d_services_services_0_background','field_35a935e59da75'),(30935,606,'group_ffgoalgidcgol8d_services_services_1_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30936,606,'_group_ffgoalgidcgol8d_services_services_1_background','field_35a935e59da75'),(30937,606,'group_ffgoalgidcgol8d_services_services_2_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30938,606,'_group_ffgoalgidcgol8d_services_services_2_background','field_35a935e59da75'),(30939,606,'group_ffgoalgidcgol8d_services_columns','single'),(30940,606,'_group_ffgoalgidcgol8d_services_columns','group_ffgoalgidcgol8d_field_1875124714003'),(30941,606,'group_ffgoalgidcgol8d_services_services_0_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:15:\"/services/hvac/\";s:6:\"target\";s:0:\"\";}'),(30942,606,'_group_ffgoalgidcgol8d_services_services_0_item_link','field_35a935e59da79'),(30943,606,'group_ffgoalgidcgol8d_services_services_1_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/services/design-build/\";s:6:\"target\";s:0:\"\";}'),(30944,606,'_group_ffgoalgidcgol8d_services_services_1_item_link','field_35a935e59da79'),(30945,606,'group_ffgoalgidcgol8d_services_services_2_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:19:\"/services/plumbing/\";s:6:\"target\";s:0:\"\";}'),(30946,606,'_group_ffgoalgidcgol8d_services_services_2_item_link','field_35a935e59da79'),(30947,606,'group_ffgoalgidcgol8d_services_enable_padding','0'),(30948,606,'_group_ffgoalgidcgol8d_services_enable_padding','group_ffgoalgidcgol8d_field_35a935e59da91'),(30949,606,'group_ffgoalgidcgol8d_services_padding_top','0'),(30950,606,'_group_ffgoalgidcgol8d_services_padding_top','group_ffgoalgidcgol8d_field_35a935e59da92'),(30951,606,'group_ffgoalgidcgol8d_services_padding_bottom','0'),(30952,606,'_group_ffgoalgidcgol8d_services_padding_bottom','group_ffgoalgidcgol8d_field_35a935e59da93'),(30953,606,'group_ffgoalgidcgol8d_services_css_classes',''),(30954,606,'_group_ffgoalgidcgol8d_services_css_classes','group_ffgoalgidcgol8d_field_8577178443184'),(30955,606,'group_ffgoalgidcgol8d_services_button_alignment',''),(30956,606,'_group_ffgoalgidcgol8d_services_button_alignment','group_ffgoalgidcgol8d_field_8591648772677'),(30957,606,'group_ffgoalgidcgol8d_services_animations_enabled','0'),(30958,606,'_group_ffgoalgidcgol8d_services_animations_enabled','field_5b7ece2e8e4e9'),(30959,606,'group_ffgoalgidcgol8d_services_animations',''),(30960,606,'_group_ffgoalgidcgol8d_services_animations','group_ffgoalgidcgol8d_field_5b7ece258e4e8'),(30961,606,'group_ffgoalgidcgol8d_services_services_3_image','557'),(30962,606,'_group_ffgoalgidcgol8d_services_services_3_image','field_35a935e59da73'),(30963,606,'group_ffgoalgidcgol8d_services_services_3_name','Excavation Services'),(30964,606,'_group_ffgoalgidcgol8d_services_services_3_name','field_35a935e59da72'),(30965,606,'group_ffgoalgidcgol8d_services_services_3_content',''),(30966,606,'_group_ffgoalgidcgol8d_services_services_3_content','field_35a935e59da74'),(30967,606,'group_ffgoalgidcgol8d_services_services_3_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(30968,606,'_group_ffgoalgidcgol8d_services_services_3_button','field_35a935e59da76'),(30969,606,'group_ffgoalgidcgol8d_services_services_3_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:30:\"/services/excavation-services/\";s:6:\"target\";s:0:\"\";}'),(30970,606,'_group_ffgoalgidcgol8d_services_services_3_item_link','field_35a935e59da79'),(30971,606,'group_ffgoalgidcgol8d_services_services_3_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(30972,606,'_group_ffgoalgidcgol8d_services_services_3_background','field_35a935e59da75'),(30973,606,'group_xlmnj6mgvckzsbl_ctas_ctas','489'),(30974,606,'_group_xlmnj6mgvckzsbl_ctas_ctas','group_xlmnj6mgvckzsbl_field_5620077701227'),(30975,606,'group_xlmnj6mgvckzsbl_ctas_css_classes','cta'),(30976,606,'_group_xlmnj6mgvckzsbl_ctas_css_classes','group_xlmnj6mgvckzsbl_field_8795774705172'),(30977,606,'group_xlmnj6mgvckzsbl_ctas_animations_enabled','0'),(30978,606,'_group_xlmnj6mgvckzsbl_ctas_animations_enabled','field_5b7ece2e8e4e9'),(30979,606,'group_xlmnj6mgvckzsbl_ctas_animations',''),(30980,606,'_group_xlmnj6mgvckzsbl_ctas_animations','group_xlmnj6mgvckzsbl_field_5b7ece258e4e8'),(30981,607,'_wp_attached_file','2019/12/mann-work-1.jpg'),(30982,607,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.165647684974652;s:5:\"bytes\";i:9201;s:11:\"size_before\";i:178119;s:10:\"size_after\";i:168918;s:4:\"time\";d:0.12;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.52;s:5:\"bytes\";i:730;s:11:\"size_before\";i:5832;s:10:\"size_after\";i:5102;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7699999999999996;s:5:\"bytes\";i:851;s:11:\"size_before\";i:12562;s:10:\"size_after\";i:11711;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8500000000000001;s:5:\"bytes\";i:1554;s:11:\"size_before\";i:40381;s:10:\"size_after\";i:38827;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8399999999999999;s:5:\"bytes\";i:1105;s:11:\"size_before\";i:22849;s:10:\"size_after\";i:21744;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1500000000000004;s:5:\"bytes\";i:1356;s:11:\"size_before\";i:32703;s:10:\"size_after\";i:31347;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6500000000000004;s:5:\"bytes\";i:3605;s:11:\"size_before\";i:63792;s:10:\"size_after\";i:60187;s:4:\"time\";d:0.029999999999999999;}}}'),(30983,607,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2019/12/mann-work-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mann-work-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:23:\"mann-work-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:23:\"mann-work-1-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:23:\"mann-work-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:23:\"mann-work-1-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:{}}}'),(30984,608,'_wp_attached_file','2019/12/mann-work-2.jpg'),(30985,608,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7184744101906988;s:5:\"bytes\";i:9390;s:11:\"size_before\";i:199005;s:10:\"size_after\";i:189615;s:4:\"time\";d:0.20999999999999999;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:11;s:5:\"bytes\";i:652;s:11:\"size_before\";i:5925;s:10:\"size_after\";i:5273;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.54;s:5:\"bytes\";i:760;s:11:\"size_before\";i:13716;s:10:\"size_after\";i:12956;s:4:\"time\";d:0.070000000000000007;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6899999999999999;s:5:\"bytes\";i:1229;s:11:\"size_before\";i:45772;s:10:\"size_after\";i:44543;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0899999999999999;s:5:\"bytes\";i:682;s:11:\"size_before\";i:22060;s:10:\"size_after\";i:21378;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9700000000000002;s:5:\"bytes\";i:1039;s:11:\"size_before\";i:34948;s:10:\"size_after\";i:33909;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5700000000000003;s:5:\"bytes\";i:5028;s:11:\"size_before\";i:76584;s:10:\"size_after\";i:71556;s:4:\"time\";d:0.040000000000000001;}}}'),(30986,608,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2019/12/mann-work-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mann-work-2-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:\"mann-work-2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:23:\"mann-work-2-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:23:\"mann-work-2-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:23:\"mann-work-2-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:{}}}'),(30987,609,'_wp_attached_file','2019/12/mann-work-3.jpg'),(30988,609,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7050456143230344;s:5:\"bytes\";i:10320;s:11:\"size_before\";i:219339;s:10:\"size_after\";i:209019;s:4:\"time\";d:0.13;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:11.69;s:5:\"bytes\";i:779;s:11:\"size_before\";i:6661;s:10:\"size_after\";i:5882;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3200000000000003;s:5:\"bytes\";i:967;s:11:\"size_before\";i:15292;s:10:\"size_after\";i:14325;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6600000000000001;s:5:\"bytes\";i:1854;s:11:\"size_before\";i:50624;s:10:\"size_after\";i:48770;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7199999999999998;s:5:\"bytes\";i:1201;s:11:\"size_before\";i:25469;s:10:\"size_after\";i:24268;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0700000000000003;s:5:\"bytes\";i:1571;s:11:\"size_before\";i:38606;s:10:\"size_after\";i:37035;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7699999999999996;s:5:\"bytes\";i:3948;s:11:\"size_before\";i:82687;s:10:\"size_after\";i:78739;s:4:\"time\";d:0.050000000000000003;}}}'),(30989,609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2019/12/mann-work-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mann-work-3-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:\"mann-work-3-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:23:\"mann-work-3-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:23:\"mann-work-3-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:23:\"mann-work-3-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:{}}}'),(30990,610,'_wp_attached_file','2019/12/mann-work-4.jpg'),(30991,610,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.5554996006530684;s:5:\"bytes\";i:7967;s:11:\"size_before\";i:311759;s:10:\"size_after\";i:303792;s:4:\"time\";d:0.42000000000000004;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:12.9;s:5:\"bytes\";i:643;s:11:\"size_before\";i:4984;s:10:\"size_after\";i:4341;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2599999999999998;s:5:\"bytes\";i:746;s:11:\"size_before\";i:11913;s:10:\"size_after\";i:11167;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8799999999999999;s:5:\"bytes\";i:952;s:11:\"size_before\";i:50571;s:10:\"size_after\";i:49619;s:4:\"time\";d:0.02;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:62657;s:10:\"size_after\";i:62657;s:4:\"time\";d:0.040000000000000001;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:49619;s:10:\"size_after\";i:49619;s:4:\"time\";d:0.070000000000000007;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4700000000000002;s:5:\"bytes\";i:829;s:11:\"size_before\";i:23922;s:10:\"size_after\";i:23093;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.52;s:5:\"bytes\";i:786;s:11:\"size_before\";i:22315;s:10:\"size_after\";i:21529;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5600000000000001;s:5:\"bytes\";i:711;s:11:\"size_before\";i:27755;s:10:\"size_after\";i:27044;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6900000000000004;s:5:\"bytes\";i:3300;s:11:\"size_before\";i:58023;s:10:\"size_after\";i:54723;s:4:\"time\";d:0.20000000000000001;}}}'),(30992,610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2019/12/mann-work-4.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mann-work-4-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:\"mann-work-4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"mann-work-4-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:23:\"mann-work-4-960x720.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:23:\"mann-work-4-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:23:\"mann-work-4-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:23:\"mann-work-4-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:23:\"mann-work-4-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:{}}}'),(30993,611,'_wp_attached_file','2019/12/mann-work-5.jpg'),(30994,611,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8842980304331522;s:5:\"bytes\";i:10294;s:11:\"size_before\";i:210757;s:10:\"size_after\";i:200463;s:4:\"time\";d:0.14000000000000001;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:11.76;s:5:\"bytes\";i:781;s:11:\"size_before\";i:6643;s:10:\"size_after\";i:5862;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8300000000000001;s:5:\"bytes\";i:1026;s:11:\"size_before\";i:15015;s:10:\"size_after\";i:13989;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8399999999999999;s:5:\"bytes\";i:1862;s:11:\"size_before\";i:48539;s:10:\"size_after\";i:46677;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6900000000000004;s:5:\"bytes\";i:1165;s:11:\"size_before\";i:24833;s:10:\"size_after\";i:23668;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0700000000000003;s:5:\"bytes\";i:1517;s:11:\"size_before\";i:37295;s:10:\"size_after\";i:35778;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0300000000000002;s:5:\"bytes\";i:3943;s:11:\"size_before\";i:78432;s:10:\"size_after\";i:74489;s:4:\"time\";d:0.040000000000000001;}}}'),(30995,611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2019/12/mann-work-5.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mann-work-5-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:\"mann-work-5-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:23:\"mann-work-5-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:23:\"mann-work-5-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:23:\"mann-work-5-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:{}}}'),(30996,612,'_wp_attached_file','2019/12/mann-work-6.jpg'),(30997,612,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.5199980453956852;s:5:\"bytes\";i:14407;s:11:\"size_before\";i:409290;s:10:\"size_after\";i:394883;s:4:\"time\";d:0.22000000000000003;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:10.9;s:5:\"bytes\";i:724;s:11:\"size_before\";i:6644;s:10:\"size_after\";i:5920;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3399999999999999;s:5:\"bytes\";i:1039;s:11:\"size_before\";i:16399;s:10:\"size_after\";i:15360;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0800000000000001;s:5:\"bytes\";i:2710;s:11:\"size_before\";i:87892;s:10:\"size_after\";i:85182;s:4:\"time\";d:0.029999999999999999;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:85182;s:10:\"size_after\";i:85182;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9500000000000002;s:5:\"bytes\";i:1887;s:11:\"size_before\";i:38121;s:10:\"size_after\";i:36234;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3399999999999999;s:5:\"bytes\";i:1904;s:11:\"size_before\";i:35650;s:10:\"size_after\";i:33746;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1699999999999999;s:5:\"bytes\";i:2070;s:11:\"size_before\";i:49661;s:10:\"size_after\";i:47591;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54;s:5:\"bytes\";i:4073;s:11:\"size_before\";i:89741;s:10:\"size_after\";i:85668;s:4:\"time\";d:0.050000000000000003;}}}'),(30998,612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2019/12/mann-work-6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mann-work-6-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:\"mann-work-6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"mann-work-6-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:23:\"mann-work-6-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:23:\"mann-work-6-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:23:\"mann-work-6-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:23:\"mann-work-6-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:{}}}'),(30999,613,'_wp_attached_file','2019/12/mann-work-7.jpg'),(31000,613,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4010402570046718;s:5:\"bytes\";i:18359;s:11:\"size_before\";i:339916;s:10:\"size_after\";i:321557;s:4:\"time\";d:0.15000000000000002;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:11.75;s:5:\"bytes\";i:1055;s:11:\"size_before\";i:8976;s:10:\"size_after\";i:7921;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.71;s:5:\"bytes\";i:1730;s:11:\"size_before\";i:22451;s:10:\"size_after\";i:20721;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4699999999999998;s:5:\"bytes\";i:4570;s:11:\"size_before\";i:83593;s:10:\"size_after\";i:79023;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1200000000000001;s:5:\"bytes\";i:2736;s:11:\"size_before\";i:44672;s:10:\"size_after\";i:41936;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5899999999999999;s:5:\"bytes\";i:3634;s:11:\"size_before\";i:65041;s:10:\"size_after\";i:61407;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0199999999999996;s:5:\"bytes\";i:4634;s:11:\"size_before\";i:115183;s:10:\"size_after\";i:110549;s:4:\"time\";d:0.040000000000000001;}}}'),(31001,613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2019/12/mann-work-7.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mann-work-7-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:\"mann-work-7-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:23:\"mann-work-7-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:23:\"mann-work-7-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:23:\"mann-work-7-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:{}}}'),(31002,614,'_wp_attached_file','2019/12/mann-work-8.jpg'),(31003,614,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.16193122721082;s:5:\"bytes\";i:8056;s:11:\"size_before\";i:254781;s:10:\"size_after\";i:246725;s:4:\"time\";d:0.16;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:9.6600000000000001;s:5:\"bytes\";i:616;s:11:\"size_before\";i:6375;s:10:\"size_after\";i:5759;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5699999999999998;s:5:\"bytes\";i:596;s:11:\"size_before\";i:16677;s:10:\"size_after\";i:16081;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.49;s:5:\"bytes\";i:940;s:11:\"size_before\";i:63071;s:10:\"size_after\";i:62131;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2400000000000002;s:5:\"bytes\";i:736;s:11:\"size_before\";i:32846;s:10:\"size_after\";i:32110;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.73;s:5:\"bytes\";i:837;s:11:\"size_before\";i:48422;s:10:\"size_after\";i:47585;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96;s:5:\"bytes\";i:4331;s:11:\"size_before\";i:87390;s:10:\"size_after\";i:83059;s:4:\"time\";d:0.059999999999999998;}}}'),(31004,614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2019/12/mann-work-8.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mann-work-8-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:\"mann-work-8-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:23:\"mann-work-8-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:23:\"mann-work-8-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:23:\"mann-work-8-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:{}}}'),(31005,615,'_wp_attached_file','2019/12/mann-work-9.jpg'),(31006,615,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.3322337353025722;s:5:\"bytes\";i:9495;s:11:\"size_before\";i:219171;s:10:\"size_after\";i:209676;s:4:\"time\";d:0.12;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.109999999999999;s:5:\"bytes\";i:831;s:11:\"size_before\";i:6864;s:10:\"size_after\";i:6033;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1100000000000003;s:5:\"bytes\";i:1105;s:11:\"size_before\";i:15542;s:10:\"size_after\";i:14437;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4500000000000002;s:5:\"bytes\";i:1721;s:11:\"size_before\";i:49902;s:10:\"size_after\";i:48181;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5199999999999996;s:5:\"bytes\";i:1312;s:11:\"size_before\";i:29042;s:10:\"size_after\";i:27730;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9199999999999999;s:5:\"bytes\";i:1537;s:11:\"size_before\";i:39214;s:10:\"size_after\";i:37677;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7999999999999998;s:5:\"bytes\";i:2989;s:11:\"size_before\";i:78607;s:10:\"size_after\";i:75618;s:4:\"time\";d:0.029999999999999999;}}}'),(31007,615,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2019/12/mann-work-9.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mann-work-9-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:\"mann-work-9-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:23:\"mann-work-9-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:23:\"mann-work-9-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:23:\"mann-work-9-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:{}}}'),(31008,616,'_wp_attached_file','2019/12/mann-work-10.jpg'),(31009,616,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1963600357910131;s:5:\"bytes\";i:9239;s:11:\"size_before\";i:220167;s:10:\"size_after\";i:210928;s:4:\"time\";d:0.12;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:10.630000000000001;s:5:\"bytes\";i:701;s:11:\"size_before\";i:6597;s:10:\"size_after\";i:5896;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9299999999999997;s:5:\"bytes\";i:700;s:11:\"size_before\";i:14212;s:10:\"size_after\";i:13512;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.0099999999999998;s:5:\"bytes\";i:962;s:11:\"size_before\";i:47856;s:10:\"size_after\";i:46894;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04;s:5:\"bytes\";i:902;s:11:\"size_before\";i:29704;s:10:\"size_after\";i:28802;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.0499999999999998;s:5:\"bytes\";i:832;s:11:\"size_before\";i:40587;s:10:\"size_after\";i:39755;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3300000000000001;s:5:\"bytes\";i:5142;s:11:\"size_before\";i:81211;s:10:\"size_after\";i:76069;s:4:\"time\";d:0.029999999999999999;}}}'),(31010,616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-10.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-10-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:\"mann-work-10-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-10-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-10-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-10-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:{}}}'),(31011,617,'_wp_attached_file','2019/12/mann-work-11.jpg'),(31012,617,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.2371238303970324;s:5:\"bytes\";i:10053;s:11:\"size_before\";i:237260;s:10:\"size_after\";i:227207;s:4:\"time\";d:0.13;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:11.68;s:5:\"bytes\";i:685;s:11:\"size_before\";i:5863;s:10:\"size_after\";i:5178;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4900000000000002;s:5:\"bytes\";i:808;s:11:\"size_before\";i:14721;s:10:\"size_after\";i:13913;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0299999999999998;s:5:\"bytes\";i:1783;s:11:\"size_before\";i:58758;s:10:\"size_after\";i:56975;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6600000000000001;s:5:\"bytes\";i:1108;s:11:\"size_before\";i:30271;s:10:\"size_after\";i:29163;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2799999999999998;s:5:\"bytes\";i:1450;s:11:\"size_before\";i:44206;s:10:\"size_after\";i:42756;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0599999999999996;s:5:\"bytes\";i:4219;s:11:\"size_before\";i:83441;s:10:\"size_after\";i:79222;s:4:\"time\";d:0.029999999999999999;}}}'),(31013,617,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-11.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-11-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:\"mann-work-11-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-11-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-11-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-11-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:{}}}'),(31014,618,'_wp_attached_file','2019/12/mann-work-12-1.jpg'),(31015,618,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.616721810577066;s:5:\"bytes\";i:9614;s:11:\"size_before\";i:208243;s:10:\"size_after\";i:198629;s:4:\"time\";d:0.19999999999999998;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.58;s:5:\"bytes\";i:758;s:11:\"size_before\";i:6026;s:10:\"size_after\";i:5268;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3700000000000001;s:5:\"bytes\";i:892;s:11:\"size_before\";i:14005;s:10:\"size_after\";i:13113;s:4:\"time\";d:0.040000000000000001;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3700000000000001;s:5:\"bytes\";i:1626;s:11:\"size_before\";i:48228;s:10:\"size_after\";i:46602;s:4:\"time\";d:0.080000000000000002;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1299999999999999;s:5:\"bytes\";i:983;s:11:\"size_before\";i:23824;s:10:\"size_after\";i:22841;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6499999999999999;s:5:\"bytes\";i:1312;s:11:\"size_before\";i:35965;s:10:\"size_after\";i:34653;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04;s:5:\"bytes\";i:4043;s:11:\"size_before\";i:80195;s:10:\"size_after\";i:76152;s:4:\"time\";d:0.029999999999999999;}}}'),(31016,618,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:26:\"2019/12/mann-work-12-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"mann-work-12-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:\"mann-work-12-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:26:\"mann-work-12-1-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:26:\"mann-work-12-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:26:\"mann-work-12-1-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:{}}}'),(31017,619,'_wp_attached_file','2019/12/mann-work-13.jpg'),(31018,619,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.6314157753481817;s:5:\"bytes\";i:17441;s:11:\"size_before\";i:480281;s:10:\"size_after\";i:462840;s:4:\"time\";d:0.26000000000000001;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:11.390000000000001;s:5:\"bytes\";i:906;s:11:\"size_before\";i:7954;s:10:\"size_after\";i:7048;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9900000000000002;s:5:\"bytes\";i:1429;s:11:\"size_before\";i:20444;s:10:\"size_after\";i:19015;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9199999999999999;s:5:\"bytes\";i:4043;s:11:\"size_before\";i:103177;s:10:\"size_after\";i:99134;s:4:\"time\";d:0.029999999999999999;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:99134;s:10:\"size_after\";i:99134;s:4:\"time\";d:0.080000000000000002;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1600000000000001;s:5:\"bytes\";i:2411;s:11:\"size_before\";i:46692;s:10:\"size_after\";i:44281;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3200000000000003;s:5:\"bytes\";i:2188;s:11:\"size_before\";i:41160;s:10:\"size_after\";i:38972;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7000000000000002;s:5:\"bytes\";i:2639;s:11:\"size_before\";i:56174;s:10:\"size_after\";i:53535;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6200000000000001;s:5:\"bytes\";i:3825;s:11:\"size_before\";i:105546;s:10:\"size_after\";i:101721;s:4:\"time\";d:0.050000000000000003;}}}'),(31019,619,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2019/12/mann-work-13.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-13-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:\"mann-work-13-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"mann-work-13-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"mann-work-13-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-13-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-13-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-13-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:{}}}'),(31020,620,'_wp_attached_file','2019/12/mann-work-14-1.jpg'),(31021,620,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.9162865575529913;s:5:\"bytes\";i:10947;s:11:\"size_before\";i:279525;s:10:\"size_after\";i:268578;s:4:\"time\";d:0.17000000000000001;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:10.449999999999999;s:5:\"bytes\";i:786;s:11:\"size_before\";i:7525;s:10:\"size_after\";i:6739;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4400000000000004;s:5:\"bytes\";i:1266;s:11:\"size_before\";i:19650;s:10:\"size_after\";i:18384;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5600000000000001;s:5:\"bytes\";i:2523;s:11:\"size_before\";i:70815;s:10:\"size_after\";i:68292;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6800000000000002;s:5:\"bytes\";i:1238;s:11:\"size_before\";i:33652;s:10:\"size_after\";i:32414;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2999999999999998;s:5:\"bytes\";i:1669;s:11:\"size_before\";i:50549;s:10:\"size_after\";i:48880;s:4:\"time\";d:0.059999999999999998;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5600000000000001;s:5:\"bytes\";i:3465;s:11:\"size_before\";i:97334;s:10:\"size_after\";i:93869;s:4:\"time\";d:0.040000000000000001;}}}'),(31022,620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2019/12/mann-work-14-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"mann-work-14-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:\"mann-work-14-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:26:\"mann-work-14-1-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:26:\"mann-work-14-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:26:\"mann-work-14-1-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:{}}}'),(31023,621,'_wp_attached_file','2019/12/mann-work-15.jpg'),(31024,621,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8462193513547192;s:5:\"bytes\";i:11259;s:11:\"size_before\";i:192586;s:10:\"size_after\";i:181327;s:4:\"time\";d:0.17999999999999999;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:11.4;s:5:\"bytes\";i:685;s:11:\"size_before\";i:6008;s:10:\"size_after\";i:5323;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8300000000000001;s:5:\"bytes\";i:851;s:11:\"size_before\";i:12459;s:10:\"size_after\";i:11608;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0499999999999998;s:5:\"bytes\";i:1712;s:11:\"size_before\";i:42275;s:10:\"size_after\";i:40563;s:4:\"time\";d:0.070000000000000007;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5099999999999998;s:5:\"bytes\";i:1209;s:11:\"size_before\";i:26787;s:10:\"size_after\";i:25578;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9300000000000002;s:5:\"bytes\";i:1359;s:11:\"size_before\";i:34543;s:10:\"size_after\";i:33184;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7199999999999998;s:5:\"bytes\";i:5443;s:11:\"size_before\";i:70514;s:10:\"size_after\";i:65071;s:4:\"time\";d:0.029999999999999999;}}}'),(31025,621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-15.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-15-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:\"mann-work-15-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-15-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-15-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-15-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:{}}}'),(31026,622,'_wp_attached_file','2019/12/mann-work-16-1.jpg'),(31027,622,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1535534164680481;s:5:\"bytes\";i:12617;s:11:\"size_before\";i:303764;s:10:\"size_after\";i:291147;s:4:\"time\";d:0.18000000000000002;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:11.119999999999999;s:5:\"bytes\";i:767;s:11:\"size_before\";i:6895;s:10:\"size_after\";i:6128;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0999999999999996;s:5:\"bytes\";i:1065;s:11:\"size_before\";i:17457;s:10:\"size_after\";i:16392;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7599999999999998;s:5:\"bytes\";i:2763;s:11:\"size_before\";i:73470;s:10:\"size_after\";i:70707;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6699999999999999;s:5:\"bytes\";i:1770;s:11:\"size_before\";i:37870;s:10:\"size_after\";i:36100;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.25;s:5:\"bytes\";i:2351;s:11:\"size_before\";i:55366;s:10:\"size_after\";i:53015;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.46;s:5:\"bytes\";i:3901;s:11:\"size_before\";i:112706;s:10:\"size_after\";i:108805;s:4:\"time\";d:0.040000000000000001;}}}'),(31028,622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2019/12/mann-work-16-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"mann-work-16-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:\"mann-work-16-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:26:\"mann-work-16-1-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:26:\"mann-work-16-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:26:\"mann-work-16-1-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:{}}}'),(31029,623,'_wp_attached_file','2019/12/mann-work-17-1.jpg'),(31030,623,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.5118269844858849;s:5:\"bytes\";i:11374;s:11:\"size_before\";i:252093;s:10:\"size_after\";i:240719;s:4:\"time\";d:0.15000000000000002;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:11.35;s:5:\"bytes\";i:658;s:11:\"size_before\";i:5795;s:10:\"size_after\";i:5137;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6699999999999999;s:5:\"bytes\";i:860;s:11:\"size_before\";i:15160;s:10:\"size_after\";i:14300;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2400000000000002;s:5:\"bytes\";i:1267;s:11:\"size_before\";i:56532;s:10:\"size_after\";i:55265;s:4:\"time\";d:0.050000000000000003;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.77;s:5:\"bytes\";i:793;s:11:\"size_before\";i:28649;s:10:\"size_after\";i:27856;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2999999999999998;s:5:\"bytes\";i:973;s:11:\"size_before\";i:42231;s:10:\"size_after\";i:41258;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5800000000000001;s:5:\"bytes\";i:6823;s:11:\"size_before\";i:103726;s:10:\"size_after\";i:96903;s:4:\"time\";d:0.040000000000000001;}}}'),(31031,623,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:26:\"2019/12/mann-work-17-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"mann-work-17-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:\"mann-work-17-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:26:\"mann-work-17-1-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:26:\"mann-work-17-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:26:\"mann-work-17-1-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:{}}}'),(31032,624,'_wp_attached_file','2019/12/mann-work-18.jpg'),(31033,624,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.6412866711381029;s:5:\"bytes\";i:11499;s:11:\"size_before\";i:435356;s:10:\"size_after\";i:423857;s:4:\"time\";d:0.27000000000000002;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:12.220000000000001;s:5:\"bytes\";i:617;s:11:\"size_before\";i:5048;s:10:\"size_after\";i:4431;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7999999999999998;s:5:\"bytes\";i:717;s:11:\"size_before\";i:12363;s:10:\"size_after\";i:11646;s:4:\"time\";d:0.029999999999999999;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8500000000000001;s:5:\"bytes\";i:1270;s:11:\"size_before\";i:68714;s:10:\"size_after\";i:67444;s:4:\"time\";d:0.029999999999999999;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.37;s:5:\"bytes\";i:372;s:11:\"size_before\";i:101810;s:10:\"size_after\";i:101438;s:4:\"time\";d:0.040000000000000001;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:67444;s:10:\"size_after\";i:67444;s:4:\"time\";d:0.040000000000000001;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8100000000000001;s:5:\"bytes\";i:1052;s:11:\"size_before\";i:27589;s:10:\"size_after\";i:26537;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0599999999999996;s:5:\"bytes\";i:1013;s:11:\"size_before\";i:24922;s:10:\"size_after\";i:23909;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.54;s:5:\"bytes\";i:898;s:11:\"size_before\";i:35293;s:10:\"size_after\";i:34395;s:4:\"time\";d:0.059999999999999998;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0300000000000002;s:5:\"bytes\";i:5560;s:11:\"size_before\";i:92173;s:10:\"size_after\";i:86613;s:4:\"time\";d:0.029999999999999999;}}}'),(31034,624,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2019/12/mann-work-18.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-18-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:\"mann-work-18-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"mann-work-18-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:24:\"mann-work-18-960x720.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"mann-work-18-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-18-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-18-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-18-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:{}}}'),(31035,625,'_wp_attached_file','2019/12/mann-work-19.jpg'),(31036,625,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.8196424539097751;s:5:\"bytes\";i:9980;s:11:\"size_before\";i:261281;s:10:\"size_after\";i:251301;s:4:\"time\";d:0.16;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:10.869999999999999;s:5:\"bytes\";i:787;s:11:\"size_before\";i:7239;s:10:\"size_after\";i:6452;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0899999999999999;s:5:\"bytes\";i:1095;s:11:\"size_before\";i:17984;s:10:\"size_after\";i:16889;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.25;s:5:\"bytes\";i:2107;s:11:\"size_before\";i:64857;s:10:\"size_after\";i:62750;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";i:4;s:5:\"bytes\";i:1282;s:11:\"size_before\";i:32048;s:10:\"size_after\";i:30766;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6000000000000001;s:5:\"bytes\";i:1776;s:11:\"size_before\";i:49359;s:10:\"size_after\";i:47583;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.27;s:5:\"bytes\";i:2933;s:11:\"size_before\";i:89794;s:10:\"size_after\";i:86861;s:4:\"time\";d:0.040000000000000001;}}}'),(31037,625,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-19.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-19-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:\"mann-work-19-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-19-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-19-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-19-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:{}}}'),(31038,626,'_wp_attached_file','2019/12/mann-work-20.jpg'),(31039,626,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.4495344385686013;s:5:\"bytes\";i:8506;s:11:\"size_before\";i:246584;s:10:\"size_after\";i:238078;s:4:\"time\";d:0.17999999999999999;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:11.43;s:5:\"bytes\";i:768;s:11:\"size_before\";i:6721;s:10:\"size_after\";i:5953;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5;s:5:\"bytes\";i:1070;s:11:\"size_before\";i:16466;s:10:\"size_after\";i:15396;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8399999999999999;s:5:\"bytes\";i:1727;s:11:\"size_before\";i:60778;s:10:\"size_after\";i:59051;s:4:\"time\";d:0.050000000000000003;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0600000000000001;s:5:\"bytes\";i:989;s:11:\"size_before\";i:32346;s:10:\"size_after\";i:31357;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7599999999999998;s:5:\"bytes\";i:1262;s:11:\"size_before\";i:45680;s:10:\"size_after\";i:44418;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1800000000000002;s:5:\"bytes\";i:2690;s:11:\"size_before\";i:84593;s:10:\"size_after\";i:81903;s:4:\"time\";d:0.059999999999999998;}}}'),(31040,626,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-20.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-20-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:\"mann-work-20-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-20-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-20-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-20-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:{}}}'),(31041,627,'_wp_attached_file','2019/12/mann-work-21.jpg'),(31042,627,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4260662357490403;s:5:\"bytes\";i:15211;s:11:\"size_before\";i:280332;s:10:\"size_after\";i:265121;s:4:\"time\";d:0.19;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.48;s:5:\"bytes\";i:856;s:11:\"size_before\";i:6857;s:10:\"size_after\";i:6001;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1100000000000003;s:5:\"bytes\";i:1223;s:11:\"size_before\";i:17195;s:10:\"size_after\";i:15972;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7400000000000002;s:5:\"bytes\";i:3273;s:11:\"size_before\";i:69073;s:10:\"size_after\";i:65800;s:4:\"time\";d:0.059999999999999998;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2000000000000002;s:5:\"bytes\";i:1853;s:11:\"size_before\";i:35604;s:10:\"size_after\";i:33751;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8899999999999997;s:5:\"bytes\";i:2567;s:11:\"size_before\";i:52462;s:10:\"size_after\";i:49895;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4900000000000002;s:5:\"bytes\";i:5439;s:11:\"size_before\";i:99141;s:10:\"size_after\";i:93702;s:4:\"time\";d:0.029999999999999999;}}}'),(31043,627,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-21.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-21-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:\"mann-work-21-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-21-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-21-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-21-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:{}}}'),(31044,628,'_wp_attached_file','2019/12/mann-work-22.jpg'),(31045,628,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8114551994028094;s:5:\"bytes\";i:8508;s:11:\"size_before\";i:176828;s:10:\"size_after\";i:168320;s:4:\"time\";d:0.10000000000000001;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.93;s:5:\"bytes\";i:729;s:11:\"size_before\";i:5640;s:10:\"size_after\";i:4911;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5099999999999998;s:5:\"bytes\";i:819;s:11:\"size_before\";i:12579;s:10:\"size_after\";i:11760;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3100000000000001;s:5:\"bytes\";i:1365;s:11:\"size_before\";i:41267;s:10:\"size_after\";i:39902;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3200000000000003;s:5:\"bytes\";i:905;s:11:\"size_before\";i:20948;s:10:\"size_after\";i:20043;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3999999999999999;s:5:\"bytes\";i:1050;s:11:\"size_before\";i:30884;s:10:\"size_after\";i:29834;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5599999999999996;s:5:\"bytes\";i:3640;s:11:\"size_before\";i:65510;s:10:\"size_after\";i:61870;s:4:\"time\";d:0.029999999999999999;}}}'),(31046,628,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-22.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-22-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:\"mann-work-22-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-22-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-22-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-22-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:{}}}'),(31047,629,'_wp_attached_file','2019/12/mann-work-23.jpg'),(31048,607,'_wp_attachment_image_alt','raising unit with crane'),(31049,629,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2699922515830817;s:5:\"bytes\";i:9862;s:11:\"size_before\";i:187135;s:10:\"size_after\";i:177273;s:4:\"time\";d:0.10000000000000001;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.359999999999999;s:5:\"bytes\";i:698;s:11:\"size_before\";i:5645;s:10:\"size_after\";i:4947;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5599999999999996;s:5:\"bytes\";i:843;s:11:\"size_before\";i:12842;s:10:\"size_after\";i:11999;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3500000000000001;s:5:\"bytes\";i:1438;s:11:\"size_before\";i:42874;s:10:\"size_after\";i:41436;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8600000000000003;s:5:\"bytes\";i:1073;s:11:\"size_before\";i:22058;s:10:\"size_after\";i:20985;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9300000000000002;s:5:\"bytes\";i:1280;s:11:\"size_before\";i:32603;s:10:\"size_after\";i:31323;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3700000000000001;s:5:\"bytes\";i:4530;s:11:\"size_before\";i:71113;s:10:\"size_after\";i:66583;s:4:\"time\";d:0.029999999999999999;}}}'),(31050,629,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-23.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-23-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:\"mann-work-23-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-23-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-23-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-23-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:{}}}'),(31051,630,'_wp_attached_file','2019/12/mann-work-24.jpg'),(31052,608,'_wp_attachment_image_alt','raising unit with crane'),(31053,630,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3753921022544047;s:5:\"bytes\";i:9168;s:11:\"size_before\";i:170555;s:10:\"size_after\";i:161387;s:4:\"time\";d:0.16;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.25;s:5:\"bytes\";i:726;s:11:\"size_before\";i:5926;s:10:\"size_after\";i:5200;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8700000000000001;s:5:\"bytes\";i:851;s:11:\"size_before\";i:12395;s:10:\"size_after\";i:11544;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6800000000000002;s:5:\"bytes\";i:1439;s:11:\"size_before\";i:39132;s:10:\"size_after\";i:37693;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.75;s:5:\"bytes\";i:1108;s:11:\"size_before\";i:23304;s:10:\"size_after\";i:22196;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2400000000000002;s:5:\"bytes\";i:1352;s:11:\"size_before\";i:31851;s:10:\"size_after\";i:30499;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3700000000000001;s:5:\"bytes\";i:3692;s:11:\"size_before\";i:57947;s:10:\"size_after\";i:54255;s:4:\"time\";d:0.070000000000000007;}}}'),(31054,630,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-24.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-24-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:\"mann-work-24-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-24-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-24-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-24-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:{}}}'),(31055,631,'_wp_attached_file','2019/12/mann-work-25.jpg'),(31056,609,'_wp_attachment_image_alt','furnace'),(31057,631,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.4607465732469516;s:5:\"bytes\";i:13268;s:11:\"size_before\";i:297439;s:10:\"size_after\";i:284171;s:4:\"time\";d:0.15000000000000002;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:10.91;s:5:\"bytes\";i:888;s:11:\"size_before\";i:8143;s:10:\"size_after\";i:7255;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3600000000000003;s:5:\"bytes\";i:1317;s:11:\"size_before\";i:20705;s:10:\"size_after\";i:19388;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3399999999999999;s:5:\"bytes\";i:3222;s:11:\"size_before\";i:74186;s:10:\"size_after\";i:70964;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2400000000000002;s:5:\"bytes\";i:1500;s:11:\"size_before\";i:35377;s:10:\"size_after\";i:33877;s:4:\"time\";d:0.050000000000000003;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4199999999999999;s:5:\"bytes\";i:2459;s:11:\"size_before\";i:55575;s:10:\"size_after\";i:53116;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.75;s:5:\"bytes\";i:3882;s:11:\"size_before\";i:103453;s:10:\"size_after\";i:99571;s:4:\"time\";d:0.029999999999999999;}}}'),(31058,631,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-25.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-25-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:\"mann-work-25-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-25-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-25-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-25-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:{}}}'),(31059,632,'_wp_attached_file','2019/12/mann-work-26.jpg'),(31060,610,'_wp_attachment_image_alt','finished basement'),(31061,632,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.9799892108664894;s:5:\"bytes\";i:11711;s:11:\"size_before\";i:392988;s:10:\"size_after\";i:381277;s:4:\"time\";d:0.23000000000000001;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:11.41;s:5:\"bytes\";i:667;s:11:\"size_before\";i:5846;s:10:\"size_after\";i:5179;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4699999999999998;s:5:\"bytes\";i:845;s:11:\"size_before\";i:15440;s:10:\"size_after\";i:14595;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4300000000000002;s:5:\"bytes\";i:2079;s:11:\"size_before\";i:85679;s:10:\"size_after\";i:83600;s:4:\"time\";d:0.040000000000000001;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:83600;s:10:\"size_after\";i:83600;s:4:\"time\";d:0.050000000000000003;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6800000000000002;s:5:\"bytes\";i:1330;s:11:\"size_before\";i:36142;s:10:\"size_after\";i:34812;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8500000000000001;s:5:\"bytes\";i:1246;s:11:\"size_before\";i:32330;s:10:\"size_after\";i:31084;s:4:\"time\";d:0.040000000000000001;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2200000000000002;s:5:\"bytes\";i:1440;s:11:\"size_before\";i:44712;s:10:\"size_after\";i:43272;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5999999999999996;s:5:\"bytes\";i:4104;s:11:\"size_before\";i:89239;s:10:\"size_after\";i:85135;s:4:\"time\";d:0.040000000000000001;}}}'),(31062,632,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2019/12/mann-work-26.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-26-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:\"mann-work-26-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"mann-work-26-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"mann-work-26-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-26-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-26-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-26-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:{}}}'),(31063,633,'_wp_attached_file','2019/12/mann-work-27.jpg'),(31064,611,'_wp_attachment_image_alt','raising unit with crane'),(31065,633,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8439579343698265;s:5:\"bytes\";i:11939;s:11:\"size_before\";i:246472;s:10:\"size_after\";i:234533;s:4:\"time\";d:0.20000000000000001;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:11.91;s:5:\"bytes\";i:791;s:11:\"size_before\";i:6640;s:10:\"size_after\";i:5849;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3200000000000003;s:5:\"bytes\";i:978;s:11:\"size_before\";i:15485;s:10:\"size_after\";i:14507;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8999999999999999;s:5:\"bytes\";i:2158;s:11:\"size_before\";i:55299;s:10:\"size_after\";i:53141;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4500000000000002;s:5:\"bytes\";i:1316;s:11:\"size_before\";i:29581;s:10:\"size_after\";i:28265;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:4;s:5:\"bytes\";i:1704;s:11:\"size_before\";i:42599;s:10:\"size_after\";i:40895;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1500000000000004;s:5:\"bytes\";i:4992;s:11:\"size_before\";i:96868;s:10:\"size_after\";i:91876;s:4:\"time\";d:0.070000000000000007;}}}'),(31066,633,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-27.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-27-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:\"mann-work-27-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-27-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-27-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-27-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:{}}}'),(31067,634,'_wp_attached_file','2019/12/mann-work-28.jpg'),(31068,612,'_wp_attachment_image_alt','HVAC units'),(31069,634,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.37543640726145;s:5:\"bytes\";i:11717;s:11:\"size_before\";i:217973;s:10:\"size_after\";i:206256;s:4:\"time\";d:0.22999999999999998;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:11.18;s:5:\"bytes\";i:601;s:11:\"size_before\";i:5374;s:10:\"size_after\";i:4773;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:650;s:11:\"size_before\";i:13005;s:10:\"size_after\";i:12355;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.46;s:5:\"bytes\";i:772;s:11:\"size_before\";i:52735;s:10:\"size_after\";i:51963;s:4:\"time\";d:0.059999999999999998;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.0499999999999998;s:5:\"bytes\";i:557;s:11:\"size_before\";i:27124;s:10:\"size_after\";i:26567;s:4:\"time\";d:0.059999999999999998;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5700000000000001;s:5:\"bytes\";i:634;s:11:\"size_before\";i:40278;s:10:\"size_after\";i:39644;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999;s:5:\"bytes\";i:8503;s:11:\"size_before\";i:79457;s:10:\"size_after\";i:70954;s:4:\"time\";d:0.050000000000000003;}}}'),(31070,634,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-28.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-28-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:\"mann-work-28-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-28-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-28-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-28-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:{}}}'),(31071,635,'_wp_attached_file','2019/12/mann-work-29.jpg'),(31072,613,'_wp_attachment_image_alt','excavating'),(31073,635,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.2205229403058704;s:5:\"bytes\";i:12609;s:11:\"size_before\";i:202700;s:10:\"size_after\";i:190091;s:4:\"time\";d:0.15000000000000002;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.449999999999999;s:5:\"bytes\";i:710;s:11:\"size_before\";i:5702;s:10:\"size_after\";i:4992;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.46;s:5:\"bytes\";i:787;s:11:\"size_before\";i:12175;s:10:\"size_after\";i:11388;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8300000000000001;s:5:\"bytes\";i:1707;s:11:\"size_before\";i:44569;s:10:\"size_after\";i:42862;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9800000000000004;s:5:\"bytes\";i:1202;s:11:\"size_before\";i:24117;s:10:\"size_after\";i:22915;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1799999999999997;s:5:\"bytes\";i:1461;s:11:\"size_before\";i:34949;s:10:\"size_after\";i:33488;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3000000000000007;s:5:\"bytes\";i:6742;s:11:\"size_before\";i:81188;s:10:\"size_after\";i:74446;s:4:\"time\";d:0.050000000000000003;}}}'),(31074,635,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-29.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-29-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:\"mann-work-29-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-29-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-29-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-29-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:{}}}'),(31075,636,'_wp_attached_file','2019/12/mann-work-30.jpg'),(31076,614,'_wp_attachment_image_alt','HVAC unit'),(31077,636,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2999511114124518;s:5:\"bytes\";i:14852;s:11:\"size_before\";i:280229;s:10:\"size_after\";i:265377;s:4:\"time\";d:0.20000000000000004;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.119999999999999;s:5:\"bytes\";i:803;s:11:\"size_before\";i:6624;s:10:\"size_after\";i:5821;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2199999999999998;s:5:\"bytes\";i:1258;s:11:\"size_before\";i:17434;s:10:\"size_after\";i:16176;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6399999999999997;s:5:\"bytes\";i:3260;s:11:\"size_before\";i:70267;s:10:\"size_after\";i:67007;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0300000000000002;s:5:\"bytes\";i:1663;s:11:\"size_before\";i:33070;s:10:\"size_after\";i:31407;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7000000000000002;s:5:\"bytes\";i:2390;s:11:\"size_before\";i:50877;s:10:\"size_after\";i:48487;s:4:\"time\";d:0.070000000000000007;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3700000000000001;s:5:\"bytes\";i:5478;s:11:\"size_before\";i:101957;s:10:\"size_after\";i:96479;s:4:\"time\";d:0.040000000000000001;}}}'),(31078,636,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-30.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-30-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:\"mann-work-30-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-30-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-30-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-30-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:{}}}'),(31079,637,'_wp_attached_file','2019/12/mann-work-31.jpg'),(31080,615,'_wp_attachment_image_alt','furnace installation'),(31081,637,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.6450372273595848;s:5:\"bytes\";i:11498;s:11:\"size_before\";i:247533;s:10:\"size_after\";i:236035;s:4:\"time\";d:0.17000000000000001;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.050000000000001;s:5:\"bytes\";i:884;s:11:\"size_before\";i:7336;s:10:\"size_after\";i:6452;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1100000000000003;s:5:\"bytes\";i:1208;s:11:\"size_before\";i:16998;s:10:\"size_after\";i:15790;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1799999999999997;s:5:\"bytes\";i:2351;s:11:\"size_before\";i:56304;s:10:\"size_after\";i:53953;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1100000000000003;s:5:\"bytes\";i:1542;s:11:\"size_before\";i:30164;s:10:\"size_after\";i:28622;s:4:\"time\";d:0.040000000000000001;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5;s:5:\"bytes\";i:2001;s:11:\"size_before\";i:44476;s:10:\"size_after\";i:42475;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8100000000000001;s:5:\"bytes\";i:3512;s:11:\"size_before\";i:92255;s:10:\"size_after\";i:88743;s:4:\"time\";d:0.040000000000000001;}}}'),(31082,637,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-31.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-31-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:\"mann-work-31-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-31-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-31-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-31-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:{}}}'),(31083,638,'_wp_attached_file','2019/12/mann-work-32.jpg'),(31084,616,'_wp_attachment_image_alt','raising unit with crane'),(31085,638,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3185804451991761;s:5:\"bytes\";i:17915;s:11:\"size_before\";i:336838;s:10:\"size_after\";i:318923;s:4:\"time\";d:0.16;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:11.57;s:5:\"bytes\";i:922;s:11:\"size_before\";i:7970;s:10:\"size_after\";i:7048;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3200000000000003;s:5:\"bytes\";i:1515;s:11:\"size_before\";i:20696;s:10:\"size_after\";i:19181;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4400000000000004;s:5:\"bytes\";i:4445;s:11:\"size_before\";i:81678;s:10:\"size_after\";i:77233;s:4:\"time\";d:0.050000000000000003;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4100000000000001;s:5:\"bytes\";i:2906;s:11:\"size_before\";i:45331;s:10:\"size_after\";i:42425;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7199999999999998;s:5:\"bytes\";i:3595;s:11:\"size_before\";i:62873;s:10:\"size_after\";i:59278;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8300000000000001;s:5:\"bytes\";i:4532;s:11:\"size_before\";i:118290;s:10:\"size_after\";i:113758;s:4:\"time\";d:0.040000000000000001;}}}'),(31086,638,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-32.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-32-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:\"mann-work-32-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-32-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-32-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-32-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:{}}}'),(31087,639,'_wp_attached_file','2019/12/mann-work-33.jpg'),(31088,617,'_wp_attachment_image_alt','HVAC unit'),(31089,618,'_wp_attachment_image_alt','furnace'),(31090,639,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.617165009085042;s:5:\"bytes\";i:12273;s:11:\"size_before\";i:218491;s:10:\"size_after\";i:206218;s:4:\"time\";d:0.19999999999999998;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.94;s:5:\"bytes\";i:733;s:11:\"size_before\";i:5664;s:10:\"size_after\";i:4931;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1600000000000001;s:5:\"bytes\";i:889;s:11:\"size_before\";i:12410;s:10:\"size_after\";i:11521;s:4:\"time\";d:0.089999999999999997;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2300000000000004;s:5:\"bytes\";i:1947;s:11:\"size_before\";i:46011;s:10:\"size_after\";i:44064;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1600000000000001;s:5:\"bytes\";i:1635;s:11:\"size_before\";i:31690;s:10:\"size_after\";i:30055;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5700000000000003;s:5:\"bytes\";i:1793;s:11:\"size_before\";i:39243;s:10:\"size_after\";i:37450;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3200000000000003;s:5:\"bytes\";i:5276;s:11:\"size_before\";i:83473;s:10:\"size_after\";i:78197;s:4:\"time\";d:0.040000000000000001;}}}'),(31091,639,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-33.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-33-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:\"mann-work-33-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-33-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-33-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-33-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:{}}}'),(31092,640,'_wp_attached_file','2019/12/mann-work-34.jpg'),(31093,619,'_wp_attachment_image_alt','AC unit'),(31094,640,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2965368797324821;s:5:\"bytes\";i:17914;s:11:\"size_before\";i:338221;s:10:\"size_after\";i:320307;s:4:\"time\";d:0.14000000000000001;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:11.44;s:5:\"bytes\";i:1008;s:11:\"size_before\";i:8808;s:10:\"size_after\";i:7800;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5899999999999999;s:5:\"bytes\";i:1683;s:11:\"size_before\";i:22165;s:10:\"size_after\";i:20482;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.25;s:5:\"bytes\";i:4366;s:11:\"size_before\";i:83206;s:10:\"size_after\";i:78840;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9000000000000004;s:5:\"bytes\";i:2614;s:11:\"size_before\";i:44283;s:10:\"size_after\";i:41669;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4199999999999999;s:5:\"bytes\";i:3511;s:11:\"size_before\";i:64727;s:10:\"size_after\";i:61216;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1100000000000003;s:5:\"bytes\";i:4732;s:11:\"size_before\";i:115032;s:10:\"size_after\";i:110300;s:4:\"time\";d:0.040000000000000001;}}}'),(31095,640,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-34.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-34-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:\"mann-work-34-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-34-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-34-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-34-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:{}}}'),(31096,641,'_wp_attached_file','2019/12/mann-work-35.jpg'),(31097,620,'_wp_attachment_image_alt','AC unit'),(31098,641,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.5367080359597241;s:5:\"bytes\";i:8912;s:11:\"size_before\";i:196442;s:10:\"size_after\";i:187530;s:4:\"time\";d:0.20000000000000001;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.48;s:5:\"bytes\";i:773;s:11:\"size_before\";i:6192;s:10:\"size_after\";i:5419;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4900000000000002;s:5:\"bytes\";i:980;s:11:\"size_before\";i:17836;s:10:\"size_after\";i:16856;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2599999999999998;s:5:\"bytes\";i:1289;s:11:\"size_before\";i:39519;s:10:\"size_after\";i:38230;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6200000000000001;s:5:\"bytes\";i:939;s:11:\"size_before\";i:25911;s:10:\"size_after\";i:24972;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.25;s:5:\"bytes\";i:1264;s:11:\"size_before\";i:38860;s:10:\"size_after\";i:37596;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3799999999999999;s:5:\"bytes\";i:3667;s:11:\"size_before\";i:68124;s:10:\"size_after\";i:64457;s:4:\"time\";d:0.070000000000000007;}}}'),(31099,641,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:721;s:4:\"file\";s:24:\"2019/12/mann-work-35.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-35-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:\"mann-work-35-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-35-480x481.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-35-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-35-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:{}}}'),(31100,642,'_wp_attached_file','2019/12/mann-work-36.jpg'),(31101,621,'_wp_attachment_image_alt','Mann Plumbing truck'),(31102,642,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.5665453540332615;s:5:\"bytes\";i:13928;s:11:\"size_before\";i:542675;s:10:\"size_after\";i:528747;s:4:\"time\";d:0.33999999999999997;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:11.640000000000001;s:5:\"bytes\";i:835;s:11:\"size_before\";i:7176;s:10:\"size_after\";i:6341;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9900000000000002;s:5:\"bytes\";i:1210;s:11:\"size_before\";i:20209;s:10:\"size_after\";i:18999;s:4:\"time\";d:0.029999999999999999;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6899999999999999;s:5:\"bytes\";i:3398;s:11:\"size_before\";i:91990;s:10:\"size_after\";i:88592;s:4:\"time\";d:0.029999999999999999;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.73999999999999999;s:5:\"bytes\";i:870;s:11:\"size_before\";i:117054;s:10:\"size_after\";i:116184;s:4:\"time\";d:0.050000000000000003;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:88592;s:10:\"size_after\";i:88592;s:4:\"time\";d:0.050000000000000003;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7599999999999998;s:5:\"bytes\";i:2028;s:11:\"size_before\";i:42624;s:10:\"size_after\";i:40596;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2800000000000002;s:5:\"bytes\";i:1550;s:11:\"size_before\";i:29364;s:10:\"size_after\";i:27814;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40596;s:10:\"size_after\";i:40596;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8399999999999999;s:5:\"bytes\";i:4037;s:11:\"size_before\";i:105070;s:10:\"size_after\";i:101033;s:4:\"time\";d:0.089999999999999997;}}}'),(31103,642,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-36.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-36-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:\"mann-work-36-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:\"mann-work-36-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:24:\"mann-work-36-960x960.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"mann-work-36-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-36-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-36-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-36-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:{}}}'),(31104,643,'_wp_attached_file','2019/12/mann-work-37.jpg'),(31105,622,'_wp_attachment_image_alt','AC unit'),(31106,623,'_wp_attachment_image_alt','AC unit'),(31107,643,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.7866817380367688;s:5:\"bytes\";i:9514;s:11:\"size_before\";i:251249;s:10:\"size_after\";i:241735;s:4:\"time\";d:0.20000000000000001;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:10.44;s:5:\"bytes\";i:757;s:11:\"size_before\";i:7251;s:10:\"size_after\";i:6494;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9500000000000002;s:5:\"bytes\";i:1011;s:11:\"size_before\";i:16986;s:10:\"size_after\";i:15975;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7799999999999998;s:5:\"bytes\";i:1605;s:11:\"size_before\";i:57728;s:10:\"size_after\";i:56123;s:4:\"time\";d:0.050000000000000003;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1600000000000001;s:5:\"bytes\";i:896;s:11:\"size_before\";i:28379;s:10:\"size_after\";i:27483;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9100000000000001;s:5:\"bytes\";i:1285;s:11:\"size_before\";i:44159;s:10:\"size_after\";i:42874;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0899999999999999;s:5:\"bytes\";i:3960;s:11:\"size_before\";i:96746;s:10:\"size_after\";i:92786;s:4:\"time\";d:0.059999999999999998;}}}'),(31108,643,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-37.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-37-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:\"mann-work-37-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-37-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-37-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-37-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:{}}}'),(31109,644,'_wp_attached_file','2019/12/mann-work-38.jpg'),(31110,624,'_wp_attachment_image_alt','AC units'),(31111,625,'_wp_attachment_image_alt','AC units'),(31112,644,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.8665174439876888;s:5:\"bytes\";i:10779;s:11:\"size_before\";i:278778;s:10:\"size_after\";i:267999;s:4:\"time\";d:0.17000000000000001;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:10.35;s:5:\"bytes\";i:731;s:11:\"size_before\";i:7063;s:10:\"size_after\";i:6332;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7699999999999996;s:5:\"bytes\";i:871;s:11:\"size_before\";i:18248;s:10:\"size_after\";i:17377;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6099999999999999;s:5:\"bytes\";i:1815;s:11:\"size_before\";i:69547;s:10:\"size_after\";i:67732;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0099999999999998;s:5:\"bytes\";i:1015;s:11:\"size_before\";i:33698;s:10:\"size_after\";i:32683;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6899999999999999;s:5:\"bytes\";i:1394;s:11:\"size_before\";i:51749;s:10:\"size_after\";i:50355;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0300000000000002;s:5:\"bytes\";i:4953;s:11:\"size_before\";i:98473;s:10:\"size_after\";i:93520;s:4:\"time\";d:0.040000000000000001;}}}'),(31113,644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-38.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-38-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:\"mann-work-38-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-38-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-38-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-38-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:{}}}'),(31114,626,'_wp_attachment_image_alt','AC unit'),(31115,645,'_wp_attached_file','2019/12/mann-work-39.jpg'),(31116,645,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.2561826794191937;s:5:\"bytes\";i:15940;s:11:\"size_before\";i:374514;s:10:\"size_after\";i:358574;s:4:\"time\";d:0.16999999999999998;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:10.75;s:5:\"bytes\";i:956;s:11:\"size_before\";i:8890;s:10:\"size_after\";i:7934;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1399999999999997;s:5:\"bytes\";i:1472;s:11:\"size_before\";i:23992;s:10:\"size_after\";i:22520;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5899999999999999;s:5:\"bytes\";i:4277;s:11:\"size_before\";i:93090;s:10:\"size_after\";i:88813;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6400000000000001;s:5:\"bytes\";i:1570;s:11:\"size_before\";i:43089;s:10:\"size_after\";i:41519;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2199999999999998;s:5:\"bytes\";i:2854;s:11:\"size_before\";i:67658;s:10:\"size_after\";i:64804;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4900000000000002;s:5:\"bytes\";i:4811;s:11:\"size_before\";i:137795;s:10:\"size_after\";i:132984;s:4:\"time\";d:0.050000000000000003;}}}'),(31117,645,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-39.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-39-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:\"mann-work-39-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-39-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-39-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-39-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:{}}}'),(31118,646,'_wp_attached_file','2019/12/mann-work-40.jpg'),(31119,627,'_wp_attachment_image_alt','pipe in trench'),(31120,646,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6764417926361066;s:5:\"bytes\";i:11074;s:11:\"size_before\";i:195087;s:10:\"size_after\";i:184013;s:4:\"time\";d:0.18000000000000002;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.789999999999999;s:5:\"bytes\";i:810;s:11:\"size_before\";i:6331;s:10:\"size_after\";i:5521;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4900000000000002;s:5:\"bytes\";i:1035;s:11:\"size_before\";i:13813;s:10:\"size_after\";i:12778;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.79;s:5:\"bytes\";i:2176;s:11:\"size_before\";i:45391;s:10:\"size_after\";i:43215;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6699999999999999;s:5:\"bytes\";i:1443;s:11:\"size_before\";i:25453;s:10:\"size_after\";i:24010;s:4:\"time\";d:0.040000000000000001;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2300000000000004;s:5:\"bytes\";i:1864;s:11:\"size_before\";i:35620;s:10:\"size_after\";i:33756;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4699999999999998;s:5:\"bytes\";i:3746;s:11:\"size_before\";i:68479;s:10:\"size_after\";i:64733;s:4:\"time\";d:0.040000000000000001;}}}'),(31121,646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-40.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-40-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:\"mann-work-40-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-40-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-40-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-40-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:{}}}'),(31122,647,'_wp_attached_file','2019/12/mann-work-41.jpg'),(31123,647,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4724887336585732;s:5:\"bytes\";i:11767;s:11:\"size_before\";i:215021;s:10:\"size_after\";i:203254;s:4:\"time\";d:0.14999999999999999;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.869999999999999;s:5:\"bytes\";i:818;s:11:\"size_before\";i:6356;s:10:\"size_after\";i:5538;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2699999999999996;s:5:\"bytes\";i:1000;s:11:\"size_before\";i:13748;s:10:\"size_after\";i:12748;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8500000000000001;s:5:\"bytes\";i:1851;s:11:\"size_before\";i:48119;s:10:\"size_after\";i:46268;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1500000000000004;s:5:\"bytes\";i:1060;s:11:\"size_before\";i:25572;s:10:\"size_after\";i:24512;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04;s:5:\"bytes\";i:1555;s:11:\"size_before\";i:38467;s:10:\"size_after\";i:36912;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6299999999999999;s:5:\"bytes\";i:5483;s:11:\"size_before\";i:82759;s:10:\"size_after\";i:77276;s:4:\"time\";d:0.029999999999999999;}}}'),(31124,647,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-41.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-41-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:\"mann-work-41-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-41-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-41-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-41-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:{}}}'),(31125,628,'_wp_attachment_image_alt','furnace'),(31126,648,'_wp_attached_file','2019/12/mann-work-42.jpg'),(31127,629,'_wp_attachment_image_alt','furnace'),(31128,648,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8040412693999937;s:5:\"bytes\";i:20460;s:11:\"size_before\";i:352513;s:10:\"size_after\";i:332053;s:4:\"time\";d:0.17000000000000001;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.5;s:5:\"bytes\";i:876;s:11:\"size_before\";i:7010;s:10:\"size_after\";i:6134;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6100000000000003;s:5:\"bytes\";i:1521;s:11:\"size_before\";i:19996;s:10:\"size_after\";i:18475;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7400000000000002;s:5:\"bytes\";i:4962;s:11:\"size_before\";i:86498;s:10:\"size_after\";i:81536;s:4:\"time\";d:0.050000000000000003;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0199999999999996;s:5:\"bytes\";i:2636;s:11:\"size_before\";i:43758;s:10:\"size_after\";i:41122;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8200000000000003;s:5:\"bytes\";i:3838;s:11:\"size_before\";i:65980;s:10:\"size_after\";i:62142;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1299999999999999;s:5:\"bytes\";i:6627;s:11:\"size_before\";i:129271;s:10:\"size_after\";i:122644;s:4:\"time\";d:0.040000000000000001;}}}'),(31129,648,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-42.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-42-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:\"mann-work-42-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-42-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-42-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-42-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:{}}}'),(31130,649,'_wp_attached_file','2019/12/mann-work-43.jpg'),(31131,630,'_wp_attachment_image_alt','pipes in basement'),(31132,649,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8827111625357773;s:5:\"bytes\";i:12558;s:11:\"size_before\";i:213473;s:10:\"size_after\";i:200915;s:4:\"time\";d:0.20000000000000001;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.390000000000001;s:5:\"bytes\";i:713;s:11:\"size_before\";i:5754;s:10:\"size_after\";i:5041;s:4:\"time\";d:0.040000000000000001;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8399999999999999;s:5:\"bytes\";i:873;s:11:\"size_before\";i:12759;s:10:\"size_after\";i:11886;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002;s:5:\"bytes\";i:2083;s:11:\"size_before\";i:46422;s:10:\"size_after\";i:44339;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5999999999999996;s:5:\"bytes\";i:1272;s:11:\"size_before\";i:27625;s:10:\"size_after\";i:26353;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4400000000000004;s:5:\"bytes\";i:1658;s:11:\"size_before\";i:37355;s:10:\"size_after\";i:35697;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1299999999999999;s:5:\"bytes\";i:5959;s:11:\"size_before\";i:83558;s:10:\"size_after\";i:77599;s:4:\"time\";d:0.050000000000000003;}}}'),(31133,649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-43.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-43-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:\"mann-work-43-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-43-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-43-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-43-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:{}}}'),(31134,650,'_wp_attached_file','2019/12/mann-work-44.jpg'),(31135,631,'_wp_attachment_image_alt','HVAC repair'),(31136,650,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.6667282800620669;s:5:\"bytes\";i:9594;s:11:\"size_before\";i:205583;s:10:\"size_after\";i:195989;s:4:\"time\";d:0.12;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.130000000000001;s:5:\"bytes\";i:812;s:11:\"size_before\";i:6692;s:10:\"size_after\";i:5880;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3799999999999999;s:5:\"bytes\";i:930;s:11:\"size_before\";i:14575;s:10:\"size_after\";i:13645;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9199999999999999;s:5:\"bytes\";i:1885;s:11:\"size_before\";i:48105;s:10:\"size_after\";i:46220;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7800000000000002;s:5:\"bytes\";i:1219;s:11:\"size_before\";i:25503;s:10:\"size_after\";i:24284;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.46;s:5:\"bytes\";i:1716;s:11:\"size_before\";i:38505;s:10:\"size_after\";i:36789;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2000000000000002;s:5:\"bytes\";i:3032;s:11:\"size_before\";i:72203;s:10:\"size_after\";i:69171;s:4:\"time\";d:0.040000000000000001;}}}'),(31137,650,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-44.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-44-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:\"mann-work-44-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-44-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-44-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-44-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:{}}}'),(31138,651,'_wp_attached_file','2019/12/mann-work-45.jpg'),(31139,651,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.2816007202620261;s:5:\"bytes\";i:11033;s:11:\"size_before\";i:257684;s:10:\"size_after\";i:246651;s:4:\"time\";d:0.13;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:11.470000000000001;s:5:\"bytes\";i:861;s:11:\"size_before\";i:7508;s:10:\"size_after\";i:6647;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5;s:5:\"bytes\";i:1161;s:11:\"size_before\";i:17860;s:10:\"size_after\";i:16699;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8900000000000001;s:5:\"bytes\";i:2333;s:11:\"size_before\";i:59905;s:10:\"size_after\";i:57572;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8399999999999999;s:5:\"bytes\";i:1587;s:11:\"size_before\";i:32757;s:10:\"size_after\";i:31170;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1699999999999999;s:5:\"bytes\";i:1938;s:11:\"size_before\";i:46529;s:10:\"size_after\";i:44591;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3900000000000001;s:5:\"bytes\";i:3153;s:11:\"size_before\";i:93125;s:10:\"size_after\";i:89972;s:4:\"time\";d:0.050000000000000003;}}}'),(31140,651,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-45.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-45-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:\"mann-work-45-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-45-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-45-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-45-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:{}}}'),(31141,652,'_wp_attached_file','2019/12/mann-work-46.jpg'),(31142,632,'_wp_attachment_image_alt','HVAC units'),(31143,652,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.6878989879122428;s:5:\"bytes\";i:8625;s:11:\"size_before\";i:233873;s:10:\"size_after\";i:225248;s:4:\"time\";d:0.13;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:11.48;s:5:\"bytes\";i:787;s:11:\"size_before\";i:6855;s:10:\"size_after\";i:6068;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0800000000000001;s:5:\"bytes\";i:988;s:11:\"size_before\";i:16261;s:10:\"size_after\";i:15273;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3100000000000001;s:5:\"bytes\";i:1817;s:11:\"size_before\";i:54852;s:10:\"size_after\";i:53035;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0899999999999999;s:5:\"bytes\";i:1156;s:11:\"size_before\";i:28291;s:10:\"size_after\";i:27135;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.48;s:5:\"bytes\";i:1455;s:11:\"size_before\";i:41767;s:10:\"size_after\";i:40312;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8199999999999998;s:5:\"bytes\";i:2422;s:11:\"size_before\";i:85847;s:10:\"size_after\";i:83425;s:4:\"time\";d:0.029999999999999999;}}}'),(31144,652,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-46.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-46-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:\"mann-work-46-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-46-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-46-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-46-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:{}}}'),(31145,653,'_wp_attached_file','2019/12/mann-work-47.jpg'),(31146,633,'_wp_attachment_image_alt','ductwork'),(31147,634,'_wp_attachment_image_alt','HVAC units'),(31148,653,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.3149355690110234;s:5:\"bytes\";i:11117;s:11:\"size_before\";i:257640;s:10:\"size_after\";i:246523;s:4:\"time\";d:0.17000000000000001;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:10.380000000000001;s:5:\"bytes\";i:802;s:11:\"size_before\";i:7729;s:10:\"size_after\";i:6927;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8200000000000003;s:5:\"bytes\";i:1031;s:11:\"size_before\";i:17705;s:10:\"size_after\";i:16674;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6899999999999999;s:5:\"bytes\";i:2181;s:11:\"size_before\";i:59091;s:10:\"size_after\";i:56910;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5199999999999996;s:5:\"bytes\";i:1512;s:11:\"size_before\";i:33434;s:10:\"size_after\";i:31922;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1900000000000004;s:5:\"bytes\";i:2003;s:11:\"size_before\";i:47772;s:10:\"size_after\";i:45769;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8999999999999999;s:5:\"bytes\";i:3588;s:11:\"size_before\";i:91909;s:10:\"size_after\";i:88321;s:4:\"time\";d:0.040000000000000001;}}}'),(31149,653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-47.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-47-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:\"mann-work-47-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-47-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-47-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-47-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:{}}}'),(31150,654,'_wp_attached_file','2019/12/mann-work-48.jpg'),(31151,635,'_wp_attachment_image_alt','furnace'),(31152,654,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.6805827076752755;s:5:\"bytes\";i:8378;s:11:\"size_before\";i:227627;s:10:\"size_after\";i:219249;s:4:\"time\";d:0.20000000000000001;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:11.449999999999999;s:5:\"bytes\";i:788;s:11:\"size_before\";i:6881;s:10:\"size_after\";i:6093;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1699999999999999;s:5:\"bytes\";i:1002;s:11:\"size_before\";i:16247;s:10:\"size_after\";i:15245;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.25;s:5:\"bytes\";i:1729;s:11:\"size_before\";i:53131;s:10:\"size_after\";i:51402;s:4:\"time\";d:0.050000000000000003;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3099999999999996;s:5:\"bytes\";i:1222;s:11:\"size_before\";i:28354;s:10:\"size_after\";i:27132;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6099999999999999;s:5:\"bytes\";i:1470;s:11:\"size_before\";i:40709;s:10:\"size_after\";i:39239;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6299999999999999;s:5:\"bytes\";i:2167;s:11:\"size_before\";i:82305;s:10:\"size_after\";i:80138;s:4:\"time\";d:0.059999999999999998;}}}'),(31153,654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-48.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-48-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:\"mann-work-48-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-48-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-48-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-48-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:{}}}'),(31154,655,'_wp_attached_file','2019/12/mann-work-49.jpg'),(31155,636,'_wp_attachment_image_alt','pipe in trench'),(31156,655,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.4343978052811464;s:5:\"bytes\";i:10652;s:11:\"size_before\";i:240213;s:10:\"size_after\";i:229561;s:4:\"time\";d:0.20000000000000001;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:11.07;s:5:\"bytes\";i:831;s:11:\"size_before\";i:7510;s:10:\"size_after\";i:6679;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3700000000000001;s:5:\"bytes\";i:1089;s:11:\"size_before\";i:17085;s:10:\"size_after\";i:15996;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8700000000000001;s:5:\"bytes\";i:2145;s:11:\"size_before\";i:55395;s:10:\"size_after\";i:53250;s:4:\"time\";d:0.070000000000000007;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9100000000000001;s:5:\"bytes\";i:1570;s:11:\"size_before\";i:31989;s:10:\"size_after\";i:30419;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2000000000000002;s:5:\"bytes\";i:1858;s:11:\"size_before\";i:44247;s:10:\"size_after\";i:42389;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7599999999999998;s:5:\"bytes\";i:3159;s:11:\"size_before\";i:83987;s:10:\"size_after\";i:80828;s:4:\"time\";d:0.029999999999999999;}}}'),(31157,655,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-49.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-49-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:\"mann-work-49-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-49-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-49-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-49-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:{}}}'),(31158,656,'_wp_attached_file','2019/12/mann-work-50.jpg'),(31159,637,'_wp_attachment_image_alt','furnace'),(31160,638,'_wp_attachment_image_alt','HVAC unit'),(31161,656,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4960883191554535;s:5:\"bytes\";i:18659;s:11:\"size_before\";i:339496;s:10:\"size_after\";i:320837;s:4:\"time\";d:0.21000000000000002;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:11.98;s:5:\"bytes\";i:1023;s:11:\"size_before\";i:8542;s:10:\"size_after\";i:7519;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.75;s:5:\"bytes\";i:1692;s:11:\"size_before\";i:21834;s:10:\"size_after\";i:20142;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4900000000000002;s:5:\"bytes\";i:4573;s:11:\"size_before\";i:83253;s:10:\"size_after\";i:78680;s:4:\"time\";d:0.059999999999999998;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1699999999999999;s:5:\"bytes\";i:2658;s:11:\"size_before\";i:43112;s:10:\"size_after\";i:40454;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79;s:5:\"bytes\";i:3697;s:11:\"size_before\";i:63837;s:10:\"size_after\";i:60140;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2199999999999998;s:5:\"bytes\";i:5016;s:11:\"size_before\";i:118918;s:10:\"size_after\";i:113902;s:4:\"time\";d:0.040000000000000001;}}}'),(31162,656,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-50.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-50-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:\"mann-work-50-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-50-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-50-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-50-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:{}}}'),(31163,657,'_wp_attached_file','2019/12/mann-work-51.jpg'),(31164,657,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.9526202816606464;s:5:\"bytes\";i:13244;s:11:\"size_before\";i:267414;s:10:\"size_after\";i:254170;s:4:\"time\";d:0.14999999999999999;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:11.31;s:5:\"bytes\";i:793;s:11:\"size_before\";i:7009;s:10:\"size_after\";i:6216;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6600000000000001;s:5:\"bytes\";i:1053;s:11:\"size_before\";i:15809;s:10:\"size_after\";i:14756;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0899999999999999;s:5:\"bytes\";i:2374;s:11:\"size_before\";i:58046;s:10:\"size_after\";i:55672;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4699999999999998;s:5:\"bytes\";i:1885;s:11:\"size_before\";i:34481;s:10:\"size_after\";i:32596;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6900000000000004;s:5:\"bytes\";i:2195;s:11:\"size_before\";i:46824;s:10:\"size_after\";i:44629;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7000000000000002;s:5:\"bytes\";i:4944;s:11:\"size_before\";i:105245;s:10:\"size_after\";i:100301;s:4:\"time\";d:0.040000000000000001;}}}'),(31165,657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-51.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-51-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:\"mann-work-51-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-51-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-51-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-51-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:{}}}'),(31166,658,'_wp_attached_file','2019/12/mann-work-52.jpg'),(31167,658,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8264345055020819;s:5:\"bytes\";i:12601;s:11:\"size_before\";i:261083;s:10:\"size_after\";i:248482;s:4:\"time\";d:0.24999999999999997;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:10.98;s:5:\"bytes\";i:755;s:11:\"size_before\";i:6876;s:10:\"size_after\";i:6121;s:4:\"time\";d:0.080000000000000002;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7699999999999996;s:5:\"bytes\";i:1074;s:11:\"size_before\";i:15857;s:10:\"size_after\";i:14783;s:4:\"time\";d:0.040000000000000001;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9700000000000002;s:5:\"bytes\";i:2286;s:11:\"size_before\";i:57556;s:10:\"size_after\";i:55270;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6600000000000001;s:5:\"bytes\";i:1561;s:11:\"size_before\";i:33508;s:10:\"size_after\";i:31947;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2699999999999996;s:5:\"bytes\";i:2008;s:11:\"size_before\";i:46993;s:10:\"size_after\";i:44985;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9000000000000004;s:5:\"bytes\";i:4917;s:11:\"size_before\";i:100293;s:10:\"size_after\";i:95376;s:4:\"time\";d:0.070000000000000007;}}}'),(31168,658,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-52.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-52-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:\"mann-work-52-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-52-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-52-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-52-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:{}}}'),(31169,659,'_wp_attached_file','2019/12/mann-work-53.jpg'),(31170,639,'_wp_attachment_image_alt','excavation'),(31171,659,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.9252265236989228;s:5:\"bytes\";i:10730;s:11:\"size_before\";i:217858;s:10:\"size_after\";i:207128;s:4:\"time\";d:0.15000000000000002;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.369999999999999;s:5:\"bytes\";i:724;s:11:\"size_before\";i:5851;s:10:\"size_after\";i:5127;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2800000000000002;s:5:\"bytes\";i:861;s:11:\"size_before\";i:13703;s:10:\"size_after\";i:12842;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3999999999999999;s:5:\"bytes\";i:1680;s:11:\"size_before\";i:49361;s:10:\"size_after\";i:47681;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6799999999999997;s:5:\"bytes\";i:1187;s:11:\"size_before\";i:25377;s:10:\"size_after\";i:24190;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6200000000000001;s:5:\"bytes\";i:1324;s:11:\"size_before\";i:36583;s:10:\"size_after\";i:35259;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7000000000000002;s:5:\"bytes\";i:4954;s:11:\"size_before\";i:86983;s:10:\"size_after\";i:82029;s:4:\"time\";d:0.050000000000000003;}}}'),(31172,659,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-53.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-53-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:\"mann-work-53-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-53-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-53-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-53-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:{}}}'),(31173,640,'_wp_attachment_image_alt','excavation'),(31174,660,'_wp_attached_file','2019/12/mann-work-54.jpg'),(31175,641,'_wp_attachment_image_alt','HVAC unit'),(31176,660,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7184057738440588;s:5:\"bytes\";i:11467;s:11:\"size_before\";i:243027;s:10:\"size_after\";i:231560;s:4:\"time\";d:0.15000000000000002;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.06;s:5:\"bytes\";i:852;s:11:\"size_before\";i:7063;s:10:\"size_after\";i:6211;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.54;s:5:\"bytes\";i:1038;s:11:\"size_before\";i:15866;s:10:\"size_after\";i:14828;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7999999999999998;s:5:\"bytes\";i:2062;s:11:\"size_before\";i:54318;s:10:\"size_after\";i:52256;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0300000000000002;s:5:\"bytes\";i:1569;s:11:\"size_before\";i:31204;s:10:\"size_after\";i:29635;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2699999999999996;s:5:\"bytes\";i:1821;s:11:\"size_before\";i:42682;s:10:\"size_after\";i:40861;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002;s:5:\"bytes\";i:4125;s:11:\"size_before\";i:91894;s:10:\"size_after\";i:87769;s:4:\"time\";d:0.029999999999999999;}}}'),(31177,660,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-54.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-54-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:\"mann-work-54-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-54-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-54-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-54-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:{}}}'),(31178,661,'_wp_attached_file','2019/12/mann-work-55.jpg'),(31179,642,'_wp_attachment_image_alt','furnace unit'),(31180,661,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.9986851762452558;s:5:\"bytes\";i:12736;s:11:\"size_before\";i:254787;s:10:\"size_after\";i:242051;s:4:\"time\";d:0.13;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:11.460000000000001;s:5:\"bytes\";i:766;s:11:\"size_before\";i:6686;s:10:\"size_after\";i:5920;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8700000000000001;s:5:\"bytes\";i:1127;s:11:\"size_before\";i:16394;s:10:\"size_after\";i:15267;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54;s:5:\"bytes\";i:2826;s:11:\"size_before\";i:62265;s:10:\"size_after\";i:59439;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3700000000000001;s:5:\"bytes\";i:1801;s:11:\"size_before\";i:33555;s:10:\"size_after\";i:31754;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8399999999999999;s:5:\"bytes\";i:2364;s:11:\"size_before\";i:48804;s:10:\"size_after\";i:46440;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4199999999999999;s:5:\"bytes\";i:3852;s:11:\"size_before\";i:87083;s:10:\"size_after\";i:83231;s:4:\"time\";d:0.029999999999999999;}}}'),(31181,661,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-55.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-55-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:\"mann-work-55-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-55-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-55-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-55-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:{}}}'),(31182,662,'_wp_attached_file','2019/12/mann-work-56.jpg'),(31183,643,'_wp_attachment_image_alt','lifting unit'),(31184,645,'_wp_attachment_image_alt','HVAC unit'),(31185,662,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1056583662068347;s:5:\"bytes\";i:8628;s:11:\"size_before\";i:210149;s:10:\"size_after\";i:201521;s:4:\"time\";d:0.15000000000000002;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.289999999999999;s:5:\"bytes\";i:754;s:11:\"size_before\";i:6134;s:10:\"size_after\";i:5380;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6500000000000004;s:5:\"bytes\";i:955;s:11:\"size_before\";i:14357;s:10:\"size_after\";i:13402;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8799999999999999;s:5:\"bytes\";i:1393;s:11:\"size_before\";i:48452;s:10:\"size_after\";i:47059;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5899999999999999;s:5:\"bytes\";i:876;s:11:\"size_before\";i:24374;s:10:\"size_after\";i:23498;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8799999999999999;s:5:\"bytes\";i:1082;s:11:\"size_before\";i:37538;s:10:\"size_after\";i:36456;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5;s:5:\"bytes\";i:3568;s:11:\"size_before\";i:79294;s:10:\"size_after\";i:75726;s:4:\"time\";d:0.070000000000000007;}}}'),(31186,662,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-56.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-56-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:\"mann-work-56-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-56-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-56-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-56-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:{}}}'),(31187,663,'_wp_attached_file','2019/12/mann-work-57.jpg'),(31188,663,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.5137688271796161;s:5:\"bytes\";i:7709;s:11:\"size_before\";i:306671;s:10:\"size_after\";i:298962;s:4:\"time\";d:0.26000000000000001;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.199999999999999;s:5:\"bytes\";i:685;s:11:\"size_before\";i:5191;s:10:\"size_after\";i:4506;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0199999999999996;s:5:\"bytes\";i:696;s:11:\"size_before\";i:11568;s:10:\"size_after\";i:10872;s:4:\"time\";d:0.040000000000000001;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3100000000000001;s:5:\"bytes\";i:640;s:11:\"size_before\";i:48960;s:10:\"size_after\";i:48320;s:4:\"time\";d:0.02;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61267;s:10:\"size_after\";i:61267;s:4:\"time\";d:0.040000000000000001;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:48320;s:10:\"size_after\";i:48320;s:4:\"time\";d:0.040000000000000001;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3199999999999998;s:5:\"bytes\";i:781;s:11:\"size_before\";i:23499;s:10:\"size_after\";i:22718;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5099999999999998;s:5:\"bytes\";i:772;s:11:\"size_before\";i:21967;s:10:\"size_after\";i:21195;s:4:\"time\";d:0.040000000000000001;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7599999999999998;s:5:\"bytes\";i:794;s:11:\"size_before\";i:28791;s:10:\"size_after\";i:27997;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8499999999999996;s:5:\"bytes\";i:3341;s:11:\"size_before\";i:57108;s:10:\"size_after\";i:53767;s:4:\"time\";d:0.029999999999999999;}}}'),(31189,663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2019/12/mann-work-57.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-57-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:\"mann-work-57-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"mann-work-57-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:24:\"mann-work-57-960x720.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"mann-work-57-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-57-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-57-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-57-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:{}}}'),(31190,664,'_wp_attached_file','2019/12/mann-work-58.jpg'),(31191,664,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.413652712795741;s:5:\"bytes\";i:7194;s:11:\"size_before\";i:210742;s:10:\"size_after\";i:203548;s:4:\"time\";d:0.17999999999999999;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:11.74;s:5:\"bytes\";i:841;s:11:\"size_before\";i:7162;s:10:\"size_after\";i:6321;s:4:\"time\";d:0.070000000000000007;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5599999999999996;s:5:\"bytes\";i:1046;s:11:\"size_before\";i:15945;s:10:\"size_after\";i:14899;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8900000000000001;s:5:\"bytes\";i:1427;s:11:\"size_before\";i:49412;s:10:\"size_after\";i:47985;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.77;s:5:\"bytes\";i:1002;s:11:\"size_before\";i:26549;s:10:\"size_after\";i:25547;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3500000000000001;s:5:\"bytes\";i:1320;s:11:\"size_before\";i:39346;s:10:\"size_after\";i:38026;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.1499999999999999;s:5:\"bytes\";i:1558;s:11:\"size_before\";i:72328;s:10:\"size_after\";i:70770;s:4:\"time\";d:0.029999999999999999;}}}'),(31192,664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-58.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-58-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:\"mann-work-58-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-58-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-58-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-58-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:{}}}'),(31193,665,'_wp_attached_file','2019/12/mann-work-59.jpg'),(31194,646,'_wp_attachment_image_alt','pipes'),(31195,665,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.7143967275749299;s:5:\"bytes\";i:6883;s:11:\"size_before\";i:185306;s:10:\"size_after\";i:178423;s:4:\"time\";d:0.17999999999999999;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.109999999999999;s:5:\"bytes\";i:809;s:11:\"size_before\";i:6683;s:10:\"size_after\";i:5874;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0999999999999996;s:5:\"bytes\";i:1008;s:11:\"size_before\";i:14203;s:10:\"size_after\";i:13195;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9399999999999999;s:5:\"bytes\";i:1259;s:11:\"size_before\";i:42884;s:10:\"size_after\";i:41625;s:4:\"time\";d:0.050000000000000003;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2000000000000002;s:5:\"bytes\";i:1065;s:11:\"size_before\";i:25340;s:10:\"size_after\";i:24275;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3999999999999999;s:5:\"bytes\";i:1203;s:11:\"size_before\";i:35413;s:10:\"size_after\";i:34210;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5299999999999998;s:5:\"bytes\";i:1539;s:11:\"size_before\";i:60783;s:10:\"size_after\";i:59244;s:4:\"time\";d:0.059999999999999998;}}}'),(31196,665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-59.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-59-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:\"mann-work-59-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-59-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-59-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-59-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:{}}}'),(31197,666,'_wp_attached_file','2019/12/mann-work-60.jpg'),(31198,666,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.998223998223998;s:5:\"bytes\";i:7204;s:11:\"size_before\";i:180180;s:10:\"size_after\";i:172976;s:4:\"time\";d:0.14000000000000001;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:11.84;s:5:\"bytes\";i:731;s:11:\"size_before\";i:6172;s:10:\"size_after\";i:5441;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8099999999999996;s:5:\"bytes\";i:760;s:11:\"size_before\";i:13071;s:10:\"size_after\";i:12311;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.1800000000000002;s:5:\"bytes\";i:868;s:11:\"size_before\";i:39908;s:10:\"size_after\";i:39040;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7799999999999998;s:5:\"bytes\";i:1008;s:11:\"size_before\";i:26668;s:10:\"size_after\";i:25660;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8700000000000001;s:5:\"bytes\";i:955;s:11:\"size_before\";i:33251;s:10:\"size_after\";i:32296;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7199999999999998;s:5:\"bytes\";i:2882;s:11:\"size_before\";i:61110;s:10:\"size_after\";i:58228;s:4:\"time\";d:0.050000000000000003;}}}'),(31199,666,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-60.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-60-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:\"mann-work-60-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-60-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-60-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-60-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:{}}}'),(31200,667,'_wp_attached_file','2019/12/mann-work-61.jpg'),(31201,647,'_wp_attachment_image_alt','Mann Plumbing truck'),(31202,667,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8447633045196756;s:5:\"bytes\";i:11669;s:11:\"size_before\";i:240858;s:10:\"size_after\";i:229189;s:4:\"time\";d:0.17000000000000001;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.68;s:5:\"bytes\";i:785;s:11:\"size_before\";i:6193;s:10:\"size_after\";i:5408;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6500000000000004;s:5:\"bytes\";i:997;s:11:\"size_before\";i:14999;s:10:\"size_after\";i:14002;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8900000000000001;s:5:\"bytes\";i:2147;s:11:\"size_before\";i:55230;s:10:\"size_after\";i:53083;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:1450;s:11:\"size_before\";i:28995;s:10:\"size_after\";i:27545;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1200000000000001;s:5:\"bytes\";i:1762;s:11:\"size_before\";i:42809;s:10:\"size_after\";i:41047;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8899999999999997;s:5:\"bytes\";i:4528;s:11:\"size_before\";i:92632;s:10:\"size_after\";i:88104;s:4:\"time\";d:0.050000000000000003;}}}'),(31203,667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-61.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-61-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:\"mann-work-61-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-61-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-61-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-61-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:{}}}'),(31204,668,'_wp_attached_file','2019/12/mann-work-62.jpg'),(31205,648,'_wp_attachment_image_alt','pipes'),(31206,668,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.164278292111613;s:5:\"bytes\";i:5390;s:11:\"size_before\";i:170339;s:10:\"size_after\";i:164949;s:4:\"time\";d:0.16000000000000003;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:11.68;s:5:\"bytes\";i:772;s:11:\"size_before\";i:6610;s:10:\"size_after\";i:5838;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.25;s:5:\"bytes\";i:858;s:11:\"size_before\";i:13730;s:10:\"size_after\";i:12872;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.02;s:5:\"bytes\";i:793;s:11:\"size_before\";i:39163;s:10:\"size_after\";i:38370;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3799999999999999;s:5:\"bytes\";i:791;s:11:\"size_before\";i:23404;s:10:\"size_after\";i:22613;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.54;s:5:\"bytes\";i:817;s:11:\"size_before\";i:32144;s:10:\"size_after\";i:31327;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.46;s:5:\"bytes\";i:1359;s:11:\"size_before\";i:55288;s:10:\"size_after\";i:53929;s:4:\"time\";d:0.050000000000000003;}}}'),(31207,668,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-62.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-62-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:\"mann-work-62-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-62-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-62-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-62-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:{}}}'),(31208,669,'_wp_attached_file','2019/12/mann-work-63.jpg'),(31209,649,'_wp_attachment_image_alt','excavating'),(31210,669,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.6667651694247438;s:5:\"bytes\";i:8934;s:11:\"size_before\";i:243648;s:10:\"size_after\";i:234714;s:4:\"time\";d:0.13;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:11.460000000000001;s:5:\"bytes\";i:770;s:11:\"size_before\";i:6719;s:10:\"size_after\";i:5949;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.71;s:5:\"bytes\";i:873;s:11:\"size_before\";i:15294;s:10:\"size_after\";i:14421;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4300000000000002;s:5:\"bytes\";i:1328;s:11:\"size_before\";i:54730;s:10:\"size_after\";i:53402;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6899999999999999;s:5:\"bytes\";i:1201;s:11:\"size_before\";i:32517;s:10:\"size_after\";i:31316;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7599999999999998;s:5:\"bytes\";i:1258;s:11:\"size_before\";i:45652;s:10:\"size_after\";i:44394;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9500000000000002;s:5:\"bytes\";i:3504;s:11:\"size_before\";i:88736;s:10:\"size_after\";i:85232;s:4:\"time\";d:0.040000000000000001;}}}'),(31211,669,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-63.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-63-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:\"mann-work-63-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-63-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-63-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-63-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:{}}}'),(31212,670,'_wp_attached_file','2019/12/mann-work-64.jpg'),(31213,670,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.5373702741821242;s:5:\"bytes\";i:6892;s:11:\"size_before\";i:194834;s:10:\"size_after\";i:187942;s:4:\"time\";d:0.12;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:10.81;s:5:\"bytes\";i:740;s:11:\"size_before\";i:6845;s:10:\"size_after\";i:6105;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4299999999999997;s:5:\"bytes\";i:772;s:11:\"size_before\";i:14218;s:10:\"size_after\";i:13446;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8600000000000001;s:5:\"bytes\";i:811;s:11:\"size_before\";i:43489;s:10:\"size_after\";i:42678;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29;s:5:\"bytes\";i:866;s:11:\"size_before\";i:26299;s:10:\"size_after\";i:25433;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.3599999999999999;s:5:\"bytes\";i:853;s:11:\"size_before\";i:36184;s:10:\"size_after\";i:35331;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2000000000000002;s:5:\"bytes\";i:2850;s:11:\"size_before\";i:67799;s:10:\"size_after\";i:64949;s:4:\"time\";d:0.029999999999999999;}}}'),(31214,670,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-64.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-64-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:\"mann-work-64-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-64-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-64-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-64-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:{}}}'),(31215,671,'_wp_attached_file','2019/12/mann-work-65.jpg'),(31216,671,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.4698478196546949;s:5:\"bytes\";i:11179;s:11:\"size_before\";i:250098;s:10:\"size_after\";i:238919;s:4:\"time\";d:0.14000000000000001;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:11.859999999999999;s:5:\"bytes\";i:861;s:11:\"size_before\";i:7261;s:10:\"size_after\";i:6400;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6500000000000004;s:5:\"bytes\";i:1104;s:11:\"size_before\";i:16603;s:10:\"size_after\";i:15499;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5600000000000001;s:5:\"bytes\";i:2020;s:11:\"size_before\";i:56704;s:10:\"size_after\";i:54684;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8200000000000003;s:5:\"bytes\";i:1517;s:11:\"size_before\";i:31441;s:10:\"size_after\";i:29924;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0099999999999998;s:5:\"bytes\";i:1809;s:11:\"size_before\";i:45106;s:10:\"size_after\";i:43297;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1600000000000001;s:5:\"bytes\";i:3868;s:11:\"size_before\";i:92983;s:10:\"size_after\";i:89115;s:4:\"time\";d:0.040000000000000001;}}}'),(31217,671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-65.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-65-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:\"mann-work-65-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-65-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-65-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-65-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:{}}}'),(31218,672,'_wp_attached_file','2019/12/mann-work-66.jpg'),(31219,672,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.2208377661972341;s:5:\"bytes\";i:9363;s:11:\"size_before\";i:221828;s:10:\"size_after\";i:212465;s:4:\"time\";d:0.14000000000000001;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.17;s:5:\"bytes\";i:818;s:11:\"size_before\";i:6719;s:10:\"size_after\";i:5901;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9400000000000004;s:5:\"bytes\";i:1066;s:11:\"size_before\";i:15352;s:10:\"size_after\";i:14286;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5699999999999998;s:5:\"bytes\";i:1826;s:11:\"size_before\";i:51213;s:10:\"size_after\";i:49387;s:4:\"time\";d:0.050000000000000003;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4400000000000004;s:5:\"bytes\";i:1214;s:11:\"size_before\";i:27317;s:10:\"size_after\";i:26103;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8100000000000001;s:5:\"bytes\";i:1543;s:11:\"size_before\";i:40500;s:10:\"size_after\";i:38957;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5899999999999999;s:5:\"bytes\";i:2896;s:11:\"size_before\";i:80727;s:10:\"size_after\";i:77831;s:4:\"time\";d:0.029999999999999999;}}}'),(31220,672,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-66.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-66-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:\"mann-work-66-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-66-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-66-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-66-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:{}}}'),(31221,673,'_wp_attached_file','2019/12/mann-work-67.jpg'),(31222,673,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.5509840349207789;s:5:\"bytes\";i:7053;s:11:\"size_before\";i:198621;s:10:\"size_after\";i:191568;s:4:\"time\";d:0.19;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:11.25;s:5:\"bytes\";i:756;s:11:\"size_before\";i:6719;s:10:\"size_after\";i:5963;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000004;s:5:\"bytes\";i:942;s:11:\"size_before\";i:14727;s:10:\"size_after\";i:13785;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.95;s:5:\"bytes\";i:876;s:11:\"size_before\";i:44852;s:10:\"size_after\";i:43976;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6000000000000001;s:5:\"bytes\";i:983;s:11:\"size_before\";i:27325;s:10:\"size_after\";i:26342;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5899999999999999;s:5:\"bytes\";i:932;s:11:\"size_before\";i:36022;s:10:\"size_after\";i:35090;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7200000000000002;s:5:\"bytes\";i:2564;s:11:\"size_before\";i:68976;s:10:\"size_after\";i:66412;s:4:\"time\";d:0.080000000000000002;}}}'),(31223,673,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-67.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-67-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:\"mann-work-67-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-67-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-67-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-67-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:{}}}'),(31224,674,'_wp_attached_file','2019/12/mann-work-68.jpg'),(31225,674,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.770830293575167;s:5:\"bytes\";i:12752;s:11:\"size_before\";i:267291;s:10:\"size_after\";i:254539;s:4:\"time\";d:0.14000000000000001;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:10.619999999999999;s:5:\"bytes\";i:712;s:11:\"size_before\";i:6707;s:10:\"size_after\";i:5995;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1100000000000003;s:5:\"bytes\";i:1017;s:11:\"size_before\";i:16636;s:10:\"size_after\";i:15619;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9500000000000002;s:5:\"bytes\";i:2416;s:11:\"size_before\";i:61218;s:10:\"size_after\";i:58802;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1799999999999997;s:5:\"bytes\";i:1669;s:11:\"size_before\";i:32236;s:10:\"size_after\";i:30567;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7000000000000002;s:5:\"bytes\";i:2261;s:11:\"size_before\";i:48098;s:10:\"size_after\";i:45837;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5700000000000003;s:5:\"bytes\";i:4677;s:11:\"size_before\";i:102396;s:10:\"size_after\";i:97719;s:4:\"time\";d:0.040000000000000001;}}}'),(31226,674,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-68.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-68-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:\"mann-work-68-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-68-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-68-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-68-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:{}}}'),(31227,675,'_wp_attached_file','2019/12/mann-work-69.jpg'),(31228,675,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.5513273349196908;s:5:\"bytes\";i:9793;s:11:\"size_before\";i:215168;s:10:\"size_after\";i:205375;s:4:\"time\";d:0.13;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.43;s:5:\"bytes\";i:794;s:11:\"size_before\";i:6387;s:10:\"size_after\";i:5593;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4800000000000004;s:5:\"bytes\";i:937;s:11:\"size_before\";i:14450;s:10:\"size_after\";i:13513;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7999999999999998;s:5:\"bytes\";i:1871;s:11:\"size_before\";i:49242;s:10:\"size_after\";i:47371;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3600000000000003;s:5:\"bytes\";i:1156;s:11:\"size_before\";i:26542;s:10:\"size_after\";i:25386;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8900000000000001;s:5:\"bytes\";i:1498;s:11:\"size_before\";i:38501;s:10:\"size_after\";i:37003;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4199999999999999;s:5:\"bytes\";i:3537;s:11:\"size_before\";i:80046;s:10:\"size_after\";i:76509;s:4:\"time\";d:0.040000000000000001;}}}'),(31229,675,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-69.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-69-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:\"mann-work-69-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-69-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-69-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-69-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:{}}}'),(31230,676,'_wp_attached_file','2019/12/mann-work-70.jpg'),(31231,676,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.9791318064096686;s:5:\"bytes\";i:7467;s:11:\"size_before\";i:187654;s:10:\"size_after\";i:180187;s:4:\"time\";d:0.16999999999999998;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:10.91;s:5:\"bytes\";i:815;s:11:\"size_before\";i:7467;s:10:\"size_after\";i:6652;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0599999999999996;s:5:\"bytes\";i:926;s:11:\"size_before\";i:15269;s:10:\"size_after\";i:14343;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6200000000000001;s:5:\"bytes\";i:1134;s:11:\"size_before\";i:43217;s:10:\"size_after\";i:42083;s:4:\"time\";d:0.059999999999999998;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6800000000000002;s:5:\"bytes\";i:873;s:11:\"size_before\";i:23712;s:10:\"size_after\";i:22839;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0499999999999998;s:5:\"bytes\";i:1071;s:11:\"size_before\";i:35092;s:10:\"size_after\";i:34021;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.21;s:5:\"bytes\";i:2648;s:11:\"size_before\";i:62897;s:10:\"size_after\";i:60249;s:4:\"time\";d:0.029999999999999999;}}}'),(31232,676,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-70.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-70-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:\"mann-work-70-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-70-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-70-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-70-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:{}}}'),(31233,677,'_wp_attached_file','2019/12/mann-work-71.jpg'),(31234,677,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1345738704505575;s:5:\"bytes\";i:16269;s:11:\"size_before\";i:316852;s:10:\"size_after\";i:300583;s:4:\"time\";d:0.32000000000000001;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:11.619999999999999;s:5:\"bytes\";i:962;s:11:\"size_before\";i:8280;s:10:\"size_after\";i:7318;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6500000000000004;s:5:\"bytes\";i:1523;s:11:\"size_before\";i:19919;s:10:\"size_after\";i:18396;s:4:\"time\";d:0.17000000000000001;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1399999999999997;s:5:\"bytes\";i:3855;s:11:\"size_before\";i:74959;s:10:\"size_after\";i:71104;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6600000000000001;s:5:\"bytes\";i:2450;s:11:\"size_before\";i:43265;s:10:\"size_after\";i:40815;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3099999999999996;s:5:\"bytes\";i:3231;s:11:\"size_before\";i:60852;s:10:\"size_after\";i:57621;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8799999999999999;s:5:\"bytes\";i:4248;s:11:\"size_before\";i:109577;s:10:\"size_after\";i:105329;s:4:\"time\";d:0.050000000000000003;}}}'),(31235,677,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-71.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-71-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:\"mann-work-71-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-71-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-71-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-71-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:{}}}'),(31236,678,'_wp_attached_file','2019/12/mann-work-72.jpg'),(31237,678,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.5520052752190887;s:5:\"bytes\";i:13640;s:11:\"size_before\";i:245677;s:10:\"size_after\";i:232037;s:4:\"time\";d:0.20000000000000001;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:11.6;s:5:\"bytes\";i:774;s:11:\"size_before\";i:6672;s:10:\"size_after\";i:5898;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4100000000000001;s:5:\"bytes\";i:1166;s:11:\"size_before\";i:15738;s:10:\"size_after\";i:14572;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2000000000000002;s:5:\"bytes\";i:3036;s:11:\"size_before\";i:58335;s:10:\"size_after\";i:55299;s:4:\"time\";d:0.050000000000000003;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3799999999999999;s:5:\"bytes\";i:1879;s:11:\"size_before\";i:34948;s:10:\"size_after\";i:33069;s:4:\"time\";d:0.040000000000000001;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3099999999999996;s:5:\"bytes\";i:2491;s:11:\"size_before\";i:46949;s:10:\"size_after\";i:44458;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1699999999999999;s:5:\"bytes\";i:4294;s:11:\"size_before\";i:83035;s:10:\"size_after\";i:78741;s:4:\"time\";d:0.040000000000000001;}}}'),(31238,678,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-72.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-72-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:\"mann-work-72-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-72-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-72-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-72-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:{}}}'),(31239,679,'_wp_attached_file','2019/12/mann-work-73.jpg'),(31240,679,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1906695613914877;s:5:\"bytes\";i:14393;s:11:\"size_before\";i:277286;s:10:\"size_after\";i:262893;s:4:\"time\";d:0.14000000000000001;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:11.59;s:5:\"bytes\";i:831;s:11:\"size_before\";i:7169;s:10:\"size_after\";i:6338;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2300000000000004;s:5:\"bytes\";i:1295;s:11:\"size_before\";i:17907;s:10:\"size_after\";i:16612;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0700000000000003;s:5:\"bytes\";i:3402;s:11:\"size_before\";i:67132;s:10:\"size_after\";i:63730;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6600000000000001;s:5:\"bytes\";i:2043;s:11:\"size_before\";i:36076;s:10:\"size_after\";i:34033;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2400000000000002;s:5:\"bytes\";i:2693;s:11:\"size_before\";i:51418;s:10:\"size_after\";i:48725;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2300000000000004;s:5:\"bytes\";i:4129;s:11:\"size_before\";i:97584;s:10:\"size_after\";i:93455;s:4:\"time\";d:0.029999999999999999;}}}'),(31241,679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-73.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-73-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:\"mann-work-73-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-73-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-73-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-73-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:{}}}'),(31242,680,'_wp_attached_file','2019/12/mann-work-74.jpg'),(31243,680,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6824503352192419;s:5:\"bytes\";i:13790;s:11:\"size_before\";i:242677;s:10:\"size_after\";i:228887;s:4:\"time\";d:0.13;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:11.82;s:5:\"bytes\";i:837;s:11:\"size_before\";i:7083;s:10:\"size_after\";i:6246;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0599999999999996;s:5:\"bytes\";i:1042;s:11:\"size_before\";i:14767;s:10:\"size_after\";i:13725;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8399999999999999;s:5:\"bytes\";i:2494;s:11:\"size_before\";i:51565;s:10:\"size_after\";i:49071;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6100000000000003;s:5:\"bytes\";i:1940;s:11:\"size_before\";i:34585;s:10:\"size_after\";i:32645;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0700000000000003;s:5:\"bytes\";i:2311;s:11:\"size_before\";i:45574;s:10:\"size_after\";i:43263;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7999999999999998;s:5:\"bytes\";i:5166;s:11:\"size_before\";i:89103;s:10:\"size_after\";i:83937;s:4:\"time\";d:0.040000000000000001;}}}'),(31244,680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-74.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-74-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:\"mann-work-74-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-74-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-74-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-74-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:{}}}'),(31245,681,'_wp_attached_file','2019/12/mann-work-75.jpg'),(31246,681,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7690397860320015;s:5:\"bytes\";i:13177;s:11:\"size_before\";i:276303;s:10:\"size_after\";i:263126;s:4:\"time\";d:0.23999999999999999;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:11.16;s:5:\"bytes\";i:858;s:11:\"size_before\";i:7691;s:10:\"size_after\";i:6833;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9800000000000004;s:5:\"bytes\";i:1273;s:11:\"size_before\";i:18239;s:10:\"size_after\";i:16966;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2199999999999998;s:5:\"bytes\";i:2794;s:11:\"size_before\";i:66269;s:10:\"size_after\";i:63475;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8099999999999996;s:5:\"bytes\";i:1814;s:11:\"size_before\";i:37708;s:10:\"size_after\";i:35894;s:4:\"time\";d:0.11;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4299999999999997;s:5:\"bytes\";i:2333;s:11:\"size_before\";i:52676;s:10:\"size_after\";i:50343;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3799999999999999;s:5:\"bytes\";i:4105;s:11:\"size_before\";i:93720;s:10:\"size_after\";i:89615;s:4:\"time\";d:0.040000000000000001;}}}'),(31247,681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-75.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-75-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:\"mann-work-75-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-75-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-75-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-75-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:{}}}'),(31248,682,'_wp_attached_file','2019/12/mann-work-76.jpg'),(31249,682,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.3713035176253241;s:5:\"bytes\";i:7051;s:11:\"size_before\";i:161302;s:10:\"size_after\";i:154251;s:4:\"time\";d:0.14000000000000001;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:13.199999999999999;s:5:\"bytes\";i:701;s:11:\"size_before\";i:5312;s:10:\"size_after\";i:4611;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6900000000000004;s:5:\"bytes\";i:741;s:11:\"size_before\";i:11073;s:10:\"size_after\";i:10332;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.1899999999999999;s:5:\"bytes\";i:794;s:11:\"size_before\";i:36303;s:10:\"size_after\";i:35509;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1699999999999999;s:5:\"bytes\";i:715;s:11:\"size_before\";i:22558;s:10:\"size_after\";i:21843;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4399999999999999;s:5:\"bytes\";i:726;s:11:\"size_before\";i:29775;s:10:\"size_after\";i:29049;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9900000000000002;s:5:\"bytes\";i:3374;s:11:\"size_before\";i:56281;s:10:\"size_after\";i:52907;s:4:\"time\";d:0.029999999999999999;}}}'),(31250,682,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-76.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-76-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:\"mann-work-76-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-76-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-76-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-76-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:{}}}'),(31251,683,'_wp_attached_file','2019/12/mann-work-77.jpg'),(31252,683,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.3778503850535118;s:5:\"bytes\";i:6972;s:11:\"size_before\";i:293206;s:10:\"size_after\";i:286234;s:4:\"time\";d:0.29000000000000004;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:12.92;s:5:\"bytes\";i:682;s:11:\"size_before\";i:5277;s:10:\"size_after\";i:4595;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2300000000000004;s:5:\"bytes\";i:702;s:11:\"size_before\";i:11276;s:10:\"size_after\";i:10574;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1399999999999999;s:5:\"bytes\";i:535;s:11:\"size_before\";i:46883;s:10:\"size_after\";i:46348;s:4:\"time\";d:0.070000000000000007;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:57503;s:10:\"size_after\";i:57503;s:4:\"time\";d:0.059999999999999998;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:46348;s:10:\"size_after\";i:46348;s:4:\"time\";d:0.050000000000000003;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8100000000000001;s:5:\"bytes\";i:639;s:11:\"size_before\";i:22770;s:10:\"size_after\";i:22131;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0899999999999999;s:5:\"bytes\";i:646;s:11:\"size_before\";i:20936;s:10:\"size_after\";i:20290;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.1000000000000001;s:5:\"bytes\";i:599;s:11:\"size_before\";i:28538;s:10:\"size_after\";i:27939;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9000000000000004;s:5:\"bytes\";i:3169;s:11:\"size_before\";i:53675;s:10:\"size_after\";i:50506;s:4:\"time\";d:0.029999999999999999;}}}'),(31253,683,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2019/12/mann-work-77.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-77-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:\"mann-work-77-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"mann-work-77-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:24:\"mann-work-77-960x720.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"mann-work-77-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-77-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-77-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-77-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:{}}}'),(31254,684,'_wp_attached_file','2019/12/mann-work-78.jpg'),(31255,684,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1247630224790104;s:5:\"bytes\";i:4569;s:11:\"size_before\";i:110770;s:10:\"size_after\";i:106201;s:4:\"time\";d:0.15000000000000002;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:13.81;s:5:\"bytes\";i:585;s:11:\"size_before\";i:4235;s:10:\"size_after\";i:3650;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2599999999999998;s:5:\"bytes\";i:484;s:11:\"size_before\";i:9199;s:10:\"size_after\";i:8715;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.40000000000000002;s:5:\"bytes\";i:108;s:11:\"size_before\";i:26872;s:10:\"size_after\";i:26764;s:4:\"time\";d:0.050000000000000003;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8;s:5:\"bytes\";i:219;s:11:\"size_before\";i:12153;s:10:\"size_after\";i:11934;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.28999999999999998;s:5:\"bytes\";i:56;s:11:\"size_before\";i:19019;s:10:\"size_after\";i:18963;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9299999999999997;s:5:\"bytes\";i:3117;s:11:\"size_before\";i:39292;s:10:\"size_after\";i:36175;s:4:\"time\";d:0.029999999999999999;}}}'),(31256,684,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-78.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-78-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:\"mann-work-78-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-78-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-78-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-78-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:{}}}'),(31257,685,'_wp_attached_file','2019/12/mann-work-79.jpg'),(31258,685,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.5699425813430974;s:5:\"bytes\";i:5148;s:11:\"size_before\";i:144204;s:10:\"size_after\";i:139056;s:4:\"time\";d:0.12;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:13.130000000000001;s:5:\"bytes\";i:656;s:11:\"size_before\";i:4997;s:10:\"size_after\";i:4341;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8099999999999996;s:5:\"bytes\";i:625;s:11:\"size_before\";i:10760;s:10:\"size_after\";i:10135;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.29;s:5:\"bytes\";i:436;s:11:\"size_before\";i:33670;s:10:\"size_after\";i:33234;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4900000000000002;s:5:\"bytes\";i:437;s:11:\"size_before\";i:17570;s:10:\"size_after\";i:17133;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6200000000000001;s:5:\"bytes\";i:425;s:11:\"size_before\";i:26204;s:10:\"size_after\";i:25779;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04;s:5:\"bytes\";i:2569;s:11:\"size_before\";i:51003;s:10:\"size_after\";i:48434;s:4:\"time\";d:0.029999999999999999;}}}'),(31259,685,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-79.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-79-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:\"mann-work-79-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-79-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-79-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-79-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:{}}}'),(31260,686,'_wp_attached_file','2019/12/mann-work-80.jpg'),(31261,686,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1294598720270814;s:5:\"bytes\";i:5221;s:11:\"size_before\";i:126433;s:10:\"size_after\";i:121212;s:4:\"time\";d:0.16000000000000003;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:13.27;s:5:\"bytes\";i:634;s:11:\"size_before\";i:4778;s:10:\"size_after\";i:4144;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7199999999999998;s:5:\"bytes\";i:636;s:11:\"size_before\";i:11120;s:10:\"size_after\";i:10484;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.48;s:5:\"bytes\";i:471;s:11:\"size_before\";i:31807;s:10:\"size_after\";i:31336;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.02;s:5:\"bytes\";i:379;s:11:\"size_before\";i:12534;s:10:\"size_after\";i:12155;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5600000000000001;s:5:\"bytes\";i:339;s:11:\"size_before\";i:21668;s:10:\"size_after\";i:21329;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2000000000000002;s:5:\"bytes\";i:2762;s:11:\"size_before\";i:44526;s:10:\"size_after\";i:41764;s:4:\"time\";d:0.050000000000000003;}}}'),(31262,686,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-80.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-80-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:\"mann-work-80-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-80-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-80-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-80-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:{}}}'),(31263,687,'_wp_attached_file','2019/12/mann-work-81.jpg'),(31264,687,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1837976699965784;s:5:\"bytes\";i:7459;s:11:\"size_before\";i:178283;s:10:\"size_after\";i:170824;s:4:\"time\";d:0.15000000000000002;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.31;s:5:\"bytes\";i:748;s:11:\"size_before\";i:6077;s:10:\"size_after\";i:5329;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3300000000000001;s:5:\"bytes\";i:848;s:11:\"size_before\";i:13407;s:10:\"size_after\";i:12559;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4900000000000002;s:5:\"bytes\";i:1010;s:11:\"size_before\";i:40595;s:10:\"size_after\";i:39585;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4700000000000002;s:5:\"bytes\";i:838;s:11:\"size_before\";i:24147;s:10:\"size_after\";i:23309;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.75;s:5:\"bytes\";i:888;s:11:\"size_before\";i:32304;s:10:\"size_after\";i:31416;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0599999999999996;s:5:\"bytes\";i:3127;s:11:\"size_before\";i:61753;s:10:\"size_after\";i:58626;s:4:\"time\";d:0.029999999999999999;}}}'),(31265,687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-81.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-81-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:\"mann-work-81-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-81-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-81-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-81-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:{}}}'),(31266,688,'_wp_attached_file','2019/12/mann-work-82.jpg'),(31267,688,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.3042774201192779;s:5:\"bytes\";i:5449;s:11:\"size_before\";i:126595;s:10:\"size_after\";i:121146;s:4:\"time\";d:0.10000000000000001;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:13.41;s:5:\"bytes\";i:627;s:11:\"size_before\";i:4675;s:10:\"size_after\";i:4048;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6399999999999997;s:5:\"bytes\";i:582;s:11:\"size_before\";i:10321;s:10:\"size_after\";i:9739;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.05;s:5:\"bytes\";i:326;s:11:\"size_before\";i:30939;s:10:\"size_after\";i:30613;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7599999999999998;s:5:\"bytes\";i:348;s:11:\"size_before\";i:12610;s:10:\"size_after\";i:12262;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.46;s:5:\"bytes\";i:323;s:11:\"size_before\";i:22126;s:10:\"size_after\";i:21803;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0599999999999996;s:5:\"bytes\";i:3243;s:11:\"size_before\";i:45924;s:10:\"size_after\";i:42681;s:4:\"time\";d:0.02;}}}'),(31268,688,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-82.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-82-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:\"mann-work-82-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-82-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-82-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-82-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:{}}}'),(31269,689,'_wp_attached_file','2019/12/mann-work-83.jpg'),(31270,689,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.1178480482222866;s:5:\"bytes\";i:3869;s:11:\"size_before\";i:124092;s:10:\"size_after\";i:120223;s:4:\"time\";d:0.13;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:13.15;s:5:\"bytes\";i:579;s:11:\"size_before\";i:4402;s:10:\"size_after\";i:3823;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7699999999999996;s:5:\"bytes\";i:455;s:11:\"size_before\";i:9540;s:10:\"size_after\";i:9085;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:29184;s:10:\"size_after\";i:29184;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6100000000000001;s:5:\"bytes\";i:248;s:11:\"size_before\";i:15382;s:10:\"size_after\";i:15134;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.58999999999999997;s:5:\"bytes\";i:129;s:11:\"size_before\";i:22015;s:10:\"size_after\";i:21886;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6399999999999997;s:5:\"bytes\";i:2458;s:11:\"size_before\";i:43569;s:10:\"size_after\";i:41111;s:4:\"time\";d:0.029999999999999999;}}}'),(31271,689,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-83.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-83-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:\"mann-work-83-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-83-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-83-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-83-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:{}}}'),(31272,690,'_wp_attached_file','2019/12/mann-work-84.jpg'),(31273,690,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8442883425321961;s:5:\"bytes\";i:7241;s:11:\"size_before\";i:149475;s:10:\"size_after\";i:142234;s:4:\"time\";d:0.14000000000000001;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:13.48;s:5:\"bytes\";i:687;s:11:\"size_before\";i:5098;s:10:\"size_after\";i:4411;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6600000000000001;s:5:\"bytes\";i:704;s:11:\"size_before\";i:10568;s:10:\"size_after\";i:9864;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.23;s:5:\"bytes\";i:748;s:11:\"size_before\";i:33532;s:10:\"size_after\";i:32784;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.46;s:5:\"bytes\";i:704;s:11:\"size_before\";i:20328;s:10:\"size_after\";i:19624;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9900000000000002;s:5:\"bytes\";i:830;s:11:\"size_before\";i:27713;s:10:\"size_after\";i:26883;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8300000000000001;s:5:\"bytes\";i:3568;s:11:\"size_before\";i:52236;s:10:\"size_after\";i:48668;s:4:\"time\";d:0.050000000000000003;}}}'),(31274,690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-84.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-84-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:\"mann-work-84-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-84-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-84-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-84-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:{}}}'),(31275,691,'_wp_attached_file','2019/12/mann-work-85.jpg'),(31276,691,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.4162096892040514;s:5:\"bytes\";i:11484;s:11:\"size_before\";i:260042;s:10:\"size_after\";i:248558;s:4:\"time\";d:0.14000000000000001;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:11.69;s:5:\"bytes\";i:894;s:11:\"size_before\";i:7647;s:10:\"size_after\";i:6753;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3899999999999997;s:5:\"bytes\";i:1120;s:11:\"size_before\";i:17537;s:10:\"size_after\";i:16417;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2400000000000002;s:5:\"bytes\";i:1903;s:11:\"size_before\";i:58816;s:10:\"size_after\";i:56913;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3600000000000003;s:5:\"bytes\";i:1462;s:11:\"size_before\";i:33540;s:10:\"size_after\";i:32078;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7599999999999998;s:5:\"bytes\";i:1793;s:11:\"size_before\";i:47693;s:10:\"size_after\";i:45900;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5499999999999998;s:5:\"bytes\";i:4312;s:11:\"size_before\";i:94809;s:10:\"size_after\";i:90497;s:4:\"time\";d:0.040000000000000001;}}}'),(31277,691,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-85.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-85-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:\"mann-work-85-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-85-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-85-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-85-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:{}}}'),(31278,692,'_wp_attached_file','2019/12/mann-work-86.jpg'),(31279,692,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.6005218797557967;s:5:\"bytes\";i:13029;s:11:\"size_before\";i:283207;s:10:\"size_after\";i:270178;s:4:\"time\";d:0.15999999999999998;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:11.34;s:5:\"bytes\";i:912;s:11:\"size_before\";i:8042;s:10:\"size_after\";i:7130;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.54;s:5:\"bytes\";i:1219;s:11:\"size_before\";i:18636;s:10:\"size_after\";i:17417;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4199999999999999;s:5:\"bytes\";i:2161;s:11:\"size_before\";i:63245;s:10:\"size_after\";i:61084;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.46;s:5:\"bytes\";i:1629;s:11:\"size_before\";i:36551;s:10:\"size_after\";i:34922;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8799999999999999;s:5:\"bytes\";i:1973;s:11:\"size_before\";i:50852;s:10:\"size_after\";i:48879;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8499999999999996;s:5:\"bytes\";i:5135;s:11:\"size_before\";i:105881;s:10:\"size_after\";i:100746;s:4:\"time\";d:0.059999999999999998;}}}'),(31280,692,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-86.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-86-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:\"mann-work-86-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-86-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-86-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-86-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:{}}}'),(31281,693,'_wp_attached_file','2019/12/mann-work-87.jpg'),(31282,693,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1833767696842035;s:5:\"bytes\";i:10546;s:11:\"size_before\";i:252093;s:10:\"size_after\";i:241547;s:4:\"time\";d:0.14999999999999999;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:11.199999999999999;s:5:\"bytes\";i:834;s:11:\"size_before\";i:7446;s:10:\"size_after\";i:6612;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7000000000000002;s:5:\"bytes\";i:1092;s:11:\"size_before\";i:16305;s:10:\"size_after\";i:15213;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2200000000000002;s:5:\"bytes\";i:1781;s:11:\"size_before\";i:55315;s:10:\"size_after\";i:53534;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1100000000000003;s:5:\"bytes\";i:1439;s:11:\"size_before\";i:35000;s:10:\"size_after\";i:33561;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6299999999999999;s:5:\"bytes\";i:1700;s:11:\"size_before\";i:46772;s:10:\"size_after\";i:45072;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0499999999999998;s:5:\"bytes\";i:3700;s:11:\"size_before\";i:91255;s:10:\"size_after\";i:87555;s:4:\"time\";d:0.040000000000000001;}}}'),(31283,693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:24:\"2019/12/mann-work-87.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-87-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:\"mann-work-87-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-87-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-87-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-87-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:{}}}'),(31284,694,'_wp_attached_file','2019/12/mann-work-88.jpg'),(31285,694,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.9066129486759631;s:5:\"bytes\";i:10259;s:11:\"size_before\";i:262606;s:10:\"size_after\";i:252347;s:4:\"time\";d:0.16000000000000003;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:11.029999999999999;s:5:\"bytes\";i:797;s:11:\"size_before\";i:7226;s:10:\"size_after\";i:6429;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2000000000000002;s:5:\"bytes\";i:1122;s:11:\"size_before\";i:18087;s:10:\"size_after\";i:16965;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29;s:5:\"bytes\";i:2163;s:11:\"size_before\";i:65840;s:10:\"size_after\";i:63677;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7000000000000002;s:5:\"bytes\";i:1238;s:11:\"size_before\";i:33465;s:10:\"size_after\";i:32227;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4199999999999999;s:5:\"bytes\";i:1706;s:11:\"size_before\";i:49811;s:10:\"size_after\";i:48105;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6699999999999999;s:5:\"bytes\";i:3233;s:11:\"size_before\";i:88177;s:10:\"size_after\";i:84944;s:4:\"time\";d:0.050000000000000003;}}}'),(31286,694,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-88.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-88-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:\"mann-work-88-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-88-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-88-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-88-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:{}}}'),(31287,695,'_wp_attached_file','2019/12/mann-work-89.jpg'),(31288,651,'_wp_attachment_image_alt','work example'),(31289,652,'_wp_attachment_image_alt','work example'),(31290,695,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1146548800530693;s:5:\"bytes\";i:13724;s:11:\"size_before\";i:268327;s:10:\"size_after\";i:254603;s:4:\"time\";d:2.6099999999999999;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.07;s:5:\"bytes\";i:837;s:11:\"size_before\";i:6936;s:10:\"size_after\";i:6099;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3600000000000003;s:5:\"bytes\";i:1306;s:11:\"size_before\";i:17747;s:10:\"size_after\";i:16441;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7400000000000002;s:5:\"bytes\";i:3208;s:11:\"size_before\";i:67705;s:10:\"size_after\";i:64497;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7699999999999996;s:5:\"bytes\";i:1495;s:11:\"size_before\";i:31358;s:10:\"size_after\";i:29863;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7699999999999996;s:5:\"bytes\";i:2359;s:11:\"size_before\";i:49453;s:10:\"size_after\";i:47094;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.75;s:5:\"bytes\";i:4519;s:11:\"size_before\";i:95128;s:10:\"size_after\";i:90609;s:4:\"time\";d:2.5;}}}'),(31291,695,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-89.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-89-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:\"mann-work-89-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-89-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-89-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-89-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:{}}}'),(31292,696,'_wp_attached_file','2019/12/mann-work-90.jpg'),(31293,653,'_wp_attachment_image_alt','work example'),(31294,655,'_wp_attachment_image_alt','work example'),(31295,696,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1853403141361252;s:5:\"bytes\";i:11991;s:11:\"size_before\";i:286500;s:10:\"size_after\";i:274509;s:4:\"time\";d:0.19;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:11.380000000000001;s:5:\"bytes\";i:750;s:11:\"size_before\";i:6589;s:10:\"size_after\";i:5839;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8600000000000003;s:5:\"bytes\";i:968;s:11:\"size_before\";i:16506;s:10:\"size_after\";i:15538;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6400000000000001;s:5:\"bytes\";i:2520;s:11:\"size_before\";i:69170;s:10:\"size_after\";i:66650;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4500000000000002;s:5:\"bytes\";i:1608;s:11:\"size_before\";i:36135;s:10:\"size_after\";i:34527;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0599999999999996;s:5:\"bytes\";i:2167;s:11:\"size_before\";i:53330;s:10:\"size_after\";i:51163;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7999999999999998;s:5:\"bytes\";i:3978;s:11:\"size_before\";i:104770;s:10:\"size_after\";i:100792;s:4:\"time\";d:0.070000000000000007;}}}'),(31296,696,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-90.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-90-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:\"mann-work-90-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-90-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-90-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-90-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:{}}}'),(31297,697,'_wp_attached_file','2019/12/mann-work-91.jpg'),(31298,656,'_wp_attachment_image_alt','excavating'),(31299,657,'_wp_attachment_image_alt','excavating'),(31300,658,'_wp_attachment_image_alt','excavating'),(31301,659,'_wp_attachment_image_alt','excavating'),(31302,697,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.2053059147614618;s:5:\"bytes\";i:9134;s:11:\"size_before\";i:284965;s:10:\"size_after\";i:275831;s:4:\"time\";d:0.22;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:12.91;s:5:\"bytes\";i:638;s:11:\"size_before\";i:4943;s:10:\"size_after\";i:4305;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9299999999999997;s:5:\"bytes\";i:682;s:11:\"size_before\";i:11492;s:10:\"size_after\";i:10810;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.3599999999999999;s:5:\"bytes\";i:1102;s:11:\"size_before\";i:46682;s:10:\"size_after\";i:45580;s:4:\"time\";d:0.02;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.080000000000000002;s:5:\"bytes\";i:45;s:11:\"size_before\";i:54544;s:10:\"size_after\";i:54499;s:4:\"time\";d:0.059999999999999998;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45580;s:10:\"size_after\";i:45580;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4700000000000002;s:5:\"bytes\";i:793;s:11:\"size_before\";i:22829;s:10:\"size_after\";i:22036;s:4:\"time\";d:0.01;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8399999999999999;s:5:\"bytes\";i:809;s:11:\"size_before\";i:21044;s:10:\"size_after\";i:20235;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.77;s:5:\"bytes\";i:1001;s:11:\"size_before\";i:26522;s:10:\"size_after\";i:25521;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9199999999999999;s:5:\"bytes\";i:4064;s:11:\"size_before\";i:51329;s:10:\"size_after\";i:47265;s:4:\"time\";d:0.029999999999999999;}}}'),(31303,697,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2019/12/mann-work-91.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-91-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:\"mann-work-91-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"mann-work-91-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:24:\"mann-work-91-960x720.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"mann-work-91-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-91-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-91-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-91-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:{}}}'),(31304,660,'_wp_attachment_image_alt','excavating'),(31305,698,'_wp_attached_file','2019/12/mann-work-92.jpg'),(31306,698,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.0009066183136897;s:5:\"bytes\";i:12411;s:11:\"size_before\";i:248175;s:10:\"size_after\";i:235764;s:4:\"time\";d:0.15000000000000002;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.17;s:5:\"bytes\";i:838;s:11:\"size_before\";i:6885;s:10:\"size_after\";i:6047;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8700000000000001;s:5:\"bytes\";i:1119;s:11:\"size_before\";i:16297;s:10:\"size_after\";i:15178;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4199999999999999;s:5:\"bytes\";i:2691;s:11:\"size_before\";i:60887;s:10:\"size_after\";i:58196;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0800000000000001;s:5:\"bytes\";i:1581;s:11:\"size_before\";i:31134;s:10:\"size_after\";i:29553;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7199999999999998;s:5:\"bytes\";i:2254;s:11:\"size_before\";i:47713;s:10:\"size_after\";i:45459;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6100000000000003;s:5:\"bytes\";i:3928;s:11:\"size_before\";i:85259;s:10:\"size_after\";i:81331;s:4:\"time\";d:0.040000000000000001;}}}'),(31307,698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-92.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-92-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:\"mann-work-92-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-92-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-92-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-92-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:{}}}'),(31308,661,'_wp_attachment_image_alt','HVAC unit'),(31309,699,'_wp_attached_file','2019/12/mann-work-93.jpg'),(31310,662,'_wp_attachment_image_alt','furnace'),(31311,699,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.374807116117827;s:5:\"bytes\";i:6864;s:11:\"size_before\";i:289034;s:10:\"size_after\";i:282170;s:4:\"time\";d:0.23000000000000001;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:12.92;s:5:\"bytes\";i:680;s:11:\"size_before\";i:5262;s:10:\"size_after\";i:4582;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1799999999999997;s:5:\"bytes\";i:692;s:11:\"size_before\";i:11194;s:10:\"size_after\";i:10502;s:4:\"time\";d:0.029999999999999999;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.91000000000000003;s:5:\"bytes\";i:421;s:11:\"size_before\";i:46197;s:10:\"size_after\";i:45776;s:4:\"time\";d:0.029999999999999999;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:56562;s:10:\"size_after\";i:56562;s:4:\"time\";d:0.029999999999999999;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45776;s:10:\"size_after\";i:45776;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8300000000000001;s:5:\"bytes\";i:637;s:11:\"size_before\";i:22523;s:10:\"size_after\";i:21886;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2000000000000002;s:5:\"bytes\";i:662;s:11:\"size_before\";i:20711;s:10:\"size_after\";i:20049;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2400000000000002;s:5:\"bytes\";i:630;s:11:\"size_before\";i:28140;s:10:\"size_after\";i:27510;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9699999999999998;s:5:\"bytes\";i:3142;s:11:\"size_before\";i:52669;s:10:\"size_after\";i:49527;s:4:\"time\";d:0.029999999999999999;}}}'),(31312,699,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2019/12/mann-work-93.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-93-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:\"mann-work-93-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"mann-work-93-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:24:\"mann-work-93-960x720.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"mann-work-93-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-93-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-93-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-93-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:{}}}'),(31313,700,'_wp_attached_file','2019/12/mann-work-94.jpg'),(31314,663,'_wp_attachment_image_alt','finished basement'),(31315,700,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.8822880742078119;s:5:\"bytes\";i:10773;s:11:\"size_before\";i:277491;s:10:\"size_after\";i:266718;s:4:\"time\";d:0.13;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:11.779999999999999;s:5:\"bytes\";i:791;s:11:\"size_before\";i:6713;s:10:\"size_after\";i:5922;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.29;s:5:\"bytes\";i:1087;s:11:\"size_before\";i:17268;s:10:\"size_after\";i:16181;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.52;s:5:\"bytes\";i:2429;s:11:\"size_before\";i:69054;s:10:\"size_after\";i:66625;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3700000000000001;s:5:\"bytes\";i:1126;s:11:\"size_before\";i:33459;s:10:\"size_after\";i:32333;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2999999999999998;s:5:\"bytes\";i:1672;s:11:\"size_before\";i:50636;s:10:\"size_after\";i:48964;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6499999999999999;s:5:\"bytes\";i:3668;s:11:\"size_before\";i:100361;s:10:\"size_after\";i:96693;s:4:\"time\";d:0.029999999999999999;}}}'),(31316,700,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/12/mann-work-94.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-94-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:\"mann-work-94-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-94-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-94-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-94-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:{}}}'),(31317,701,'_wp_attached_file','2019/12/mann-work-95.jpg'),(31318,664,'_wp_attachment_image_alt','furnace'),(31319,701,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.4814143120180527;s:5:\"bytes\";i:8962;s:11:\"size_before\";i:361165;s:10:\"size_after\";i:352203;s:4:\"time\";d:0.33000000000000002;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:11.83;s:5:\"bytes\";i:695;s:11:\"size_before\";i:5875;s:10:\"size_after\";i:5180;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3200000000000003;s:5:\"bytes\";i:875;s:11:\"size_before\";i:13850;s:10:\"size_after\";i:12975;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5900000000000001;s:5:\"bytes\";i:1256;s:11:\"size_before\";i:78791;s:10:\"size_after\";i:77535;s:4:\"time\";d:0.059999999999999998;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77535;s:10:\"size_after\";i:77535;s:4:\"time\";d:0.13;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.77;s:5:\"bytes\";i:1247;s:11:\"size_before\";i:33070;s:10:\"size_after\";i:31823;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8399999999999999;s:5:\"bytes\";i:1128;s:11:\"size_before\";i:29387;s:10:\"size_after\";i:28259;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.3199999999999998;s:5:\"bytes\";i:983;s:11:\"size_before\";i:42458;s:10:\"size_after\";i:41475;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.46;s:5:\"bytes\";i:2778;s:11:\"size_before\";i:80199;s:10:\"size_after\";i:77421;s:4:\"time\";d:0.040000000000000001;}}}'),(31320,701,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2019/12/mann-work-95.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-95-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:\"mann-work-95-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"mann-work-95-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"mann-work-95-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-95-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-95-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-95-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:{}}}'),(31321,702,'_wp_attached_file','2019/12/mann-work-96.jpg'),(31322,665,'_wp_attachment_image_alt','work'),(31323,702,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.4655217488130701;s:5:\"bytes\";i:7639;s:11:\"size_before\";i:309833;s:10:\"size_after\";i:302194;s:4:\"time\";d:0.29000000000000004;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.039999999999999;s:5:\"bytes\";i:708;s:11:\"size_before\";i:5428;s:10:\"size_after\";i:4720;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4400000000000004;s:5:\"bytes\";i:772;s:11:\"size_before\";i:11989;s:10:\"size_after\";i:11217;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1799999999999999;s:5:\"bytes\";i:583;s:11:\"size_before\";i:49470;s:10:\"size_after\";i:48887;s:4:\"time\";d:0.050000000000000003;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61293;s:10:\"size_after\";i:61293;s:4:\"time\";d:0.11;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:48887;s:10:\"size_after\";i:48887;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4300000000000002;s:5:\"bytes\";i:827;s:11:\"size_before\";i:24103;s:10:\"size_after\";i:23276;s:4:\"time\";d:0.01;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7200000000000002;s:5:\"bytes\";i:839;s:11:\"size_before\";i:22525;s:10:\"size_after\";i:21686;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5099999999999998;s:5:\"bytes\";i:730;s:11:\"size_before\";i:29066;s:10:\"size_after\";i:28336;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5700000000000003;s:5:\"bytes\";i:3180;s:11:\"size_before\";i:57072;s:10:\"size_after\";i:53892;s:4:\"time\";d:0.029999999999999999;}}}'),(31324,702,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2019/12/mann-work-96.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-96-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:\"mann-work-96-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"mann-work-96-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:24:\"mann-work-96-960x720.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"mann-work-96-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-96-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-96-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-96-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:{}}}'),(31325,703,'_wp_attached_file','2019/12/mann-work-97.jpg'),(31326,666,'_wp_attachment_image_alt','lifting unit onto building'),(31327,703,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.4840687218657482;s:5:\"bytes\";i:6771;s:11:\"size_before\";i:272577;s:10:\"size_after\";i:265806;s:4:\"time\";d:0.29999999999999999;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.56;s:5:\"bytes\";i:681;s:11:\"size_before\";i:5023;s:10:\"size_after\";i:4342;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3099999999999996;s:5:\"bytes\";i:691;s:11:\"size_before\";i:10959;s:10:\"size_after\";i:10268;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.03;s:5:\"bytes\";i:452;s:11:\"size_before\";i:43674;s:10:\"size_after\";i:43222;s:4:\"time\";d:0.029999999999999999;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:53211;s:10:\"size_after\";i:53211;s:4:\"time\";d:0.050000000000000003;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:43222;s:10:\"size_after\";i:43222;s:4:\"time\";d:0.089999999999999997;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0299999999999998;s:5:\"bytes\";i:644;s:11:\"size_before\";i:21266;s:10:\"size_after\";i:20622;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3599999999999999;s:5:\"bytes\";i:642;s:11:\"size_before\";i:19092;s:10:\"size_after\";i:18450;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.1600000000000001;s:5:\"bytes\";i:566;s:11:\"size_before\";i:26211;s:10:\"size_after\";i:25645;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2000000000000002;s:5:\"bytes\";i:3095;s:11:\"size_before\";i:49919;s:10:\"size_after\";i:46824;s:4:\"time\";d:0.050000000000000003;}}}'),(31328,703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2019/12/mann-work-97.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-97-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:\"mann-work-97-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"mann-work-97-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:24:\"mann-work-97-960x720.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"mann-work-97-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-97-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-97-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-97-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:{}}}'),(31329,704,'_wp_attached_file','2019/12/mann-work-98.jpg'),(31330,667,'_wp_attachment_image_alt','HVAC unit'),(31331,668,'_wp_attachment_image_alt','furnace'),(31332,704,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.4837659209588225;s:5:\"bytes\";i:7734;s:11:\"size_before\";i:311382;s:10:\"size_after\";i:303648;s:4:\"time\";d:0.33000000000000007;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.17;s:5:\"bytes\";i:686;s:11:\"size_before\";i:5209;s:10:\"size_after\";i:4523;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1600000000000001;s:5:\"bytes\";i:718;s:11:\"size_before\";i:11659;s:10:\"size_after\";i:10941;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.23;s:5:\"bytes\";i:611;s:11:\"size_before\";i:49653;s:10:\"size_after\";i:49042;s:4:\"time\";d:0.029999999999999999;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:62518;s:10:\"size_after\";i:62518;s:4:\"time\";d:0.16;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:49042;s:10:\"size_after\";i:49042;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3399999999999999;s:5:\"bytes\";i:792;s:11:\"size_before\";i:23711;s:10:\"size_after\";i:22919;s:4:\"time\";d:0.01;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4399999999999999;s:5:\"bytes\";i:762;s:11:\"size_before\";i:22136;s:10:\"size_after\";i:21374;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6899999999999999;s:5:\"bytes\";i:784;s:11:\"size_before\";i:29148;s:10:\"size_after\";i:28364;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7999999999999998;s:5:\"bytes\";i:3381;s:11:\"size_before\";i:58306;s:10:\"size_after\";i:54925;s:4:\"time\";d:0.029999999999999999;}}}'),(31333,704,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2019/12/mann-work-98.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mann-work-98-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:\"mann-work-98-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"mann-work-98-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:24:\"mann-work-98-960x720.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:24:\"mann-work-98-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:24:\"mann-work-98-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:24:\"mann-work-98-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:24:\"mann-work-98-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:{}}}'),(31334,669,'_wp_attachment_image_alt','construction'),(31335,578,'group_8txfhtjx684j6no_gallery_content','<h2 style=\"text-align: center;\">Mann Plumbing &amp; Heating, LLC.’s Work</h2>\r\n<p style=\"text-align: center;\">Mann Plumbing &amp; Heating, LLC. has a long history of HVAC, plumbing, and excavation work in South-Central Pennsylvania. Our 30 years of service for residential and commercial clients has led to a large collection of extensive projects that show our adept skills and expertise. We’re proud of every job we perform, from small repairs to substantial designs and installations. If you want to see examples of the work we’ve done over the years, we invite you to look through our collection of images. We execute every service with an emphasis on quality, and our team always gives honest answers for any issue you might come across. Our priority is your comfort and convenience. You should be able to depend on a working toilet, water heater, and heating and cooling system. When you work with Mann Plumbing &amp; Heating, LLC., you get long-lasting results for efficient and energy-saving repairs and installations. <a href=\"/contact-us/\">Give us a call today</a> to schedule service for your home or business’s heating, cooling, and plumbing needs.</p>'),(31336,578,'_group_8txfhtjx684j6no_gallery_content','group_8txfhtjx684j6no_field_591ca1f42e821'),(31337,578,'group_8txfhtjx684j6no_gallery_images','a:98:{i:0;s:3:\"607\";i:1;s:3:\"608\";i:2;s:3:\"609\";i:3;s:3:\"610\";i:4;s:3:\"611\";i:5;s:3:\"612\";i:6;s:3:\"613\";i:7;s:3:\"614\";i:8;s:3:\"615\";i:9;s:3:\"616\";i:10;s:3:\"617\";i:11;s:3:\"618\";i:12;s:3:\"619\";i:13;s:3:\"620\";i:14;s:3:\"621\";i:15;s:3:\"622\";i:16;s:3:\"623\";i:17;s:3:\"624\";i:18;s:3:\"625\";i:19;s:3:\"626\";i:20;s:3:\"627\";i:21;s:3:\"628\";i:22;s:3:\"629\";i:23;s:3:\"630\";i:24;s:3:\"631\";i:25;s:3:\"632\";i:26;s:3:\"633\";i:27;s:3:\"634\";i:28;s:3:\"635\";i:29;s:3:\"636\";i:30;s:3:\"637\";i:31;s:3:\"638\";i:32;s:3:\"639\";i:33;s:3:\"640\";i:34;s:3:\"641\";i:35;s:3:\"642\";i:36;s:3:\"643\";i:37;s:3:\"644\";i:38;s:3:\"645\";i:39;s:3:\"646\";i:40;s:3:\"647\";i:41;s:3:\"648\";i:42;s:3:\"649\";i:43;s:3:\"650\";i:44;s:3:\"651\";i:45;s:3:\"652\";i:46;s:3:\"653\";i:47;s:3:\"654\";i:48;s:3:\"655\";i:49;s:3:\"656\";i:50;s:3:\"657\";i:51;s:3:\"658\";i:52;s:3:\"659\";i:53;s:3:\"660\";i:54;s:3:\"661\";i:55;s:3:\"662\";i:56;s:3:\"663\";i:57;s:3:\"664\";i:58;s:3:\"665\";i:59;s:3:\"666\";i:60;s:3:\"667\";i:61;s:3:\"668\";i:62;s:3:\"669\";i:63;s:3:\"670\";i:64;s:3:\"671\";i:65;s:3:\"672\";i:66;s:3:\"673\";i:67;s:3:\"674\";i:68;s:3:\"675\";i:69;s:3:\"676\";i:70;s:3:\"677\";i:71;s:3:\"678\";i:72;s:3:\"679\";i:73;s:3:\"680\";i:74;s:3:\"681\";i:75;s:3:\"682\";i:76;s:3:\"683\";i:77;s:3:\"684\";i:78;s:3:\"685\";i:79;s:3:\"686\";i:80;s:3:\"687\";i:81;s:3:\"688\";i:82;s:3:\"689\";i:83;s:3:\"690\";i:84;s:3:\"691\";i:85;s:3:\"692\";i:86;s:3:\"693\";i:87;s:3:\"694\";i:88;s:3:\"695\";i:89;s:3:\"696\";i:90;s:3:\"697\";i:91;s:3:\"698\";i:92;s:3:\"699\";i:93;s:3:\"700\";i:94;s:3:\"701\";i:95;s:3:\"702\";i:96;s:3:\"703\";i:97;s:3:\"704\";}'),(31338,578,'_group_8txfhtjx684j6no_gallery_images','group_8txfhtjx684j6no_field_591ca1f42e820'),(31339,578,'group_8txfhtjx684j6no_gallery_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(31340,578,'_group_8txfhtjx684j6no_gallery_button','group_8txfhtjx684j6no_field_35a591ca6da88'),(31341,578,'group_8txfhtjx684j6no_gallery_layout','non-bleeding'),(31342,578,'_group_8txfhtjx684j6no_gallery_layout','group_8txfhtjx684j6no_field_8973h3489324h324'),(31343,578,'group_8txfhtjx684j6no_gallery_slides_to_show',''),(31344,578,'_group_8txfhtjx684j6no_gallery_slides_to_show','group_8txfhtjx684j6no_field_71810a8701e99'),(31345,578,'group_8txfhtjx684j6no_gallery_width','md'),(31346,578,'_group_8txfhtjx684j6no_gallery_width','group_8txfhtjx684j6no_field_8973h3489324a002'),(31347,578,'group_8txfhtjx684j6no_gallery_css_classes',''),(31348,578,'_group_8txfhtjx684j6no_gallery_css_classes','group_8txfhtjx684j6no_field_8987622106215'),(31349,578,'group_8txfhtjx684j6no_gallery_enable_captions','0'),(31350,578,'_group_8txfhtjx684j6no_gallery_enable_captions','group_8txfhtjx684j6no_field_h29be82vf92b9ad3'),(31351,578,'group_8txfhtjx684j6no_gallery_enable_padding','0'),(31352,578,'_group_8txfhtjx684j6no_gallery_enable_padding','group_8txfhtjx684j6no_field_591ca1f42e82901'),(31353,578,'group_8txfhtjx684j6no_gallery_padding_top','0'),(31354,578,'_group_8txfhtjx684j6no_gallery_padding_top','group_8txfhtjx684j6no_field_591ca1f42e82902'),(31355,578,'group_8txfhtjx684j6no_gallery_padding_bottom','0'),(31356,578,'_group_8txfhtjx684j6no_gallery_padding_bottom','group_8txfhtjx684j6no_field_591ca1f42e82903'),(31357,578,'group_8txfhtjx684j6no_gallery_button_alignment',''),(31358,578,'_group_8txfhtjx684j6no_gallery_button_alignment','group_8txfhtjx684j6no_field_8591648772866'),(31359,578,'group_8txfhtjx684j6no_gallery_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(31360,578,'_group_8txfhtjx684j6no_gallery_background','group_8txfhtjx684j6no_field_591ca1f42e829'),(31361,578,'group_8txfhtjx684j6no_gallery_animations_enabled','0'),(31362,578,'_group_8txfhtjx684j6no_gallery_animations_enabled','field_5b7ece2e8e4e9'),(31363,578,'group_8txfhtjx684j6no_gallery_animations',''),(31364,578,'_group_8txfhtjx684j6no_gallery_animations','group_8txfhtjx684j6no_field_5b7ece258e4e8'),(31365,578,'group_u6maleu6wg7r14z_ctas_ctas','489'),(31366,578,'_group_u6maleu6wg7r14z_ctas_ctas','group_u6maleu6wg7r14z_field_5620077701227'),(31367,578,'group_u6maleu6wg7r14z_ctas_css_classes','cta'),(31368,578,'_group_u6maleu6wg7r14z_ctas_css_classes','group_u6maleu6wg7r14z_field_8795774705172'),(31369,578,'group_u6maleu6wg7r14z_ctas_animations_enabled','0'),(31370,578,'_group_u6maleu6wg7r14z_ctas_animations_enabled','field_5b7ece2e8e4e9'),(31371,578,'group_u6maleu6wg7r14z_ctas_animations',''),(31372,578,'_group_u6maleu6wg7r14z_ctas_animations','group_u6maleu6wg7r14z_field_5b7ece258e4e8'),(31373,705,'subheading',''),(31374,705,'_subheading','field_5976417756400'),(31375,705,'group_8txfhtjx684j6no_gallery_content',''),(31376,705,'_group_8txfhtjx684j6no_gallery_content','group_8txfhtjx684j6no_field_591ca1f42e821'),(31377,705,'group_8txfhtjx684j6no_gallery_images','a:98:{i:0;s:3:\"607\";i:1;s:3:\"608\";i:2;s:3:\"609\";i:3;s:3:\"610\";i:4;s:3:\"611\";i:5;s:3:\"612\";i:6;s:3:\"613\";i:7;s:3:\"614\";i:8;s:3:\"615\";i:9;s:3:\"616\";i:10;s:3:\"617\";i:11;s:3:\"618\";i:12;s:3:\"619\";i:13;s:3:\"620\";i:14;s:3:\"621\";i:15;s:3:\"622\";i:16;s:3:\"623\";i:17;s:3:\"624\";i:18;s:3:\"625\";i:19;s:3:\"626\";i:20;s:3:\"627\";i:21;s:3:\"628\";i:22;s:3:\"629\";i:23;s:3:\"630\";i:24;s:3:\"631\";i:25;s:3:\"632\";i:26;s:3:\"633\";i:27;s:3:\"634\";i:28;s:3:\"635\";i:29;s:3:\"636\";i:30;s:3:\"637\";i:31;s:3:\"638\";i:32;s:3:\"639\";i:33;s:3:\"640\";i:34;s:3:\"641\";i:35;s:3:\"642\";i:36;s:3:\"643\";i:37;s:3:\"644\";i:38;s:3:\"645\";i:39;s:3:\"646\";i:40;s:3:\"647\";i:41;s:3:\"648\";i:42;s:3:\"649\";i:43;s:3:\"650\";i:44;s:3:\"651\";i:45;s:3:\"652\";i:46;s:3:\"653\";i:47;s:3:\"654\";i:48;s:3:\"655\";i:49;s:3:\"656\";i:50;s:3:\"657\";i:51;s:3:\"658\";i:52;s:3:\"659\";i:53;s:3:\"660\";i:54;s:3:\"661\";i:55;s:3:\"662\";i:56;s:3:\"663\";i:57;s:3:\"664\";i:58;s:3:\"665\";i:59;s:3:\"666\";i:60;s:3:\"667\";i:61;s:3:\"668\";i:62;s:3:\"669\";i:63;s:3:\"670\";i:64;s:3:\"671\";i:65;s:3:\"672\";i:66;s:3:\"673\";i:67;s:3:\"674\";i:68;s:3:\"675\";i:69;s:3:\"676\";i:70;s:3:\"677\";i:71;s:3:\"678\";i:72;s:3:\"679\";i:73;s:3:\"680\";i:74;s:3:\"681\";i:75;s:3:\"682\";i:76;s:3:\"683\";i:77;s:3:\"684\";i:78;s:3:\"685\";i:79;s:3:\"686\";i:80;s:3:\"687\";i:81;s:3:\"688\";i:82;s:3:\"689\";i:83;s:3:\"690\";i:84;s:3:\"691\";i:85;s:3:\"692\";i:86;s:3:\"693\";i:87;s:3:\"694\";i:88;s:3:\"695\";i:89;s:3:\"696\";i:90;s:3:\"697\";i:91;s:3:\"698\";i:92;s:3:\"699\";i:93;s:3:\"700\";i:94;s:3:\"701\";i:95;s:3:\"702\";i:96;s:3:\"703\";i:97;s:3:\"704\";}'),(31378,705,'_group_8txfhtjx684j6no_gallery_images','group_8txfhtjx684j6no_field_591ca1f42e820'),(31379,705,'group_8txfhtjx684j6no_gallery_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(31380,705,'_group_8txfhtjx684j6no_gallery_button','group_8txfhtjx684j6no_field_35a591ca6da88'),(31381,705,'group_8txfhtjx684j6no_gallery_layout','non-bleeding'),(31382,705,'_group_8txfhtjx684j6no_gallery_layout','group_8txfhtjx684j6no_field_8973h3489324h324'),(31383,705,'group_8txfhtjx684j6no_gallery_slides_to_show',''),(31384,705,'_group_8txfhtjx684j6no_gallery_slides_to_show','group_8txfhtjx684j6no_field_71810a8701e99'),(31385,705,'group_8txfhtjx684j6no_gallery_width','md'),(31386,705,'_group_8txfhtjx684j6no_gallery_width','group_8txfhtjx684j6no_field_8973h3489324a002'),(31387,705,'group_8txfhtjx684j6no_gallery_css_classes',''),(31388,705,'_group_8txfhtjx684j6no_gallery_css_classes','group_8txfhtjx684j6no_field_8987622106215'),(31389,705,'group_8txfhtjx684j6no_gallery_enable_captions','0'),(31390,705,'_group_8txfhtjx684j6no_gallery_enable_captions','group_8txfhtjx684j6no_field_h29be82vf92b9ad3'),(31391,705,'group_8txfhtjx684j6no_gallery_enable_padding','0'),(31392,705,'_group_8txfhtjx684j6no_gallery_enable_padding','group_8txfhtjx684j6no_field_591ca1f42e82901'),(31393,705,'group_8txfhtjx684j6no_gallery_padding_top','0'),(31394,705,'_group_8txfhtjx684j6no_gallery_padding_top','group_8txfhtjx684j6no_field_591ca1f42e82902'),(31395,705,'group_8txfhtjx684j6no_gallery_padding_bottom','0'),(31396,705,'_group_8txfhtjx684j6no_gallery_padding_bottom','group_8txfhtjx684j6no_field_591ca1f42e82903'),(31397,705,'group_8txfhtjx684j6no_gallery_button_alignment',''),(31398,705,'_group_8txfhtjx684j6no_gallery_button_alignment','group_8txfhtjx684j6no_field_8591648772866'),(31399,705,'group_8txfhtjx684j6no_gallery_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(31400,705,'_group_8txfhtjx684j6no_gallery_background','group_8txfhtjx684j6no_field_591ca1f42e829'),(31401,705,'group_8txfhtjx684j6no_gallery_animations_enabled','0'),(31402,705,'_group_8txfhtjx684j6no_gallery_animations_enabled','field_5b7ece2e8e4e9'),(31403,705,'group_8txfhtjx684j6no_gallery_animations',''),(31404,705,'_group_8txfhtjx684j6no_gallery_animations','group_8txfhtjx684j6no_field_5b7ece258e4e8'),(31405,705,'group_u6maleu6wg7r14z_ctas_ctas','489'),(31406,705,'_group_u6maleu6wg7r14z_ctas_ctas','group_u6maleu6wg7r14z_field_5620077701227'),(31407,705,'group_u6maleu6wg7r14z_ctas_css_classes','cta'),(31408,705,'_group_u6maleu6wg7r14z_ctas_css_classes','group_u6maleu6wg7r14z_field_8795774705172'),(31409,705,'group_u6maleu6wg7r14z_ctas_animations_enabled','0'),(31410,705,'_group_u6maleu6wg7r14z_ctas_animations_enabled','field_5b7ece2e8e4e9'),(31411,705,'group_u6maleu6wg7r14z_ctas_animations',''),(31412,705,'_group_u6maleu6wg7r14z_ctas_animations','group_u6maleu6wg7r14z_field_5b7ece258e4e8'),(31413,580,'_yoast_wpseo_content_score','30'),(31414,580,'group_yzfih4f7wihjncf_testimonials_content','<h2>Customer Reviews</h2>'),(31415,580,'_group_yzfih4f7wihjncf_testimonials_content','group_yzfih4f7wihjncf_field_59232e687d160'),(31416,580,'group_yzfih4f7wihjncf_testimonials_testimonials_0_name','Katherine Simpson'),(31417,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_name','field_59232e937d163'),(31418,580,'group_yzfih4f7wihjncf_testimonials_testimonials_0_date',''),(31419,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_date','field_59232e967d164'),(31420,580,'group_yzfih4f7wihjncf_testimonials_testimonials_0_content','Had a new HVAC system installed since the system installed was inadequate. Sales service was excellent and installation was top notch. Now that I can test the efficiency of the heating system it is a vast improvement over the contractor-grade equipment that was existent.'),(31421,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_content','field_59232e817d162'),(31422,580,'group_yzfih4f7wihjncf_testimonials_testimonials_0_star_rating','5'),(31423,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_star_rating','field_59232e817d166'),(31424,580,'group_yzfih4f7wihjncf_testimonials_testimonials_0_avatar',''),(31425,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_avatar','field_59232e817d165'),(31426,580,'group_yzfih4f7wihjncf_testimonials_testimonials_1_name','Nancy Strite'),(31427,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_name','field_59232e937d163'),(31428,580,'group_yzfih4f7wihjncf_testimonials_testimonials_1_date',''),(31429,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_date','field_59232e967d164'),(31430,580,'group_yzfih4f7wihjncf_testimonials_testimonials_1_content','I\'ve used Mann for several years now.  They had my business when my furnace failed on a frigid Sunday and Brad came out in about half an hour and helped me. I\'ve had them for regular maintenance on my system since then, and they recently installed a new system after I relocated.  Their promptness and professionalism is not always found in some other businesses these days, so it\'s good to find people like this.'),(31431,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_content','field_59232e817d162'),(31432,580,'group_yzfih4f7wihjncf_testimonials_testimonials_1_star_rating','5'),(31433,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_star_rating','field_59232e817d166'),(31434,580,'group_yzfih4f7wihjncf_testimonials_testimonials_1_avatar',''),(31435,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_avatar','field_59232e817d165'),(31436,580,'group_yzfih4f7wihjncf_testimonials_testimonials_2_name','Stephen C'),(31437,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_name','field_59232e937d163'),(31438,580,'group_yzfih4f7wihjncf_testimonials_testimonials_2_date',''),(31439,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_date','field_59232e967d164'),(31440,580,'group_yzfih4f7wihjncf_testimonials_testimonials_2_content','Amber is amazing. They do great work for a reasonable price with awesome customer service.\r\n'),(31441,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_content','field_59232e817d162'),(31442,580,'group_yzfih4f7wihjncf_testimonials_testimonials_2_star_rating','5'),(31443,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_star_rating','field_59232e817d166'),(31444,580,'group_yzfih4f7wihjncf_testimonials_testimonials_2_avatar',''),(31445,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_avatar','field_59232e817d165'),(31446,580,'group_yzfih4f7wihjncf_testimonials_testimonials_3_name','W T'),(31447,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_name','field_59232e937d163'),(31448,580,'group_yzfih4f7wihjncf_testimonials_testimonials_3_date',''),(31449,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_date','field_59232e967d164'),(31450,580,'group_yzfih4f7wihjncf_testimonials_testimonials_3_content','Great service! Spoke to Chandler who was able to answer all of my questions and truly seemed to care!'),(31451,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_content','field_59232e817d162'),(31452,580,'group_yzfih4f7wihjncf_testimonials_testimonials_3_star_rating','5'),(31453,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_star_rating','field_59232e817d166'),(31454,580,'group_yzfih4f7wihjncf_testimonials_testimonials_3_avatar',''),(31455,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_avatar','field_59232e817d165'),(31456,580,'group_yzfih4f7wihjncf_testimonials_testimonials_4_name','Thomas Wood'),(31457,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_name','field_59232e937d163'),(31458,580,'group_yzfih4f7wihjncf_testimonials_testimonials_4_date',''),(31459,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_date','field_59232e967d164'),(31460,580,'group_yzfih4f7wihjncf_testimonials_testimonials_4_content','I\'ve had Jeff come out twice now. Once for a repair and once for maintenance. He is prompt, knowledgeable, and very personable. I would highly recommend Jeff and Mann Heating and Plumbing to anyone in need of service or maintenance of their heating and cooling systems.'),(31461,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_content','field_59232e817d162'),(31462,580,'group_yzfih4f7wihjncf_testimonials_testimonials_4_star_rating','5'),(31463,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_star_rating','field_59232e817d166'),(31464,580,'group_yzfih4f7wihjncf_testimonials_testimonials_4_avatar',''),(31465,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_avatar','field_59232e817d165'),(31466,580,'group_yzfih4f7wihjncf_testimonials_testimonials_5_name','James M. Thomas'),(31467,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_name','field_59232e937d163'),(31468,580,'group_yzfih4f7wihjncf_testimonials_testimonials_5_date',''),(31469,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_date','field_59232e967d164'),(31470,580,'group_yzfih4f7wihjncf_testimonials_testimonials_5_content','Chandler at Mann Plumbing reached out to us regarding an issue that came from a sewer line repair.  He quickly addressed and corrected the issue and provided more help with a new problem.  Customer service!'),(31471,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_content','field_59232e817d162'),(31472,580,'group_yzfih4f7wihjncf_testimonials_testimonials_5_star_rating','5'),(31473,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_star_rating','field_59232e817d166'),(31474,580,'group_yzfih4f7wihjncf_testimonials_testimonials_5_avatar',''),(31475,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_avatar','field_59232e817d165'),(31476,580,'group_yzfih4f7wihjncf_testimonials_testimonials_6_name','Stephen Lepak'),(31477,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_name','field_59232e937d163'),(31478,580,'group_yzfih4f7wihjncf_testimonials_testimonials_6_date',''),(31479,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_date','field_59232e967d164'),(31480,580,'group_yzfih4f7wihjncf_testimonials_testimonials_6_content','They came back and fixed an issue with my strainer basket leaking. They originally fixed it 9 months ago. They came out with no questions asked and took care of the problem in less than 10 mins. They will forever have my business because they have an excellent business model.'),(31481,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_content','field_59232e817d162'),(31482,580,'group_yzfih4f7wihjncf_testimonials_testimonials_6_star_rating','5'),(31483,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_star_rating','field_59232e817d166'),(31484,580,'group_yzfih4f7wihjncf_testimonials_testimonials_6_avatar',''),(31485,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_avatar','field_59232e817d165'),(31486,580,'group_yzfih4f7wihjncf_testimonials_testimonials_7_name','Alexzandra Ash'),(31487,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_name','field_59232e937d163'),(31488,580,'group_yzfih4f7wihjncf_testimonials_testimonials_7_date',''),(31489,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_date','field_59232e967d164'),(31490,580,'group_yzfih4f7wihjncf_testimonials_testimonials_7_content','I started using Mann Plumbing 2 years ago when my central air stopped running on a very hot 4th of July.  A service tech came to my home immediately, and had my air fixed the same day.  Since then,  I have used them several times for plumbing problems and for yearly maintenance on my heating unit.  Every issue I\'ve had, they\'ve fixed at a reasonable cost and in a short amount of time.   Also, I can\'t say enough good things about two of Mann\'s Service Techs, Jeff and Shane.  Both men are prompt, professional, knowledgeable, courteous and tidy.  As long as Mann Plumbing and Heating is around, I can\'t imagine using any other company.'),(31491,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_content','field_59232e817d162'),(31492,580,'group_yzfih4f7wihjncf_testimonials_testimonials_7_star_rating','5'),(31493,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_star_rating','field_59232e817d166'),(31494,580,'group_yzfih4f7wihjncf_testimonials_testimonials_7_avatar',''),(31495,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_avatar','field_59232e817d165'),(31496,580,'group_yzfih4f7wihjncf_testimonials_testimonials_8_name','Chris Cassner'),(31497,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_name','field_59232e937d163'),(31498,580,'group_yzfih4f7wihjncf_testimonials_testimonials_8_date',''),(31499,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_date','field_59232e967d164'),(31500,580,'group_yzfih4f7wihjncf_testimonials_testimonials_8_content','Always professional, and the work is excellent.  When it\'s an emergency they are always quick to respond.  I have used them for my rental properties for years and I\'ve never been disappointed.'),(31501,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_content','field_59232e817d162'),(31502,580,'group_yzfih4f7wihjncf_testimonials_testimonials_8_star_rating',''),(31503,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_star_rating','field_59232e817d166'),(31504,580,'group_yzfih4f7wihjncf_testimonials_testimonials_8_avatar',''),(31505,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_avatar','field_59232e817d165'),(31506,580,'group_yzfih4f7wihjncf_testimonials_testimonials_9_name','Bernard McClure'),(31507,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_name','field_59232e937d163'),(31508,580,'group_yzfih4f7wihjncf_testimonials_testimonials_9_date',''),(31509,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_date','field_59232e967d164'),(31510,580,'group_yzfih4f7wihjncf_testimonials_testimonials_9_content','Integrity, the most important word I can say. Very few companies work this way anymore. It\'s all about up-selling their products and not about doing the job right. Mann came in after dealing with Sandwell HVAC and provided us with excellent service. They were very professional and courteous. The team replaced our whole heating and cooling system in 3 days. First night the performance was noticeably improved. If you are looking for a company you can trust go no further. They have our vote.'),(31511,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_content','field_59232e817d162'),(31512,580,'group_yzfih4f7wihjncf_testimonials_testimonials_9_star_rating','5'),(31513,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_star_rating','field_59232e817d166'),(31514,580,'group_yzfih4f7wihjncf_testimonials_testimonials_9_avatar',''),(31515,580,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_avatar','field_59232e817d165'),(31526,580,'group_yzfih4f7wihjncf_testimonials_testimonials','10'),(31527,580,'_group_yzfih4f7wihjncf_testimonials_testimonials','group_yzfih4f7wihjncf_field_59232e6d7d161'),(31528,580,'group_yzfih4f7wihjncf_testimonials_button','a:3:{s:4:\"text\";s:12:\"More Reviews\";s:3:\"url\";s:214:\"https://www.google.com/search?q=Mann+Plumbing+and+Heating%2C+LLC&oq=Mann+Plumbing+and+Heating%2C+LLC&aqs=chrome..69i57j69i59j0j69i60l3.477j0j4&sourceid=chrome&ie=UTF-8#lrd=0x89c9a1bbae80bfbd:0x3850750a850579f0,1,,,\";s:8:\"external\";s:1:\"1\";}'),(31529,580,'_group_yzfih4f7wihjncf_testimonials_button','group_yzfih4f7wihjncf_field_59232e687d123'),(31530,580,'group_yzfih4f7wihjncf_testimonials_css_classes',''),(31531,580,'_group_yzfih4f7wihjncf_testimonials_css_classes','group_yzfih4f7wihjncf_field_4310619693162'),(31532,580,'group_yzfih4f7wihjncf_testimonials_enable_content_limit','0'),(31533,580,'_group_yzfih4f7wihjncf_testimonials_enable_content_limit','group_yzfih4f7wihjncf_field_34r5654rfg45'),(31534,580,'group_yzfih4f7wihjncf_testimonials_content_limit_range','120'),(31535,580,'_group_yzfih4f7wihjncf_testimonials_content_limit_range','group_yzfih4f7wihjncf_field_847h9938h3k39'),(31536,580,'group_yzfih4f7wihjncf_testimonials_slides_to_show','0'),(31537,580,'_group_yzfih4f7wihjncf_testimonials_slides_to_show','group_yzfih4f7wihjncf_field_8401674674123'),(31538,580,'group_yzfih4f7wihjncf_testimonials_arrow_placement','sides'),(31539,580,'_group_yzfih4f7wihjncf_testimonials_arrow_placement','group_yzfih4f7wihjncf_field_124793247623'),(31540,580,'group_yzfih4f7wihjncf_testimonials_arrow_color','default'),(31541,580,'_group_yzfih4f7wihjncf_testimonials_arrow_color','group_yzfih4f7wihjncf_field_654793247766'),(31542,580,'group_yzfih4f7wihjncf_testimonials_enable_arrow_background','default'),(31543,580,'_group_yzfih4f7wihjncf_testimonials_enable_arrow_background','group_yzfih4f7wihjncf_field_60232e6872399'),(31544,580,'group_yzfih4f7wihjncf_testimonials_arrow_background_color',''),(31545,580,'_group_yzfih4f7wihjncf_testimonials_arrow_background_color','group_yzfih4f7wihjncf_field_591b6d8fe1000'),(31546,580,'group_yzfih4f7wihjncf_testimonials_enable_padding','1'),(31547,580,'_group_yzfih4f7wihjncf_testimonials_enable_padding','group_yzfih4f7wihjncf_field_59232e687d188'),(31548,580,'group_yzfih4f7wihjncf_testimonials_padding_top','50'),(31549,580,'_group_yzfih4f7wihjncf_testimonials_padding_top','group_yzfih4f7wihjncf_field_59232e687d189'),(31550,580,'group_yzfih4f7wihjncf_testimonials_padding_bottom','50'),(31551,580,'_group_yzfih4f7wihjncf_testimonials_padding_bottom','group_yzfih4f7wihjncf_field_59232e687d187'),(31552,580,'group_yzfih4f7wihjncf_testimonials_button_alignment','left'),(31553,580,'_group_yzfih4f7wihjncf_testimonials_button_alignment','group_yzfih4f7wihjncf_field_8591648772644'),(31554,580,'group_yzfih4f7wihjncf_testimonials_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(31555,580,'_group_yzfih4f7wihjncf_testimonials_background','group_yzfih4f7wihjncf_field_59232e687d167'),(31556,580,'group_yzfih4f7wihjncf_testimonials_animations_enabled','1'),(31557,580,'_group_yzfih4f7wihjncf_testimonials_animations_enabled','field_5b7ece2e8e4e9'),(31558,580,'group_yzfih4f7wihjncf_testimonials_animations',''),(31559,580,'_group_yzfih4f7wihjncf_testimonials_animations','group_yzfih4f7wihjncf_field_5b7ece258e4e8'),(31560,580,'group_uxoj4z6axzyhvze_ctas_ctas','489'),(31561,580,'_group_uxoj4z6axzyhvze_ctas_ctas','group_uxoj4z6axzyhvze_field_5620077701227'),(31562,580,'group_uxoj4z6axzyhvze_ctas_css_classes','cta'),(31563,580,'_group_uxoj4z6axzyhvze_ctas_css_classes','group_uxoj4z6axzyhvze_field_8795774705172'),(31564,580,'group_uxoj4z6axzyhvze_ctas_animations_enabled','0'),(31565,580,'_group_uxoj4z6axzyhvze_ctas_animations_enabled','field_5b7ece2e8e4e9'),(31566,580,'group_uxoj4z6axzyhvze_ctas_animations',''),(31567,580,'_group_uxoj4z6axzyhvze_ctas_animations','group_uxoj4z6axzyhvze_field_5b7ece258e4e8'),(31880,709,'subheading',''),(31881,709,'_subheading','field_5976417756400'),(31882,709,'group_yzfih4f7wihjncf_testimonials_content','<h2>Customer Reviews</h2>'),(31883,709,'_group_yzfih4f7wihjncf_testimonials_content','group_yzfih4f7wihjncf_field_59232e687d160'),(31884,709,'group_yzfih4f7wihjncf_testimonials_testimonials_0_name','Amber Florig'),(31885,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_name','field_59232e937d163'),(31886,709,'group_yzfih4f7wihjncf_testimonials_testimonials_0_date',''),(31887,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_date','field_59232e967d164'),(31888,709,'group_yzfih4f7wihjncf_testimonials_testimonials_0_content','Always respond in a timely fashion.  Very knowledgeable technicians also! Great Company all around! Would definitely go to Mann Plumbing and Heating before anywhere else! You won\'t be disappointed!!!!'),(31889,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_content','field_59232e817d162'),(31890,709,'group_yzfih4f7wihjncf_testimonials_testimonials_0_star_rating','5'),(31891,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_star_rating','field_59232e817d166'),(31892,709,'group_yzfih4f7wihjncf_testimonials_testimonials_0_avatar',''),(31893,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_avatar','field_59232e817d165'),(31894,709,'group_yzfih4f7wihjncf_testimonials_testimonials_1_name','Katherine Simpson'),(31895,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_name','field_59232e937d163'),(31896,709,'group_yzfih4f7wihjncf_testimonials_testimonials_1_date',''),(31897,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_date','field_59232e967d164'),(31898,709,'group_yzfih4f7wihjncf_testimonials_testimonials_1_content','Had a new HVAC system installed since the system installed was inadequate. Sales service was excellent and installation was top notch. Now that I can test the efficiency of the heating system it is a vast improvement over the contractor-grade equipment that was existent.'),(31899,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_content','field_59232e817d162'),(31900,709,'group_yzfih4f7wihjncf_testimonials_testimonials_1_star_rating','5'),(31901,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_star_rating','field_59232e817d166'),(31902,709,'group_yzfih4f7wihjncf_testimonials_testimonials_1_avatar',''),(31903,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_avatar','field_59232e817d165'),(31904,709,'group_yzfih4f7wihjncf_testimonials_testimonials_2_name','Nancy Strite'),(31905,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_name','field_59232e937d163'),(31906,709,'group_yzfih4f7wihjncf_testimonials_testimonials_2_date',''),(31907,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_date','field_59232e967d164'),(31908,709,'group_yzfih4f7wihjncf_testimonials_testimonials_2_content','I\'ve used Mann for several years now.  They had my business when my furnace failed on a frigid Sunday and Brad came out in about half an hour and helped me. I\'ve had them for regular maintenance on my system since then, and they recently installed a new system after I relocated.  Their promptness and professionalism is not always found in some other businesses these days, so it\'s good to find people like this.'),(31909,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_content','field_59232e817d162'),(31910,709,'group_yzfih4f7wihjncf_testimonials_testimonials_2_star_rating','5'),(31911,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_star_rating','field_59232e817d166'),(31912,709,'group_yzfih4f7wihjncf_testimonials_testimonials_2_avatar',''),(31913,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_avatar','field_59232e817d165'),(31914,709,'group_yzfih4f7wihjncf_testimonials_testimonials_3_name','Stephen C'),(31915,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_name','field_59232e937d163'),(31916,709,'group_yzfih4f7wihjncf_testimonials_testimonials_3_date',''),(31917,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_date','field_59232e967d164'),(31918,709,'group_yzfih4f7wihjncf_testimonials_testimonials_3_content','Amber is amazing. They do great work for a reasonable price with awesome customer service.\r\n'),(31919,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_content','field_59232e817d162'),(31920,709,'group_yzfih4f7wihjncf_testimonials_testimonials_3_star_rating','5'),(31921,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_star_rating','field_59232e817d166'),(31922,709,'group_yzfih4f7wihjncf_testimonials_testimonials_3_avatar',''),(31923,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_avatar','field_59232e817d165'),(31924,709,'group_yzfih4f7wihjncf_testimonials_testimonials_4_name','W T'),(31925,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_name','field_59232e937d163'),(31926,709,'group_yzfih4f7wihjncf_testimonials_testimonials_4_date',''),(31927,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_date','field_59232e967d164'),(31928,709,'group_yzfih4f7wihjncf_testimonials_testimonials_4_content','Great service! Spoke to Chandler who was able to answer all of my questions and truly seemed to care!'),(31929,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_content','field_59232e817d162'),(31930,709,'group_yzfih4f7wihjncf_testimonials_testimonials_4_star_rating','5'),(31931,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_star_rating','field_59232e817d166'),(31932,709,'group_yzfih4f7wihjncf_testimonials_testimonials_4_avatar',''),(31933,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_avatar','field_59232e817d165'),(31934,709,'group_yzfih4f7wihjncf_testimonials_testimonials_5_name','Thomas Wood'),(31935,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_name','field_59232e937d163'),(31936,709,'group_yzfih4f7wihjncf_testimonials_testimonials_5_date',''),(31937,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_date','field_59232e967d164'),(31938,709,'group_yzfih4f7wihjncf_testimonials_testimonials_5_content','I\'ve had Jeff come out twice now. Once for a repair and once for maintenance. He is prompt, knowledgeable, and very personable. I would highly recommend Jeff and Mann Heating and Plumbing to anyone in need of service or maintenance of their heating and cooling systems.'),(31939,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_content','field_59232e817d162'),(31940,709,'group_yzfih4f7wihjncf_testimonials_testimonials_5_star_rating','5'),(31941,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_star_rating','field_59232e817d166'),(31942,709,'group_yzfih4f7wihjncf_testimonials_testimonials_5_avatar',''),(31943,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_avatar','field_59232e817d165'),(31944,709,'group_yzfih4f7wihjncf_testimonials_testimonials_6_name','James M. Thomas'),(31945,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_name','field_59232e937d163'),(31946,709,'group_yzfih4f7wihjncf_testimonials_testimonials_6_date',''),(31947,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_date','field_59232e967d164'),(31948,709,'group_yzfih4f7wihjncf_testimonials_testimonials_6_content','Chandler at Mann Plumbing reached out to us regarding an issue that came from a sewer line repair.  He quickly addressed and corrected the issue and provided more help with a new problem.  Customer service!'),(31949,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_content','field_59232e817d162'),(31950,709,'group_yzfih4f7wihjncf_testimonials_testimonials_6_star_rating','5'),(31951,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_star_rating','field_59232e817d166'),(31952,709,'group_yzfih4f7wihjncf_testimonials_testimonials_6_avatar',''),(31953,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_avatar','field_59232e817d165'),(31954,709,'group_yzfih4f7wihjncf_testimonials_testimonials_7_name','Stephen Lepak'),(31955,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_name','field_59232e937d163'),(31956,709,'group_yzfih4f7wihjncf_testimonials_testimonials_7_date',''),(31957,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_date','field_59232e967d164'),(31958,709,'group_yzfih4f7wihjncf_testimonials_testimonials_7_content','They came back and fixed an issue with my strainer basket leaking. They originally fixed it 9 months ago. They came out with no questions asked and took care of the problem in less than 10 mins. They will forever have my business because they have an excellent business model.'),(31959,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_content','field_59232e817d162'),(31960,709,'group_yzfih4f7wihjncf_testimonials_testimonials_7_star_rating','5'),(31961,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_star_rating','field_59232e817d166'),(31962,709,'group_yzfih4f7wihjncf_testimonials_testimonials_7_avatar',''),(31963,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_avatar','field_59232e817d165'),(31964,709,'group_yzfih4f7wihjncf_testimonials_testimonials_8_name','Alexzandra Ash'),(31965,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_name','field_59232e937d163'),(31966,709,'group_yzfih4f7wihjncf_testimonials_testimonials_8_date',''),(31967,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_date','field_59232e967d164'),(31968,709,'group_yzfih4f7wihjncf_testimonials_testimonials_8_content','I started using Mann Plumbing 2 years ago when my central air stopped running on a very hot 4th of July.  A service tech came to my home immediately, and had my air fixed the same day.  Since then,  I have used them several times for plumbing problems and for yearly maintenance on my heating unit.  Every issue I\'ve had, they\'ve fixed at a reasonable cost and in a short amount of time.   Also, I can\'t say enough good things about two of Mann\'s Service Techs, Jeff and Shane.  Both men are prompt, professional, knowledgeable, courteous and tidy.  As long as Mann Plumbing and Heating is around, I can\'t imagine using any other company.'),(31969,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_content','field_59232e817d162'),(31970,709,'group_yzfih4f7wihjncf_testimonials_testimonials_8_star_rating','5'),(31971,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_star_rating','field_59232e817d166'),(31972,709,'group_yzfih4f7wihjncf_testimonials_testimonials_8_avatar',''),(31973,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_avatar','field_59232e817d165'),(31974,709,'group_yzfih4f7wihjncf_testimonials_testimonials_9_name','Chris Cassner'),(31975,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_name','field_59232e937d163'),(31976,709,'group_yzfih4f7wihjncf_testimonials_testimonials_9_date',''),(31977,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_date','field_59232e967d164'),(31978,709,'group_yzfih4f7wihjncf_testimonials_testimonials_9_content','Always professional, and the work is excellent.  When it\'s an emergency they are always quick to respond.  I have used them for my rental properties for years and I\'ve never been disappointed.'),(31979,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_content','field_59232e817d162'),(31980,709,'group_yzfih4f7wihjncf_testimonials_testimonials_9_star_rating',''),(31981,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_star_rating','field_59232e817d166'),(31982,709,'group_yzfih4f7wihjncf_testimonials_testimonials_9_avatar',''),(31983,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_avatar','field_59232e817d165'),(31984,709,'group_yzfih4f7wihjncf_testimonials_testimonials_10_name','Bernard McClure'),(31985,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_10_name','field_59232e937d163'),(31986,709,'group_yzfih4f7wihjncf_testimonials_testimonials_10_date',''),(31987,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_10_date','field_59232e967d164'),(31988,709,'group_yzfih4f7wihjncf_testimonials_testimonials_10_content','Integrity, the most important word I can say. Very few companies work this way anymore. It\'s all about up-selling their products and not about doing the job right. Mann came in after dealing with Sandwell HVAC and provided us with excellent service. They were very professional and courteous. The team replaced our whole heating and cooling system in 3 days. First night the performance was noticeably improved. If you are looking for a company you can trust go no further. They have our vote.'),(31989,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_10_content','field_59232e817d162'),(31990,709,'group_yzfih4f7wihjncf_testimonials_testimonials_10_star_rating','5'),(31991,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_10_star_rating','field_59232e817d166'),(31992,709,'group_yzfih4f7wihjncf_testimonials_testimonials_10_avatar',''),(31993,709,'_group_yzfih4f7wihjncf_testimonials_testimonials_10_avatar','field_59232e817d165'),(31994,709,'group_yzfih4f7wihjncf_testimonials_testimonials','11'),(31995,709,'_group_yzfih4f7wihjncf_testimonials_testimonials','group_yzfih4f7wihjncf_field_59232e6d7d161'),(31996,709,'group_yzfih4f7wihjncf_testimonials_button','a:3:{s:4:\"text\";s:12:\"More Reviews\";s:3:\"url\";s:214:\"https://www.google.com/search?q=Mann+Plumbing+and+Heating%2C+LLC&oq=Mann+Plumbing+and+Heating%2C+LLC&aqs=chrome..69i57j69i59j0j69i60l3.477j0j4&sourceid=chrome&ie=UTF-8#lrd=0x89c9a1bbae80bfbd:0x3850750a850579f0,1,,,\";s:8:\"external\";s:1:\"1\";}'),(31997,709,'_group_yzfih4f7wihjncf_testimonials_button','group_yzfih4f7wihjncf_field_59232e687d123'),(31998,709,'group_yzfih4f7wihjncf_testimonials_css_classes',''),(31999,709,'_group_yzfih4f7wihjncf_testimonials_css_classes','group_yzfih4f7wihjncf_field_4310619693162'),(32000,709,'group_yzfih4f7wihjncf_testimonials_enable_content_limit','0'),(32001,709,'_group_yzfih4f7wihjncf_testimonials_enable_content_limit','group_yzfih4f7wihjncf_field_34r5654rfg45'),(32002,709,'group_yzfih4f7wihjncf_testimonials_content_limit_range','120'),(32003,709,'_group_yzfih4f7wihjncf_testimonials_content_limit_range','group_yzfih4f7wihjncf_field_847h9938h3k39'),(32004,709,'group_yzfih4f7wihjncf_testimonials_slides_to_show','0'),(32005,709,'_group_yzfih4f7wihjncf_testimonials_slides_to_show','group_yzfih4f7wihjncf_field_8401674674123'),(32006,709,'group_yzfih4f7wihjncf_testimonials_arrow_placement','sides'),(32007,709,'_group_yzfih4f7wihjncf_testimonials_arrow_placement','group_yzfih4f7wihjncf_field_124793247623'),(32008,709,'group_yzfih4f7wihjncf_testimonials_arrow_color','default'),(32009,709,'_group_yzfih4f7wihjncf_testimonials_arrow_color','group_yzfih4f7wihjncf_field_654793247766'),(32010,709,'group_yzfih4f7wihjncf_testimonials_enable_arrow_background','default'),(32011,709,'_group_yzfih4f7wihjncf_testimonials_enable_arrow_background','group_yzfih4f7wihjncf_field_60232e6872399'),(32012,709,'group_yzfih4f7wihjncf_testimonials_arrow_background_color',''),(32013,709,'_group_yzfih4f7wihjncf_testimonials_arrow_background_color','group_yzfih4f7wihjncf_field_591b6d8fe1000'),(32014,709,'group_yzfih4f7wihjncf_testimonials_enable_padding','1'),(32015,709,'_group_yzfih4f7wihjncf_testimonials_enable_padding','group_yzfih4f7wihjncf_field_59232e687d188'),(32016,709,'group_yzfih4f7wihjncf_testimonials_padding_top','50'),(32017,709,'_group_yzfih4f7wihjncf_testimonials_padding_top','group_yzfih4f7wihjncf_field_59232e687d189'),(32018,709,'group_yzfih4f7wihjncf_testimonials_padding_bottom','50'),(32019,709,'_group_yzfih4f7wihjncf_testimonials_padding_bottom','group_yzfih4f7wihjncf_field_59232e687d187'),(32020,709,'group_yzfih4f7wihjncf_testimonials_button_alignment','left'),(32021,709,'_group_yzfih4f7wihjncf_testimonials_button_alignment','group_yzfih4f7wihjncf_field_8591648772644'),(32022,709,'group_yzfih4f7wihjncf_testimonials_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(32023,709,'_group_yzfih4f7wihjncf_testimonials_background','group_yzfih4f7wihjncf_field_59232e687d167'),(32024,709,'group_yzfih4f7wihjncf_testimonials_animations_enabled','0'),(32025,709,'_group_yzfih4f7wihjncf_testimonials_animations_enabled','field_5b7ece2e8e4e9'),(32026,709,'group_yzfih4f7wihjncf_testimonials_animations',''),(32027,709,'_group_yzfih4f7wihjncf_testimonials_animations','group_yzfih4f7wihjncf_field_5b7ece258e4e8'),(32028,709,'group_uxoj4z6axzyhvze_ctas_ctas','489'),(32029,709,'_group_uxoj4z6axzyhvze_ctas_ctas','group_uxoj4z6axzyhvze_field_5620077701227'),(32030,709,'group_uxoj4z6axzyhvze_ctas_css_classes','cta'),(32031,709,'_group_uxoj4z6axzyhvze_ctas_css_classes','group_uxoj4z6axzyhvze_field_8795774705172'),(32032,709,'group_uxoj4z6axzyhvze_ctas_animations_enabled','0'),(32033,709,'_group_uxoj4z6axzyhvze_ctas_animations_enabled','field_5b7ece2e8e4e9'),(32034,709,'group_uxoj4z6axzyhvze_ctas_animations',''),(32035,709,'_group_uxoj4z6axzyhvze_ctas_animations','group_uxoj4z6axzyhvze_field_5b7ece258e4e8'),(32036,585,'_yoast_wpseo_content_score','30'),(32037,585,'group_s1z03s57s2gssas_content_area_columns','single'),(32038,585,'_group_s1z03s57s2gssas_content_area_columns','group_s1z03s57s2gssas_field_5923225383814'),(32039,585,'group_s1z03s57s2gssas_content_area_width','medium'),(32040,585,'_group_s1z03s57s2gssas_content_area_width','group_s1z03s57s2gssas_field_5923225383891'),(32041,585,'group_s1z03s57s2gssas_content_area_content_lead',''),(32042,585,'_group_s1z03s57s2gssas_content_area_content_lead','group_s1z03s57s2gssas_field_0079736876206'),(32043,585,'group_s1z03s57s2gssas_content_area_content','<h5>Stay tuned, this page is coming soon!</h5>'),(32044,585,'_group_s1z03s57s2gssas_content_area_content','group_s1z03s57s2gssas_field_5923228483815'),(32045,585,'group_s1z03s57s2gssas_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(32046,585,'_group_s1z03s57s2gssas_content_area_button','group_s1z03s57s2gssas_field_5923225383819'),(32047,585,'group_s1z03s57s2gssas_content_area_css_classes',''),(32048,585,'_group_s1z03s57s2gssas_content_area_css_classes','group_s1z03s57s2gssas_field_4554768684187'),(32049,585,'group_s1z03s57s2gssas_content_area_align','centered'),(32050,585,'_group_s1z03s57s2gssas_content_area_align','group_s1z03s57s2gssas_field_5923225383899'),(32051,585,'group_s1z03s57s2gssas_content_area_enable_padding','1'),(32052,585,'_group_s1z03s57s2gssas_content_area_enable_padding','group_s1z03s57s2gssas_field_5923225383901'),(32053,585,'group_s1z03s57s2gssas_content_area_padding_top','20'),(32054,585,'_group_s1z03s57s2gssas_content_area_padding_top','group_s1z03s57s2gssas_field_5923225383902'),(32055,585,'group_s1z03s57s2gssas_content_area_padding_bottom','20'),(32056,585,'_group_s1z03s57s2gssas_content_area_padding_bottom','group_s1z03s57s2gssas_field_5923225383903'),(32057,585,'group_s1z03s57s2gssas_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(32058,585,'_group_s1z03s57s2gssas_content_area_background','group_s1z03s57s2gssas_field_5923225383818'),(32059,585,'group_s1z03s57s2gssas_content_area_animations_enabled','0'),(32060,585,'_group_s1z03s57s2gssas_content_area_animations_enabled','field_5b7ece2e8e4e9'),(32061,585,'group_s1z03s57s2gssas_content_area_animations',''),(32062,585,'_group_s1z03s57s2gssas_content_area_animations','group_s1z03s57s2gssas_field_5b7ece258e4e8'),(32063,585,'group_exs5vc3me4a6ohn_ctas_ctas','489'),(32064,585,'_group_exs5vc3me4a6ohn_ctas_ctas','group_exs5vc3me4a6ohn_field_5620077701227'),(32065,585,'group_exs5vc3me4a6ohn_ctas_css_classes','cta'),(32066,585,'_group_exs5vc3me4a6ohn_ctas_css_classes','group_exs5vc3me4a6ohn_field_8795774705172'),(32067,585,'group_exs5vc3me4a6ohn_ctas_animations_enabled','0'),(32068,585,'_group_exs5vc3me4a6ohn_ctas_animations_enabled','field_5b7ece2e8e4e9'),(32069,585,'group_exs5vc3me4a6ohn_ctas_animations',''),(32070,585,'_group_exs5vc3me4a6ohn_ctas_animations','group_exs5vc3me4a6ohn_field_5b7ece258e4e8'),(32071,710,'subheading',''),(32072,710,'_subheading','field_5976417756400'),(32073,710,'group_s1z03s57s2gssas_content_area_columns','single'),(32074,710,'_group_s1z03s57s2gssas_content_area_columns','group_s1z03s57s2gssas_field_5923225383814'),(32075,710,'group_s1z03s57s2gssas_content_area_width','medium'),(32076,710,'_group_s1z03s57s2gssas_content_area_width','group_s1z03s57s2gssas_field_5923225383891'),(32077,710,'group_s1z03s57s2gssas_content_area_content_lead',''),(32078,710,'_group_s1z03s57s2gssas_content_area_content_lead','group_s1z03s57s2gssas_field_0079736876206'),(32079,710,'group_s1z03s57s2gssas_content_area_content','<h5>Stay tuned, this page is coming soon!</h5>'),(32080,710,'_group_s1z03s57s2gssas_content_area_content','group_s1z03s57s2gssas_field_5923228483815'),(32081,710,'group_s1z03s57s2gssas_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(32082,710,'_group_s1z03s57s2gssas_content_area_button','group_s1z03s57s2gssas_field_5923225383819'),(32083,710,'group_s1z03s57s2gssas_content_area_css_classes',''),(32084,710,'_group_s1z03s57s2gssas_content_area_css_classes','group_s1z03s57s2gssas_field_4554768684187'),(32085,710,'group_s1z03s57s2gssas_content_area_align','centered'),(32086,710,'_group_s1z03s57s2gssas_content_area_align','group_s1z03s57s2gssas_field_5923225383899'),(32087,710,'group_s1z03s57s2gssas_content_area_enable_padding','1'),(32088,710,'_group_s1z03s57s2gssas_content_area_enable_padding','group_s1z03s57s2gssas_field_5923225383901'),(32089,710,'group_s1z03s57s2gssas_content_area_padding_top','50'),(32090,710,'_group_s1z03s57s2gssas_content_area_padding_top','group_s1z03s57s2gssas_field_5923225383902'),(32091,710,'group_s1z03s57s2gssas_content_area_padding_bottom','50'),(32092,710,'_group_s1z03s57s2gssas_content_area_padding_bottom','group_s1z03s57s2gssas_field_5923225383903'),(32093,710,'group_s1z03s57s2gssas_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(32094,710,'_group_s1z03s57s2gssas_content_area_background','group_s1z03s57s2gssas_field_5923225383818'),(32095,710,'group_s1z03s57s2gssas_content_area_animations_enabled','0'),(32096,710,'_group_s1z03s57s2gssas_content_area_animations_enabled','field_5b7ece2e8e4e9'),(32097,710,'group_s1z03s57s2gssas_content_area_animations',''),(32098,710,'_group_s1z03s57s2gssas_content_area_animations','group_s1z03s57s2gssas_field_5b7ece258e4e8'),(32099,710,'group_exs5vc3me4a6ohn_ctas_ctas','489'),(32100,710,'_group_exs5vc3me4a6ohn_ctas_ctas','group_exs5vc3me4a6ohn_field_5620077701227'),(32101,710,'group_exs5vc3me4a6ohn_ctas_css_classes','cta'),(32102,710,'_group_exs5vc3me4a6ohn_ctas_css_classes','group_exs5vc3me4a6ohn_field_8795774705172'),(32103,710,'group_exs5vc3me4a6ohn_ctas_animations_enabled','0'),(32104,710,'_group_exs5vc3me4a6ohn_ctas_animations_enabled','field_5b7ece2e8e4e9'),(32105,710,'group_exs5vc3me4a6ohn_ctas_animations',''),(32106,710,'_group_exs5vc3me4a6ohn_ctas_animations','group_exs5vc3me4a6ohn_field_5b7ece258e4e8'),(32107,711,'subheading',''),(32108,711,'_subheading','field_5976417756400'),(32109,711,'group_s1z03s57s2gssas_content_area_columns','single'),(32110,711,'_group_s1z03s57s2gssas_content_area_columns','group_s1z03s57s2gssas_field_5923225383814'),(32111,711,'group_s1z03s57s2gssas_content_area_width','medium'),(32112,711,'_group_s1z03s57s2gssas_content_area_width','group_s1z03s57s2gssas_field_5923225383891'),(32113,711,'group_s1z03s57s2gssas_content_area_content_lead',''),(32114,711,'_group_s1z03s57s2gssas_content_area_content_lead','group_s1z03s57s2gssas_field_0079736876206'),(32115,711,'group_s1z03s57s2gssas_content_area_content','<h5>Stay tuned, this page is coming soon!</h5>'),(32116,711,'_group_s1z03s57s2gssas_content_area_content','group_s1z03s57s2gssas_field_5923228483815'),(32117,711,'group_s1z03s57s2gssas_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(32118,711,'_group_s1z03s57s2gssas_content_area_button','group_s1z03s57s2gssas_field_5923225383819'),(32119,711,'group_s1z03s57s2gssas_content_area_css_classes',''),(32120,711,'_group_s1z03s57s2gssas_content_area_css_classes','group_s1z03s57s2gssas_field_4554768684187'),(32121,711,'group_s1z03s57s2gssas_content_area_align','centered'),(32122,711,'_group_s1z03s57s2gssas_content_area_align','group_s1z03s57s2gssas_field_5923225383899'),(32123,711,'group_s1z03s57s2gssas_content_area_enable_padding','1'),(32124,711,'_group_s1z03s57s2gssas_content_area_enable_padding','group_s1z03s57s2gssas_field_5923225383901'),(32125,711,'group_s1z03s57s2gssas_content_area_padding_top','20'),(32126,711,'_group_s1z03s57s2gssas_content_area_padding_top','group_s1z03s57s2gssas_field_5923225383902'),(32127,711,'group_s1z03s57s2gssas_content_area_padding_bottom','20'),(32128,711,'_group_s1z03s57s2gssas_content_area_padding_bottom','group_s1z03s57s2gssas_field_5923225383903'),(32129,711,'group_s1z03s57s2gssas_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(32130,711,'_group_s1z03s57s2gssas_content_area_background','group_s1z03s57s2gssas_field_5923225383818'),(32131,711,'group_s1z03s57s2gssas_content_area_animations_enabled','0'),(32132,711,'_group_s1z03s57s2gssas_content_area_animations_enabled','field_5b7ece2e8e4e9'),(32133,711,'group_s1z03s57s2gssas_content_area_animations',''),(32134,711,'_group_s1z03s57s2gssas_content_area_animations','group_s1z03s57s2gssas_field_5b7ece258e4e8'),(32135,711,'group_exs5vc3me4a6ohn_ctas_ctas','489'),(32136,711,'_group_exs5vc3me4a6ohn_ctas_ctas','group_exs5vc3me4a6ohn_field_5620077701227'),(32137,711,'group_exs5vc3me4a6ohn_ctas_css_classes','cta'),(32138,711,'_group_exs5vc3me4a6ohn_ctas_css_classes','group_exs5vc3me4a6ohn_field_8795774705172'),(32139,711,'group_exs5vc3me4a6ohn_ctas_animations_enabled','0'),(32140,711,'_group_exs5vc3me4a6ohn_ctas_animations_enabled','field_5b7ece2e8e4e9'),(32141,711,'group_exs5vc3me4a6ohn_ctas_animations',''),(32142,711,'_group_exs5vc3me4a6ohn_ctas_animations','group_exs5vc3me4a6ohn_field_5b7ece258e4e8'),(32143,712,'_wp_attached_file','2019/12/Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor.jpg'),(32144,712,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.3625649638135808;s:5:\"bytes\";i:25275;s:11:\"size_before\";i:579361;s:10:\"size_after\";i:554086;s:4:\"time\";d:0.28999999999999998;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:9.0800000000000001;s:5:\"bytes\";i:855;s:11:\"size_before\";i:9421;s:10:\"size_after\";i:8566;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9699999999999998;s:5:\"bytes\";i:1288;s:11:\"size_before\";i:18468;s:10:\"size_after\";i:17180;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8700000000000001;s:5:\"bytes\";i:4031;s:11:\"size_before\";i:82690;s:10:\"size_after\";i:78659;s:4:\"time\";d:0.029999999999999999;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6200000000000001;s:5:\"bytes\";i:6012;s:11:\"size_before\";i:130011;s:10:\"size_after\";i:123999;s:4:\"time\";d:0.040000000000000001;}s:15:\"featured-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6600000000000001;s:5:\"bytes\";i:5443;s:11:\"size_before\";i:116771;s:10:\"size_after\";i:111328;s:4:\"time\";d:0.059999999999999998;}s:15:\"featured-tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:78659;s:10:\"size_after\";i:78659;s:4:\"time\";d:0.040000000000000001;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6799999999999997;s:5:\"bytes\";i:2151;s:11:\"size_before\";i:37893;s:10:\"size_after\";i:35742;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4800000000000004;s:5:\"bytes\";i:2571;s:11:\"size_before\";i:46907;s:10:\"size_after\";i:44336;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9900000000000002;s:5:\"bytes\";i:2924;s:11:\"size_before\";i:58541;s:10:\"size_after\";i:55617;s:4:\"time\";d:0.040000000000000001;}}}'),(32145,712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:67:\"2019/12/Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor-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:67:\"Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:67:\"Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:68:\"Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-medium\";a:4:{s:4:\"file\";s:67:\"Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor-960x540.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-tablet\";a:4:{s:4:\"file\";s:67:\"Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:67:\"Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:67:\"Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:67:\"Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor-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:{}}}'),(32146,712,'_wp_attachment_image_alt','Trane rebate offer'),(32147,582,'_yoast_wpseo_title','Offers | Mann Plumbing & Heating, LLC.'),(32148,582,'_yoast_wpseo_metadesc','Mann Plumbing and Heating are Plumbing Contractors, Air Conditioning Contractors and Systems, Heating Contractors and Specialties in Fayetteville, PA.'),(32150,582,'group_sc8btebc88ptzbl_content_area_columns','single'),(32151,582,'_group_sc8btebc88ptzbl_content_area_columns','group_sc8btebc88ptzbl_field_5923225383814'),(32152,582,'group_sc8btebc88ptzbl_content_area_width','large'),(32153,582,'_group_sc8btebc88ptzbl_content_area_width','group_sc8btebc88ptzbl_field_5923225383891'),(32154,582,'group_sc8btebc88ptzbl_content_area_content_lead',''),(32155,582,'_group_sc8btebc88ptzbl_content_area_content_lead','group_sc8btebc88ptzbl_field_0079736876206'),(32156,582,'group_sc8btebc88ptzbl_content_area_content','<h2>Coming Soon</h2>'),(32157,582,'_group_sc8btebc88ptzbl_content_area_content','group_sc8btebc88ptzbl_field_5923228483815'),(32158,582,'group_sc8btebc88ptzbl_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(32159,582,'_group_sc8btebc88ptzbl_content_area_button','group_sc8btebc88ptzbl_field_5923225383819'),(32160,582,'group_sc8btebc88ptzbl_content_area_css_classes',''),(32161,582,'_group_sc8btebc88ptzbl_content_area_css_classes','group_sc8btebc88ptzbl_field_4554768684187'),(32162,582,'group_sc8btebc88ptzbl_content_area_align','centered'),(32163,582,'_group_sc8btebc88ptzbl_content_area_align','group_sc8btebc88ptzbl_field_5923225383899'),(32164,582,'group_sc8btebc88ptzbl_content_area_enable_padding','1'),(32165,582,'_group_sc8btebc88ptzbl_content_area_enable_padding','group_sc8btebc88ptzbl_field_5923225383901'),(32166,582,'group_sc8btebc88ptzbl_content_area_padding_top','20'),(32167,582,'_group_sc8btebc88ptzbl_content_area_padding_top','group_sc8btebc88ptzbl_field_5923225383902'),(32168,582,'group_sc8btebc88ptzbl_content_area_padding_bottom','20'),(32169,582,'_group_sc8btebc88ptzbl_content_area_padding_bottom','group_sc8btebc88ptzbl_field_5923225383903'),(32170,582,'group_sc8btebc88ptzbl_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(32171,582,'_group_sc8btebc88ptzbl_content_area_background','group_sc8btebc88ptzbl_field_5923225383818'),(32172,582,'group_sc8btebc88ptzbl_content_area_animations_enabled','0'),(32173,582,'_group_sc8btebc88ptzbl_content_area_animations_enabled','field_5b7ece2e8e4e9'),(32174,582,'group_sc8btebc88ptzbl_content_area_animations',''),(32175,582,'_group_sc8btebc88ptzbl_content_area_animations','group_sc8btebc88ptzbl_field_5b7ece258e4e8'),(32176,582,'group_i0o5jwapcpx8ora_ctas_ctas','489'),(32177,582,'_group_i0o5jwapcpx8ora_ctas_ctas','group_i0o5jwapcpx8ora_field_5620077701227'),(32178,582,'group_i0o5jwapcpx8ora_ctas_css_classes','cta'),(32179,582,'_group_i0o5jwapcpx8ora_ctas_css_classes','group_i0o5jwapcpx8ora_field_8795774705172'),(32180,582,'group_i0o5jwapcpx8ora_ctas_animations_enabled','0'),(32181,582,'_group_i0o5jwapcpx8ora_ctas_animations_enabled','field_5b7ece2e8e4e9'),(32182,582,'group_i0o5jwapcpx8ora_ctas_animations',''),(32183,582,'_group_i0o5jwapcpx8ora_ctas_animations','group_i0o5jwapcpx8ora_field_5b7ece258e4e8'),(32184,713,'subheading',''),(32185,713,'_subheading','field_5976417756400'),(32186,713,'group_sc8btebc88ptzbl_content_area_columns','single'),(32187,713,'_group_sc8btebc88ptzbl_content_area_columns','group_sc8btebc88ptzbl_field_5923225383814'),(32188,713,'group_sc8btebc88ptzbl_content_area_width','large'),(32189,713,'_group_sc8btebc88ptzbl_content_area_width','group_sc8btebc88ptzbl_field_5923225383891'),(32190,713,'group_sc8btebc88ptzbl_content_area_content_lead',''),(32191,713,'_group_sc8btebc88ptzbl_content_area_content_lead','group_sc8btebc88ptzbl_field_0079736876206'),(32192,713,'group_sc8btebc88ptzbl_content_area_content','<img class=\"size-full wp-image-712 aligncenter\" src=\"/wp-content/uploads/2019/12/Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor.jpg\" alt=\"Trane rebate offer\" width=\"1200\" height=\"675\" />'),(32193,713,'_group_sc8btebc88ptzbl_content_area_content','group_sc8btebc88ptzbl_field_5923228483815'),(32194,713,'group_sc8btebc88ptzbl_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(32195,713,'_group_sc8btebc88ptzbl_content_area_button','group_sc8btebc88ptzbl_field_5923225383819'),(32196,713,'group_sc8btebc88ptzbl_content_area_css_classes',''),(32197,713,'_group_sc8btebc88ptzbl_content_area_css_classes','group_sc8btebc88ptzbl_field_4554768684187'),(32198,713,'group_sc8btebc88ptzbl_content_area_align','centered'),(32199,713,'_group_sc8btebc88ptzbl_content_area_align','group_sc8btebc88ptzbl_field_5923225383899'),(32200,713,'group_sc8btebc88ptzbl_content_area_enable_padding','1'),(32201,713,'_group_sc8btebc88ptzbl_content_area_enable_padding','group_sc8btebc88ptzbl_field_5923225383901'),(32202,713,'group_sc8btebc88ptzbl_content_area_padding_top','20'),(32203,713,'_group_sc8btebc88ptzbl_content_area_padding_top','group_sc8btebc88ptzbl_field_5923225383902'),(32204,713,'group_sc8btebc88ptzbl_content_area_padding_bottom','20'),(32205,713,'_group_sc8btebc88ptzbl_content_area_padding_bottom','group_sc8btebc88ptzbl_field_5923225383903'),(32206,713,'group_sc8btebc88ptzbl_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(32207,713,'_group_sc8btebc88ptzbl_content_area_background','group_sc8btebc88ptzbl_field_5923225383818'),(32208,713,'group_sc8btebc88ptzbl_content_area_animations_enabled','0'),(32209,713,'_group_sc8btebc88ptzbl_content_area_animations_enabled','field_5b7ece2e8e4e9'),(32210,713,'group_sc8btebc88ptzbl_content_area_animations',''),(32211,713,'_group_sc8btebc88ptzbl_content_area_animations','group_sc8btebc88ptzbl_field_5b7ece258e4e8'),(32212,713,'group_i0o5jwapcpx8ora_ctas_ctas','489'),(32213,713,'_group_i0o5jwapcpx8ora_ctas_ctas','group_i0o5jwapcpx8ora_field_5620077701227'),(32214,713,'group_i0o5jwapcpx8ora_ctas_css_classes','cta'),(32215,713,'_group_i0o5jwapcpx8ora_ctas_css_classes','group_i0o5jwapcpx8ora_field_8795774705172'),(32216,713,'group_i0o5jwapcpx8ora_ctas_animations_enabled','0'),(32217,713,'_group_i0o5jwapcpx8ora_ctas_animations_enabled','field_5b7ece2e8e4e9'),(32218,713,'group_i0o5jwapcpx8ora_ctas_animations',''),(32219,713,'_group_i0o5jwapcpx8ora_ctas_animations','group_i0o5jwapcpx8ora_field_5b7ece258e4e8'),(32220,714,'_wp_attached_file','2019/12/AtHomeBanner_600x300_B.png'),(32221,714,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:31.155426558831202;s:5:\"bytes\";i:38214;s:11:\"size_before\";i:122656;s:10:\"size_after\";i:84442;s:4:\"time\";d:0.39000000000000001;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:33.140000000000001;s:5:\"bytes\";i:4891;s:11:\"size_before\";i:14759;s:10:\"size_after\";i:9868;s:4:\"time\";d:0.059999999999999998;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.590000000000003;s:5:\"bytes\";i:9020;s:11:\"size_before\";i:25344;s:10:\"size_after\";i:16324;s:4:\"time\";d:0.059999999999999998;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.850000000000001;s:5:\"bytes\";i:18942;s:11:\"size_before\";i:51408;s:10:\"size_after\";i:32466;s:4:\"time\";d:0.10000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6399999999999997;s:5:\"bytes\";i:489;s:11:\"size_before\";i:8663;s:10:\"size_after\";i:8174;s:4:\"time\";d:0.059999999999999998;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8174;s:10:\"size_after\";i:8174;s:4:\"time\";d:0.059999999999999998;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.049999999999997;s:5:\"bytes\";i:4872;s:11:\"size_before\";i:14308;s:10:\"size_after\";i:9436;s:4:\"time\";d:0.050000000000000003;}}}'),(32222,714,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2019/12/AtHomeBanner_600x300_B.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"AtHomeBanner_600x300_B-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:34:\"AtHomeBanner_600x300_B-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:34:\"AtHomeBanner_600x300_B-480x240.png\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:34:\"AtHomeBanner_600x300_B-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:34:\"AtHomeBanner_600x300_B-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;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:{}}}'),(32223,714,'_wp_attachment_image_alt','Buy today, pay over time'),(32224,715,'_wp_attached_file','2019/12/payments-accepted-1.png'),(32225,715,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:44.556532967476393;s:5:\"bytes\";i:5521;s:11:\"size_before\";i:12391;s:10:\"size_after\";i:6870;s:4:\"time\";d:0.070000000000000007;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:41.009999999999998;s:5:\"bytes\";i:2132;s:11:\"size_before\";i:5199;s:10:\"size_after\";i:3067;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:47.119999999999997;s:5:\"bytes\";i:3389;s:11:\"size_before\";i:7192;s:10:\"size_after\";i:3803;s:4:\"time\";d:0.040000000000000001;}}}'),(32226,715,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:212;s:6:\"height\";i:69;s:4:\"file\";s:31:\"2019/12/payments-accepted-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"payments-accepted-1-150x69.png\";s:5:\"width\";i:150;s:6:\"height\";i:69;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:{}}}'),(32227,715,'_wp_attachment_image_alt','accepted payments'),(32229,588,'group_9c9flwfx75zpkho_content_area_columns','single'),(32230,588,'_group_9c9flwfx75zpkho_content_area_columns','group_9c9flwfx75zpkho_field_5923225383814'),(32231,588,'group_9c9flwfx75zpkho_content_area_width','medium'),(32232,588,'_group_9c9flwfx75zpkho_content_area_width','group_9c9flwfx75zpkho_field_5923225383891'),(32233,588,'group_9c9flwfx75zpkho_content_area_content_lead',''),(32234,588,'_group_9c9flwfx75zpkho_content_area_content_lead','group_9c9flwfx75zpkho_field_0079736876206'),(32235,588,'group_9c9flwfx75zpkho_content_area_content','<a href=\"https://retailservices.wellsfargo.com/ahapp/init-app?m=0024234437\" target=\"_blank\" rel=\"noopener\"><img class=\"size-full wp-image-714 aligncenter\" src=\"/wp-content/uploads/2020/12/MannWellsFargoFinancingBanner_12.16.2020.jpg\" alt=\"Special Finance for 72 Months\" width=\"300\" height=\"250\" /></a>\r\n\r\n<img class=\"size-full wp-image-715 aligncenter\" src=\"/wp-content/uploads/2019/12/payments-accepted-1.png\" alt=\"accepted payments\" width=\"212\" height=\"69\" />'),(32236,588,'_group_9c9flwfx75zpkho_content_area_content','group_9c9flwfx75zpkho_field_5923228483815'),(32237,588,'group_9c9flwfx75zpkho_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(32238,588,'_group_9c9flwfx75zpkho_content_area_button','group_9c9flwfx75zpkho_field_5923225383819'),(32239,588,'group_9c9flwfx75zpkho_content_area_css_classes',''),(32240,588,'_group_9c9flwfx75zpkho_content_area_css_classes','group_9c9flwfx75zpkho_field_4554768684187'),(32241,588,'group_9c9flwfx75zpkho_content_area_align','centered'),(32242,588,'_group_9c9flwfx75zpkho_content_area_align','group_9c9flwfx75zpkho_field_5923225383899'),(32243,588,'group_9c9flwfx75zpkho_content_area_enable_padding','1'),(32244,588,'_group_9c9flwfx75zpkho_content_area_enable_padding','group_9c9flwfx75zpkho_field_5923225383901'),(32245,588,'group_9c9flwfx75zpkho_content_area_padding_top','20'),(32246,588,'_group_9c9flwfx75zpkho_content_area_padding_top','group_9c9flwfx75zpkho_field_5923225383902'),(32247,588,'group_9c9flwfx75zpkho_content_area_padding_bottom','20'),(32248,588,'_group_9c9flwfx75zpkho_content_area_padding_bottom','group_9c9flwfx75zpkho_field_5923225383903'),(32249,588,'group_9c9flwfx75zpkho_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(32250,588,'_group_9c9flwfx75zpkho_content_area_background','group_9c9flwfx75zpkho_field_5923225383818'),(32251,588,'group_9c9flwfx75zpkho_content_area_animations_enabled','0'),(32252,588,'_group_9c9flwfx75zpkho_content_area_animations_enabled','field_5b7ece2e8e4e9'),(32253,588,'group_9c9flwfx75zpkho_content_area_animations',''),(32254,588,'_group_9c9flwfx75zpkho_content_area_animations','group_9c9flwfx75zpkho_field_5b7ece258e4e8'),(32255,588,'group_9gwabey53p04ngf_ctas_ctas','489'),(32256,588,'_group_9gwabey53p04ngf_ctas_ctas','group_9gwabey53p04ngf_field_5620077701227'),(32257,588,'group_9gwabey53p04ngf_ctas_css_classes','cta'),(32258,588,'_group_9gwabey53p04ngf_ctas_css_classes','group_9gwabey53p04ngf_field_8795774705172'),(32259,588,'group_9gwabey53p04ngf_ctas_animations_enabled','0'),(32260,588,'_group_9gwabey53p04ngf_ctas_animations_enabled','field_5b7ece2e8e4e9'),(32261,588,'group_9gwabey53p04ngf_ctas_animations',''),(32262,588,'_group_9gwabey53p04ngf_ctas_animations','group_9gwabey53p04ngf_field_5b7ece258e4e8'),(32335,718,'subheading',''),(32336,718,'_subheading','field_5976417756400'),(32337,718,'group_69kihebviq0vjyc_form_columns','single'),(32338,718,'_group_69kihebviq0vjyc_form_columns','group_69kihebviq0vjyc_field_8752483114003'),(32339,718,'group_69kihebviq0vjyc_form_content','<h3 style=\"text-align: center;\">Contact Us</h3>'),(32340,718,'_group_69kihebviq0vjyc_form_content','group_69kihebviq0vjyc_field_8752483114009'),(32341,718,'group_69kihebviq0vjyc_form_gravity_form','1'),(32342,718,'_group_69kihebviq0vjyc_form_gravity_form','group_69kihebviq0vjyc_field_8752483114008'),(32343,718,'group_69kihebviq0vjyc_form_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(32344,718,'_group_69kihebviq0vjyc_form_background','group_69kihebviq0vjyc_field_8752483114011'),(32345,718,'group_69kihebviq0vjyc_form_css_classes',''),(32346,718,'_group_69kihebviq0vjyc_form_css_classes','group_69kihebviq0vjyc_field_1554003208428'),(32347,718,'group_69kihebviq0vjyc_form_enable_padding','0'),(32348,718,'_group_69kihebviq0vjyc_form_enable_padding','group_69kihebviq0vjyc_field_8752483119801'),(32349,718,'group_69kihebviq0vjyc_form_padding_top','0'),(32350,718,'_group_69kihebviq0vjyc_form_padding_top','group_69kihebviq0vjyc_field_8752483119802'),(32351,718,'group_69kihebviq0vjyc_form_padding_bottom','0'),(32352,718,'_group_69kihebviq0vjyc_form_padding_bottom','group_69kihebviq0vjyc_field_8752483119803'),(32353,718,'group_rnimyv52b1l53jv_contact_info_layout','content-left'),(32354,718,'_group_rnimyv52b1l53jv_contact_info_layout','group_rnimyv52b1l53jv_field_2950329921081'),(32355,718,'group_rnimyv52b1l53jv_contact_info_layout_mobile','content-top'),(32356,718,'_group_rnimyv52b1l53jv_contact_info_layout_mobile','group_rnimyv52b1l53jv_field_295012559486'),(32357,718,'group_rnimyv52b1l53jv_contact_info_content','<h3>Mann Plumbing &amp; Heating, LLC.</h3>\r\n<strong>Address</strong>\r\n6210 Lincoln Way E\r\nFayetteville, PA 17222\r\n\r\n<strong>Phone</strong>\r\n[company-phone id=1]\r\n\r\n<strong>Hours of Operation</strong>\r\nMonday: 7:30 AM – 4:00 PM\r\nTuesday: 7:30 AM – 4:00 PM\r\nWednesday: 7:30 AM – 4:00 PM\r\nThursday: 7:30 AM – 4:00 PM\r\nFriday: 7:30 AM – 4:00 PM\r\n\r\n<strong>Emergency Service Available</strong>\r\n<strong>Seven Days A Week / 24 Hours A Day</strong>'),(32358,718,'_group_rnimyv52b1l53jv_contact_info_content','group_rnimyv52b1l53jv_field_2950329921082'),(32359,718,'group_rnimyv52b1l53jv_contact_info_multiple_locations','0'),(32360,718,'_group_rnimyv52b1l53jv_contact_info_multiple_locations','group_rnimyv52b1l53jv_field_2950329921979'),(32361,718,'group_rnimyv52b1l53jv_contact_info_location','a:3:{s:7:\"address\";s:71:\"Mann Plumbing and Heating, LLC, Lincoln Way East, Fayetteville, PA, USA\";s:3:\"lat\";s:17:\"39.90622919999999\";s:3:\"lng\";s:11:\"-77.5323874\";}'),(32362,718,'_group_rnimyv52b1l53jv_contact_info_location','group_rnimyv52b1l53jv_field_2950329921083'),(32363,718,'group_rnimyv52b1l53jv_contact_info_css_classes',''),(32364,718,'_group_rnimyv52b1l53jv_contact_info_css_classes','group_rnimyv52b1l53jv_field_2943940260591'),(32365,718,'group_rnimyv52b1l53jv_contact_info_enable_padding','0'),(32366,718,'_group_rnimyv52b1l53jv_contact_info_enable_padding','group_rnimyv52b1l53jv_field_2950329921034'),(32367,718,'group_rnimyv52b1l53jv_contact_info_padding_top','0'),(32368,718,'_group_rnimyv52b1l53jv_contact_info_padding_top','group_rnimyv52b1l53jv_field_2950329921035'),(32369,718,'group_rnimyv52b1l53jv_contact_info_padding_bottom','0'),(32370,718,'_group_rnimyv52b1l53jv_contact_info_padding_bottom','group_rnimyv52b1l53jv_field_2950329921036'),(32371,718,'group_rnimyv52b1l53jv_contact_info_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(32372,718,'_group_rnimyv52b1l53jv_contact_info_background','group_rnimyv52b1l53jv_field_2950329921085'),(32373,718,'group_rnimyv52b1l53jv_contact_info_animations_enabled','0'),(32374,718,'_group_rnimyv52b1l53jv_contact_info_animations_enabled','field_5b7ece2e8e4e9'),(32375,718,'group_rnimyv52b1l53jv_contact_info_animations',''),(32376,718,'_group_rnimyv52b1l53jv_contact_info_animations','group_rnimyv52b1l53jv_field_5b7ece258e4e8'),(32377,718,'group_69kihebviq0vjyc_form_animations_enabled','0'),(32378,718,'_group_69kihebviq0vjyc_form_animations_enabled','field_5b7ece2e8e4e9'),(32379,718,'group_69kihebviq0vjyc_form_animations',''),(32380,718,'_group_69kihebviq0vjyc_form_animations','group_69kihebviq0vjyc_field_5b7ece258e4e8'),(32381,719,'subheading',''),(32382,719,'_subheading','field_5976417756400'),(32383,719,'group_69kihebviq0vjyc_form_columns','single'),(32384,719,'_group_69kihebviq0vjyc_form_columns','group_69kihebviq0vjyc_field_8752483114003'),(32385,719,'group_69kihebviq0vjyc_form_content','<h3 style=\"text-align: center;\">Contact Us</h3>'),(32386,719,'_group_69kihebviq0vjyc_form_content','group_69kihebviq0vjyc_field_8752483114009'),(32387,719,'group_69kihebviq0vjyc_form_gravity_form','1'),(32388,719,'_group_69kihebviq0vjyc_form_gravity_form','group_69kihebviq0vjyc_field_8752483114008'),(32389,719,'group_69kihebviq0vjyc_form_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(32390,719,'_group_69kihebviq0vjyc_form_background','group_69kihebviq0vjyc_field_8752483114011'),(32391,719,'group_69kihebviq0vjyc_form_css_classes',''),(32392,719,'_group_69kihebviq0vjyc_form_css_classes','group_69kihebviq0vjyc_field_1554003208428'),(32393,719,'group_69kihebviq0vjyc_form_enable_padding','0'),(32394,719,'_group_69kihebviq0vjyc_form_enable_padding','group_69kihebviq0vjyc_field_8752483119801'),(32395,719,'group_69kihebviq0vjyc_form_padding_top','0'),(32396,719,'_group_69kihebviq0vjyc_form_padding_top','group_69kihebviq0vjyc_field_8752483119802'),(32397,719,'group_69kihebviq0vjyc_form_padding_bottom','0'),(32398,719,'_group_69kihebviq0vjyc_form_padding_bottom','group_69kihebviq0vjyc_field_8752483119803'),(32399,719,'group_rnimyv52b1l53jv_contact_info_layout','content-left'),(32400,719,'_group_rnimyv52b1l53jv_contact_info_layout','group_rnimyv52b1l53jv_field_2950329921081'),(32401,719,'group_rnimyv52b1l53jv_contact_info_layout_mobile','content-top'),(32402,719,'_group_rnimyv52b1l53jv_contact_info_layout_mobile','group_rnimyv52b1l53jv_field_295012559486'),(32403,719,'group_rnimyv52b1l53jv_contact_info_content','<h3>Mann Plumbing &amp; Heating, LLC.</h3>\r\n<strong>Address</strong>\r\n<a href=\"https://goo.gl/maps/fTgT1g4T7yXUkdud7\" target=\"_blank\" rel=\"noopener\">6210 Lincoln Way E\r\nFayetteville, PA 17222</a>\r\n\r\n<strong>Phone</strong>\r\n[company-phone id=1]\r\n\r\n<strong>Hours of Operation</strong>\r\nMonday: 7:30 AM – 4:00 PM\r\nTuesday: 7:30 AM – 4:00 PM\r\nWednesday: 7:30 AM – 4:00 PM\r\nThursday: 7:30 AM – 4:00 PM\r\nFriday: 7:30 AM – 4:00 PM\r\n\r\n<strong>Emergency Service Available</strong>\r\n<strong>Seven Days A Week / 24 Hours A Day</strong>'),(32404,719,'_group_rnimyv52b1l53jv_contact_info_content','group_rnimyv52b1l53jv_field_2950329921082'),(32405,719,'group_rnimyv52b1l53jv_contact_info_multiple_locations','0'),(32406,719,'_group_rnimyv52b1l53jv_contact_info_multiple_locations','group_rnimyv52b1l53jv_field_2950329921979'),(32407,719,'group_rnimyv52b1l53jv_contact_info_location','a:3:{s:7:\"address\";s:71:\"Mann Plumbing and Heating, LLC, Lincoln Way East, Fayetteville, PA, USA\";s:3:\"lat\";s:17:\"39.90622919999999\";s:3:\"lng\";s:11:\"-77.5323874\";}'),(32408,719,'_group_rnimyv52b1l53jv_contact_info_location','group_rnimyv52b1l53jv_field_2950329921083'),(32409,719,'group_rnimyv52b1l53jv_contact_info_css_classes',''),(32410,719,'_group_rnimyv52b1l53jv_contact_info_css_classes','group_rnimyv52b1l53jv_field_2943940260591'),(32411,719,'group_rnimyv52b1l53jv_contact_info_enable_padding','0'),(32412,719,'_group_rnimyv52b1l53jv_contact_info_enable_padding','group_rnimyv52b1l53jv_field_2950329921034'),(32413,719,'group_rnimyv52b1l53jv_contact_info_padding_top','0'),(32414,719,'_group_rnimyv52b1l53jv_contact_info_padding_top','group_rnimyv52b1l53jv_field_2950329921035'),(32415,719,'group_rnimyv52b1l53jv_contact_info_padding_bottom','0'),(32416,719,'_group_rnimyv52b1l53jv_contact_info_padding_bottom','group_rnimyv52b1l53jv_field_2950329921036'),(32417,719,'group_rnimyv52b1l53jv_contact_info_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(32418,719,'_group_rnimyv52b1l53jv_contact_info_background','group_rnimyv52b1l53jv_field_2950329921085'),(32419,719,'group_rnimyv52b1l53jv_contact_info_animations_enabled','0'),(32420,719,'_group_rnimyv52b1l53jv_contact_info_animations_enabled','field_5b7ece2e8e4e9'),(32421,719,'group_rnimyv52b1l53jv_contact_info_animations',''),(32422,719,'_group_rnimyv52b1l53jv_contact_info_animations','group_rnimyv52b1l53jv_field_5b7ece258e4e8'),(32423,719,'group_69kihebviq0vjyc_form_animations_enabled','0'),(32424,719,'_group_69kihebviq0vjyc_form_animations_enabled','field_5b7ece2e8e4e9'),(32425,719,'group_69kihebviq0vjyc_form_animations',''),(32426,719,'_group_69kihebviq0vjyc_form_animations','group_69kihebviq0vjyc_field_5b7ece258e4e8'),(32427,532,'_wp_attachment_image_alt','Mann Building exterior'),(32428,533,'_wp_attachment_image_alt','AC units'),(32429,536,'_wp_attachment_image_alt','HVAC repair man'),(32430,537,'_wp_attachment_image_alt','HVAC repair man'),(32431,538,'_wp_attachment_image_alt','AC unit with red overlay'),(32432,540,'_wp_attachment_image_alt','Mann Plumbing & Heating logo'),(32433,541,'_wp_attachment_image_alt','Mann Plumbing & Heating logo'),(32434,554,'_wp_attachment_image_alt','service'),(32435,555,'_wp_attachment_image_alt','HVAC unit'),(32436,556,'_wp_attachment_image_alt','plumbing repair'),(32437,557,'_wp_attachment_image_alt','excavation'),(32438,560,'_wp_attachment_image_alt','HVAC unit'),(32439,561,'_wp_attachment_image_alt','furnace in basement'),(32440,562,'_wp_attachment_image_alt','HVAC unit'),(32441,563,'_wp_attachment_image_alt','HVAC unit'),(32442,644,'_wp_attachment_image_alt','HVAC units'),(32443,650,'_wp_attachment_image_alt','renovating basement'),(32444,654,'_wp_attachment_image_alt','work example'),(32445,670,'_wp_attachment_image_alt','HVAC installation'),(32446,671,'_wp_attachment_image_alt','HVAC installation'),(32447,672,'_wp_attachment_image_alt','furnace'),(32448,673,'_wp_attachment_image_alt','HVAC duct installation'),(32449,674,'_wp_attachment_image_alt','HVAC unit'),(32450,675,'_wp_attachment_image_alt','furnace'),(32451,676,'_wp_attachment_image_alt','duct installation'),(32452,677,'_wp_attachment_image_alt','excavating'),(32453,678,'_wp_attachment_image_alt','excavation'),(32454,679,'_wp_attachment_image_alt','excavating'),(32455,680,'_wp_attachment_image_alt','excavating'),(32456,681,'_wp_attachment_image_alt','excavating'),(32457,682,'_wp_attachment_image_alt','ductwork'),(32458,683,'_wp_attachment_image_alt','ductwork'),(32459,684,'_wp_attachment_image_alt','ductwork'),(32460,685,'_wp_attachment_image_alt','ductwork'),(32461,686,'_wp_attachment_image_alt','ductwork'),(32462,687,'_wp_attachment_image_alt','ductwork'),(32463,688,'_wp_attachment_image_alt','ductwork'),(32464,689,'_wp_attachment_image_alt','ductwork'),(32465,690,'_wp_attachment_image_alt','ductwork'),(32466,691,'_wp_attachment_image_alt','ductwork'),(32467,692,'_wp_attachment_image_alt','ductwork'),(32468,693,'_wp_attachment_image_alt','ductwork'),(32469,694,'_wp_attachment_image_alt','HVAC unit'),(32470,695,'_wp_attachment_image_alt','laying pipes in trench'),(32471,696,'_wp_attachment_image_alt','HVAC unit'),(32472,697,'_wp_attachment_image_alt','HVAC unit'),(32473,698,'_wp_attachment_image_alt','excavating'),(32474,699,'_wp_attachment_image_alt','ductwork'),(32475,700,'_wp_attachment_image_alt','HVAC units'),(32476,701,'_wp_attachment_image_alt','HVAC units'),(32477,702,'_wp_attachment_image_alt','ductwork'),(32478,703,'_wp_attachment_image_alt','ductwork'),(32479,704,'_wp_attachment_image_alt','ductwork'),(32480,5,'_yoast_wpseo_title','Plumbing & Heating Chambersburg, PA| Home | Mann Plumbing & Heating, LLC.'),(32481,5,'_yoast_wpseo_metadesc','For your plumbing and heating needs in Chambersburg, Greencastle, Waynesboro, and beyond in Pennsylvania, turn to Mann Plumbing & Heating, LLC.'),(33944,500,'_yoast_wpseo_title','HVAC Services Greencastle, PA | Mann Plumbing & Heating, LLC.'),(33945,500,'_yoast_wpseo_metadesc','Get efficient HVAC services, including repairs and replacement, from the experts at Mann Plumbing & Heating, LLC. We serve Greencastle, PA and beyond.'),(34130,572,'_yoast_wpseo_title','HVAC Design & Build Waynesboro, PA | Mann Plumbing & Heating, LLC.'),(34131,572,'_yoast_wpseo_metadesc','Mann Plumbing & Heating, LLC. has your HVAC system design and build needs covered in Waynesboro, PA. Call us to schedule a consultation.'),(34224,574,'_yoast_wpseo_title','Plumbing Gettysburg, PA | Mann Plumbing & Heating, LLC.'),(34225,574,'_yoast_wpseo_metadesc','The talented team at Mann Plumbing & Heating, LLC. has helped countless customers in Gettysburg, PA and surrounding areas with their plumbing needs.'),(34226,574,'group_xd5cu11k7q2944x_content_area_content_two','<ul>\r\n 	<li>Faucet, Toilet, and Fixture Repairs</li>\r\n 	<li>Water Heater Installation</li>\r\n 	<li>Gas Installation (Certified Columbia Gas Installer)</li>\r\n 	<li>Water and Sanitation Line Repair and Installation</li>\r\n</ul>'),(34227,574,'_group_xd5cu11k7q2944x_content_area_content_two','group_xd5cu11k7q2944x_field_9871214998600'),(34416,574,'group_rcq58c1snwtp4dg_content_area_columns','single'),(34417,574,'_group_rcq58c1snwtp4dg_content_area_columns','group_rcq58c1snwtp4dg_field_5923225383814'),(34418,574,'group_rcq58c1snwtp4dg_content_area_width','medium'),(34419,574,'_group_rcq58c1snwtp4dg_content_area_width','group_rcq58c1snwtp4dg_field_5923225383891'),(34420,574,'group_rcq58c1snwtp4dg_content_area_content_lead',''),(34421,574,'_group_rcq58c1snwtp4dg_content_area_content_lead','group_rcq58c1snwtp4dg_field_0079736876206'),(34422,574,'group_rcq58c1snwtp4dg_content_area_content','<h3>Get Efficient Plumbing Service for Your Building</h3>\r\nWe’re dedicated to serving residential and commercial customers like you with five-star service and honest answers to your plumbing issues. Anything we repair or install is handled to ensure long-term efficiency with a minimal chance of problems in the future. When your plumbing system and fixtures function properly, you’ll save on headaches from cold showers and overflowing toilets, as well as lower utility bills. Mann Plumbing &amp; Heating, LLC. is ready to help you get the best performance out of your home or building’s plumbing system. <a href=\"/contact-us/\">Give us a call today</a> to schedule service or a consultation for your residential or commercial structure. We look forward to working with you and earning a long-term relationship.'),(34423,574,'_group_rcq58c1snwtp4dg_content_area_content','group_rcq58c1snwtp4dg_field_5923228483815'),(34424,574,'group_rcq58c1snwtp4dg_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(34425,574,'_group_rcq58c1snwtp4dg_content_area_button','group_rcq58c1snwtp4dg_field_5923225383819'),(34426,574,'group_rcq58c1snwtp4dg_content_area_css_classes',''),(34427,574,'_group_rcq58c1snwtp4dg_content_area_css_classes','group_rcq58c1snwtp4dg_field_4554768684187'),(34428,574,'group_rcq58c1snwtp4dg_content_area_align','centered'),(34429,574,'_group_rcq58c1snwtp4dg_content_area_align','group_rcq58c1snwtp4dg_field_5923225383899'),(34430,574,'group_rcq58c1snwtp4dg_content_area_enable_padding','1'),(34431,574,'_group_rcq58c1snwtp4dg_content_area_enable_padding','group_rcq58c1snwtp4dg_field_5923225383901'),(34432,574,'group_rcq58c1snwtp4dg_content_area_padding_top','20'),(34433,574,'_group_rcq58c1snwtp4dg_content_area_padding_top','group_rcq58c1snwtp4dg_field_5923225383902'),(34434,574,'group_rcq58c1snwtp4dg_content_area_padding_bottom','20'),(34435,574,'_group_rcq58c1snwtp4dg_content_area_padding_bottom','group_rcq58c1snwtp4dg_field_5923225383903'),(34436,574,'group_rcq58c1snwtp4dg_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(34437,574,'_group_rcq58c1snwtp4dg_content_area_background','group_rcq58c1snwtp4dg_field_5923225383818'),(34438,574,'group_rcq58c1snwtp4dg_content_area_animations_enabled','0'),(34439,574,'_group_rcq58c1snwtp4dg_content_area_animations_enabled','field_5b7ece2e8e4e9'),(34440,574,'group_rcq58c1snwtp4dg_content_area_animations',''),(34441,574,'_group_rcq58c1snwtp4dg_content_area_animations','group_rcq58c1snwtp4dg_field_5b7ece258e4e8'),(34680,576,'group_br5n2isiewhel27_content_area_columns','single'),(34681,576,'_group_br5n2isiewhel27_content_area_columns','group_br5n2isiewhel27_field_5923225383814'),(34682,576,'group_br5n2isiewhel27_content_area_width','medium'),(34683,576,'_group_br5n2isiewhel27_content_area_width','group_br5n2isiewhel27_field_5923225383891'),(34684,576,'group_br5n2isiewhel27_content_area_content_lead',''),(34685,576,'_group_br5n2isiewhel27_content_area_content_lead','group_br5n2isiewhel27_field_0079736876206'),(34686,576,'group_br5n2isiewhel27_content_area_content','<h3>Call Us for Projects Near You</h3>\r\nIf your project calls for excavation services to complete the necessary utility line installations or inspections of sewer and drain lines, we’re happy to help you. Mann Plumbing &amp; Heating, LLC. services residential and commercial customers throughout South-Central Pennsylvania, including near Chambersburg, Greencastle, Waynesboro, Shippensburg, Gettysburg, and St. Thomas. If you’re in one of the towns in between these locations, we also provide professional service for you. Our team is ready to handle your excavation needs, so <a href=\"/contact-us/\">give us a call today</a> with any questions or to schedule service for your project.'),(34687,576,'_group_br5n2isiewhel27_content_area_content','group_br5n2isiewhel27_field_5923228483815'),(34688,576,'group_br5n2isiewhel27_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(34689,576,'_group_br5n2isiewhel27_content_area_button','group_br5n2isiewhel27_field_5923225383819'),(34690,576,'group_br5n2isiewhel27_content_area_css_classes',''),(34691,576,'_group_br5n2isiewhel27_content_area_css_classes','group_br5n2isiewhel27_field_4554768684187'),(34692,576,'group_br5n2isiewhel27_content_area_align','centered'),(34693,576,'_group_br5n2isiewhel27_content_area_align','group_br5n2isiewhel27_field_5923225383899'),(34694,576,'group_br5n2isiewhel27_content_area_enable_padding','1'),(34695,576,'_group_br5n2isiewhel27_content_area_enable_padding','group_br5n2isiewhel27_field_5923225383901'),(34696,576,'group_br5n2isiewhel27_content_area_padding_top','20'),(34697,576,'_group_br5n2isiewhel27_content_area_padding_top','group_br5n2isiewhel27_field_5923225383902'),(34698,576,'group_br5n2isiewhel27_content_area_padding_bottom','20'),(34699,576,'_group_br5n2isiewhel27_content_area_padding_bottom','group_br5n2isiewhel27_field_5923225383903'),(34700,576,'group_br5n2isiewhel27_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(34701,576,'_group_br5n2isiewhel27_content_area_background','group_br5n2isiewhel27_field_5923225383818'),(34702,576,'group_br5n2isiewhel27_content_area_animations_enabled','0'),(34703,576,'_group_br5n2isiewhel27_content_area_animations_enabled','field_5b7ece2e8e4e9'),(34704,576,'group_br5n2isiewhel27_content_area_animations',''),(34705,576,'_group_br5n2isiewhel27_content_area_animations','group_br5n2isiewhel27_field_5b7ece258e4e8'),(34706,576,'_yoast_wpseo_title','Excavation Services Shippensburg, PA | Mann Plumbing & Heating, LLC.'),(34707,576,'_yoast_wpseo_metadesc','When your project calls for excavation services, Mann Plumbing & Heating, LLC. offers quality and experience to customers in and around Shippensburg, PA.'),(34708,576,'group_6tb9wboffn47hyy_content_area_content_two','<h5>Party Sewer Line Separation</h5>\r\nCreating horizontal and vertical separations for multiple sewer lines may be necessary for your property, especially when the area has existing utilities already in place. We handle sewer line separations with the utmost consideration for the existing standards for waterworks.\r\n<h5>Video Inspections</h5>\r\nUsing video inspection, we can more easily identify any current or potential issues with a sewer or drain line. Pipelines are susceptible to many problems, including corrosion, grease buildup, damage from roots, and obstructions such as paper towels and baby wipes. Once we identify the issue, our team can formulate the best solution.'),(34709,576,'_group_6tb9wboffn47hyy_content_area_content_two','group_6tb9wboffn47hyy_field_9871214998600'),(34950,578,'_yoast_wpseo_title','Mann Plumbing & Heating, LLC. | Our Work'),(34951,578,'_yoast_wpseo_metadesc','Take a look at examples of Mann Plumbing & Heating, LLC.’s work for residential and commercial customers throughout South-Central Pennsylvania.'),(34952,735,'subheading',''),(34953,735,'_subheading','field_5976417756400'),(34954,735,'group_8txfhtjx684j6no_gallery_content','<h2 style=\"text-align: center;\">Mann Plumbing &amp; Heating, LLC.’s Work</h2>\r\n<p style=\"text-align: center;\">Mann Plumbing &amp; Heating, LLC. has a long history of HVAC, plumbing, and excavation work in South-Central Pennsylvania. Our 30 years of service for residential and commercial clients has led to a large collection of extensive projects that show our adept skills and expertise. We’re proud of every job we perform, from small repairs to substantial designs and installations. If you want to see examples of the work we’ve done over the years, we invite you to look through our collection of images. We execute every service with an emphasis on quality, and our team always gives honest answers for any issue you might come across. Our priority is your comfort and convenience. You should be able to depend on a working toilet, water heater, and heating and cooling system. When you work with Mann Plumbing &amp; Heating, LLC., you get long-lasting results for efficient and energy-saving repairs and installations. <a href=\"/contact-us/\">Give us a call today</a> to schedule service for your home or business’s heating, cooling, and plumbing needs.</p>'),(34955,735,'_group_8txfhtjx684j6no_gallery_content','group_8txfhtjx684j6no_field_591ca1f42e821'),(34956,735,'group_8txfhtjx684j6no_gallery_images','a:98:{i:0;s:3:\"607\";i:1;s:3:\"608\";i:2;s:3:\"609\";i:3;s:3:\"610\";i:4;s:3:\"611\";i:5;s:3:\"612\";i:6;s:3:\"613\";i:7;s:3:\"614\";i:8;s:3:\"615\";i:9;s:3:\"616\";i:10;s:3:\"617\";i:11;s:3:\"618\";i:12;s:3:\"619\";i:13;s:3:\"620\";i:14;s:3:\"621\";i:15;s:3:\"622\";i:16;s:3:\"623\";i:17;s:3:\"624\";i:18;s:3:\"625\";i:19;s:3:\"626\";i:20;s:3:\"627\";i:21;s:3:\"628\";i:22;s:3:\"629\";i:23;s:3:\"630\";i:24;s:3:\"631\";i:25;s:3:\"632\";i:26;s:3:\"633\";i:27;s:3:\"634\";i:28;s:3:\"635\";i:29;s:3:\"636\";i:30;s:3:\"637\";i:31;s:3:\"638\";i:32;s:3:\"639\";i:33;s:3:\"640\";i:34;s:3:\"641\";i:35;s:3:\"642\";i:36;s:3:\"643\";i:37;s:3:\"644\";i:38;s:3:\"645\";i:39;s:3:\"646\";i:40;s:3:\"647\";i:41;s:3:\"648\";i:42;s:3:\"649\";i:43;s:3:\"650\";i:44;s:3:\"651\";i:45;s:3:\"652\";i:46;s:3:\"653\";i:47;s:3:\"654\";i:48;s:3:\"655\";i:49;s:3:\"656\";i:50;s:3:\"657\";i:51;s:3:\"658\";i:52;s:3:\"659\";i:53;s:3:\"660\";i:54;s:3:\"661\";i:55;s:3:\"662\";i:56;s:3:\"663\";i:57;s:3:\"664\";i:58;s:3:\"665\";i:59;s:3:\"666\";i:60;s:3:\"667\";i:61;s:3:\"668\";i:62;s:3:\"669\";i:63;s:3:\"670\";i:64;s:3:\"671\";i:65;s:3:\"672\";i:66;s:3:\"673\";i:67;s:3:\"674\";i:68;s:3:\"675\";i:69;s:3:\"676\";i:70;s:3:\"677\";i:71;s:3:\"678\";i:72;s:3:\"679\";i:73;s:3:\"680\";i:74;s:3:\"681\";i:75;s:3:\"682\";i:76;s:3:\"683\";i:77;s:3:\"684\";i:78;s:3:\"685\";i:79;s:3:\"686\";i:80;s:3:\"687\";i:81;s:3:\"688\";i:82;s:3:\"689\";i:83;s:3:\"690\";i:84;s:3:\"691\";i:85;s:3:\"692\";i:86;s:3:\"693\";i:87;s:3:\"694\";i:88;s:3:\"695\";i:89;s:3:\"696\";i:90;s:3:\"697\";i:91;s:3:\"698\";i:92;s:3:\"699\";i:93;s:3:\"700\";i:94;s:3:\"701\";i:95;s:3:\"702\";i:96;s:3:\"703\";i:97;s:3:\"704\";}'),(34957,735,'_group_8txfhtjx684j6no_gallery_images','group_8txfhtjx684j6no_field_591ca1f42e820'),(34958,735,'group_8txfhtjx684j6no_gallery_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(34959,735,'_group_8txfhtjx684j6no_gallery_button','group_8txfhtjx684j6no_field_35a591ca6da88'),(34960,735,'group_8txfhtjx684j6no_gallery_layout','non-bleeding'),(34961,735,'_group_8txfhtjx684j6no_gallery_layout','group_8txfhtjx684j6no_field_8973h3489324h324'),(34962,735,'group_8txfhtjx684j6no_gallery_slides_to_show',''),(34963,735,'_group_8txfhtjx684j6no_gallery_slides_to_show','group_8txfhtjx684j6no_field_71810a8701e99'),(34964,735,'group_8txfhtjx684j6no_gallery_width','md'),(34965,735,'_group_8txfhtjx684j6no_gallery_width','group_8txfhtjx684j6no_field_8973h3489324a002'),(34966,735,'group_8txfhtjx684j6no_gallery_css_classes',''),(34967,735,'_group_8txfhtjx684j6no_gallery_css_classes','group_8txfhtjx684j6no_field_8987622106215'),(34968,735,'group_8txfhtjx684j6no_gallery_enable_captions','0'),(34969,735,'_group_8txfhtjx684j6no_gallery_enable_captions','group_8txfhtjx684j6no_field_h29be82vf92b9ad3'),(34970,735,'group_8txfhtjx684j6no_gallery_enable_padding','0'),(34971,735,'_group_8txfhtjx684j6no_gallery_enable_padding','group_8txfhtjx684j6no_field_591ca1f42e82901'),(34972,735,'group_8txfhtjx684j6no_gallery_padding_top','0'),(34973,735,'_group_8txfhtjx684j6no_gallery_padding_top','group_8txfhtjx684j6no_field_591ca1f42e82902'),(34974,735,'group_8txfhtjx684j6no_gallery_padding_bottom','0'),(34975,735,'_group_8txfhtjx684j6no_gallery_padding_bottom','group_8txfhtjx684j6no_field_591ca1f42e82903'),(34976,735,'group_8txfhtjx684j6no_gallery_button_alignment',''),(34977,735,'_group_8txfhtjx684j6no_gallery_button_alignment','group_8txfhtjx684j6no_field_8591648772866'),(34978,735,'group_8txfhtjx684j6no_gallery_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(34979,735,'_group_8txfhtjx684j6no_gallery_background','group_8txfhtjx684j6no_field_591ca1f42e829'),(34980,735,'group_8txfhtjx684j6no_gallery_animations_enabled','0'),(34981,735,'_group_8txfhtjx684j6no_gallery_animations_enabled','field_5b7ece2e8e4e9'),(34982,735,'group_8txfhtjx684j6no_gallery_animations',''),(34983,735,'_group_8txfhtjx684j6no_gallery_animations','group_8txfhtjx684j6no_field_5b7ece258e4e8'),(34984,735,'group_u6maleu6wg7r14z_ctas_ctas','489'),(34985,735,'_group_u6maleu6wg7r14z_ctas_ctas','group_u6maleu6wg7r14z_field_5620077701227'),(34986,735,'group_u6maleu6wg7r14z_ctas_css_classes','cta'),(34987,735,'_group_u6maleu6wg7r14z_ctas_css_classes','group_u6maleu6wg7r14z_field_8795774705172'),(34988,735,'group_u6maleu6wg7r14z_ctas_animations_enabled','0'),(34989,735,'_group_u6maleu6wg7r14z_ctas_animations_enabled','field_5b7ece2e8e4e9'),(34990,735,'group_u6maleu6wg7r14z_ctas_animations',''),(34991,735,'_group_u6maleu6wg7r14z_ctas_animations','group_u6maleu6wg7r14z_field_5b7ece258e4e8'),(34992,590,'_yoast_wpseo_title','Mann Plumbing & Heating, LLC. | About Us'),(34993,590,'_yoast_wpseo_metadesc','For the past 30 years, Mann Plumbing & Heating., LLC. has helped customers throughout South-Central Pennsylvania with their plumbing, heating, and cooling.'),(35178,738,'_wp_attached_file','2019/12/MannPlumbingHeating_1150199946.jpg'),(35179,738,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.4048447546018146;s:5:\"bytes\";i:6899;s:11:\"size_before\";i:156623;s:10:\"size_after\";i:149724;s:4:\"time\";d:0.11000000000000001;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:14.68;s:5:\"bytes\";i:1006;s:11:\"size_before\";i:6853;s:10:\"size_after\";i:5847;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6299999999999999;s:5:\"bytes\";i:910;s:11:\"size_before\";i:16170;s:10:\"size_after\";i:15260;s:4:\"time\";d:0.01;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6600000000000001;s:5:\"bytes\";i:834;s:11:\"size_before\";i:31357;s:10:\"size_after\";i:30523;s:4:\"time\";d:0.02;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0300000000000002;s:5:\"bytes\";i:928;s:11:\"size_before\";i:23050;s:10:\"size_after\";i:22122;s:4:\"time\";d:0.01;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:30523;s:10:\"size_after\";i:30523;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6200000000000001;s:5:\"bytes\";i:3221;s:11:\"size_before\";i:48670;s:10:\"size_after\";i:45449;s:4:\"time\";d:0.040000000000000001;}}}'),(35180,738,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:42:\"2019/12/MannPlumbingHeating_1150199946.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1150199946-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:42:\"MannPlumbingHeating_1150199946-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1150199946-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1150199946-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1150199946-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:{}}}'),(35181,739,'_wp_attached_file','2019/12/MannPlumbingHeating_1173822860.jpg'),(35182,739,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.8015977207340574;s:5:\"bytes\";i:6018;s:11:\"size_before\";i:214806;s:10:\"size_after\";i:208788;s:4:\"time\";d:0.31;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:11.59;s:5:\"bytes\";i:1027;s:11:\"size_before\";i:8860;s:10:\"size_after\";i:7833;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8899999999999997;s:5:\"bytes\";i:1117;s:11:\"size_before\";i:22836;s:10:\"size_after\";i:21719;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.1600000000000001;s:5:\"bytes\";i:952;s:11:\"size_before\";i:44127;s:10:\"size_after\";i:43175;s:4:\"time\";d:0.029999999999999999;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.21;s:5:\"bytes\";i:1046;s:11:\"size_before\";i:32595;s:10:\"size_after\";i:31549;s:4:\"time\";d:0.02;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:43175;s:10:\"size_after\";i:43175;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9700000000000002;s:5:\"bytes\";i:1876;s:11:\"size_before\";i:63213;s:10:\"size_after\";i:61337;s:4:\"time\";d:0.17999999999999999;}}}'),(35183,739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:42:\"2019/12/MannPlumbingHeating_1173822860.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1173822860-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:42:\"MannPlumbingHeating_1173822860-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1173822860-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1173822860-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1173822860-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:{}}}'),(35184,740,'_wp_attached_file','2019/12/MannPlumbingHeating_1132791347.jpg'),(35185,740,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.1063749791121262;s:5:\"bytes\";i:8923;s:11:\"size_before\";i:287248;s:10:\"size_after\";i:278325;s:4:\"time\";d:0.20999999999999999;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:14.06;s:5:\"bytes\";i:1304;s:11:\"size_before\";i:9277;s:10:\"size_after\";i:7973;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4699999999999998;s:5:\"bytes\";i:1460;s:11:\"size_before\";i:26708;s:10:\"size_after\";i:25248;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.75;s:5:\"bytes\";i:1635;s:11:\"size_before\";i:59458;s:10:\"size_after\";i:57823;s:4:\"time\";d:0.080000000000000002;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5099999999999998;s:5:\"bytes\";i:1391;s:11:\"size_before\";i:39579;s:10:\"size_after\";i:38188;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:57823;s:10:\"size_after\";i:57823;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3199999999999998;s:5:\"bytes\";i:3133;s:11:\"size_before\";i:94403;s:10:\"size_after\";i:91270;s:4:\"time\";d:0.029999999999999999;}}}'),(35186,740,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:42:\"2019/12/MannPlumbingHeating_1132791347.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1132791347-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:42:\"MannPlumbingHeating_1132791347-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1132791347-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1132791347-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1132791347-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:16:\"© 2017 fstop123\";s:12:\"focal_length\";s:1:\"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:{}}}'),(35187,741,'_wp_attached_file','2019/12/MannPlumbingHeating_1060428268.jpg'),(35188,741,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.9566477160480282;s:5:\"bytes\";i:22581;s:11:\"size_before\";i:455570;s:10:\"size_after\";i:432989;s:4:\"time\";d:0.20000000000000001;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:13.109999999999999;s:5:\"bytes\";i:1603;s:11:\"size_before\";i:12225;s:10:\"size_after\";i:10622;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4500000000000002;s:5:\"bytes\";i:2942;s:11:\"size_before\";i:39478;s:10:\"size_after\";i:36536;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7300000000000004;s:5:\"bytes\";i:5239;s:11:\"size_before\";i:91380;s:10:\"size_after\";i:86141;s:4:\"time\";d:0.040000000000000001;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2800000000000002;s:5:\"bytes\";i:3962;s:11:\"size_before\";i:63044;s:10:\"size_after\";i:59082;s:4:\"time\";d:0.040000000000000001;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:86141;s:10:\"size_after\";i:86141;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4100000000000001;s:5:\"bytes\";i:8835;s:11:\"size_before\";i:163302;s:10:\"size_after\";i:154467;s:4:\"time\";d:0.050000000000000003;}}}'),(35189,741,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:42:\"2019/12/MannPlumbingHeating_1060428268.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1060428268-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:42:\"MannPlumbingHeating_1060428268-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1060428268-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1060428268-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:42:\"MannPlumbingHeating_1060428268-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:21:\"Sorin Opreanu Roberto\";s:12:\"focal_length\";s:1:\"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:{}}}'),(35709,748,'_wp_attached_file','2019/12/MannPlumbingHeating_522578757.jpg'),(35710,748,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8525761336804498;s:5:\"bytes\";i:9618;s:11:\"size_before\";i:198204;s:10:\"size_after\";i:188586;s:4:\"time\";d:0.16999999999999998;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:14.32;s:5:\"bytes\";i:1138;s:11:\"size_before\";i:7946;s:10:\"size_after\";i:6808;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6500000000000004;s:5:\"bytes\";i:1197;s:11:\"size_before\";i:18001;s:10:\"size_after\";i:16804;s:4:\"time\";d:0.02;}s:14:\"featured-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2799999999999998;s:5:\"bytes\";i:1411;s:11:\"size_before\";i:43012;s:10:\"size_after\";i:41601;s:4:\"time\";d:0.059999999999999998;}s:13:\"featured-post\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5099999999999998;s:5:\"bytes\";i:1243;s:11:\"size_before\";i:27552;s:10:\"size_after\";i:26309;s:4:\"time\";d:0.029999999999999999;}s:13:\"cropped-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5499999999999998;s:5:\"bytes\";i:1356;s:11:\"size_before\";i:38198;s:10:\"size_after\";i:36842;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1500000000000004;s:5:\"bytes\";i:3273;s:11:\"size_before\";i:63495;s:10:\"size_after\";i:60222;s:4:\"time\";d:0.029999999999999999;}}}'),(35711,748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:700;s:4:\"file\";s:41:\"2019/12/MannPlumbingHeating_522578757.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"MannPlumbingHeating_522578757-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:41:\"MannPlumbingHeating_522578757-257x300.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-small\";a:4:{s:4:\"file\";s:41:\"MannPlumbingHeating_522578757-480x560.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"featured-post\";a:4:{s:4:\"file\";s:41:\"MannPlumbingHeating_522578757-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cropped-small\";a:4:{s:4:\"file\";s:41:\"MannPlumbingHeating_522578757-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:8:\"fstop123\";s:12:\"focal_length\";s:1:\"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:{}}}'),(35804,738,'_wp_attachment_image_alt','plumbing repair'),(35805,739,'_wp_attachment_image_alt','HVAC repair'),(35806,740,'_wp_attachment_image_alt','HVAC installation'),(35807,741,'_wp_attachment_image_alt','excavation'),(35808,748,'_wp_attachment_image_alt','HVAC service technician'),(35809,5,'group_0yx3acydmccnw9z_hero_animations_type','slide'),(35810,5,'_group_0yx3acydmccnw9z_hero_animations_type','field_5b7ece638e4ea'),(35811,5,'group_0yx3acydmccnw9z_hero_animations_direction','top'),(35812,5,'_group_0yx3acydmccnw9z_hero_animations_direction','field_5b7ed4a96a49b'),(35813,5,'group_0yx3acydmccnw9z_hero_animations_speed','1200'),(35814,5,'_group_0yx3acydmccnw9z_hero_animations_speed','field_5b7ed501a7f4a'),(35815,5,'group_0yx3acydmccnw9z_hero_animations_offset','0'),(35816,5,'_group_0yx3acydmccnw9z_hero_animations_offset','field_5b7ed532a7f4b'),(35817,5,'group_0yx3acydmccnw9z_hero_animations_mobile','1'),(35818,5,'_group_0yx3acydmccnw9z_hero_animations_mobile','field_5b7ed5cf62c6b'),(35819,5,'group_0yx3acydmccnw9z_hero_animations_run_once','1'),(35820,5,'_group_0yx3acydmccnw9z_hero_animations_run_once','field_5b7ed60862c6c'),(35821,5,'group_285xgh2d32ffzt8_special_offers_animations_type','fade'),(35822,5,'_group_285xgh2d32ffzt8_special_offers_animations_type','field_5b7ece638e4ea'),(35823,5,'group_285xgh2d32ffzt8_special_offers_animations_speed','1200'),(35824,5,'_group_285xgh2d32ffzt8_special_offers_animations_speed','field_5b7ed501a7f4a'),(35825,5,'group_285xgh2d32ffzt8_special_offers_animations_offset','-500'),(35826,5,'_group_285xgh2d32ffzt8_special_offers_animations_offset','field_5b7ed532a7f4b'),(35827,5,'group_285xgh2d32ffzt8_special_offers_animations_mobile','1'),(35828,5,'_group_285xgh2d32ffzt8_special_offers_animations_mobile','field_5b7ed5cf62c6b'),(35829,5,'group_285xgh2d32ffzt8_special_offers_animations_run_once','1'),(35830,5,'_group_285xgh2d32ffzt8_special_offers_animations_run_once','field_5b7ed60862c6c'),(35831,5,'group_chcf29yih8zz3j3_content_area_animations_type','slide'),(35832,5,'_group_chcf29yih8zz3j3_content_area_animations_type','field_5b7ece638e4ea'),(35833,5,'group_chcf29yih8zz3j3_content_area_animations_direction','left'),(35834,5,'_group_chcf29yih8zz3j3_content_area_animations_direction','field_5b7ed4a96a49b'),(35835,5,'group_chcf29yih8zz3j3_content_area_animations_speed','1200'),(35836,5,'_group_chcf29yih8zz3j3_content_area_animations_speed','field_5b7ed501a7f4a'),(35837,5,'group_chcf29yih8zz3j3_content_area_animations_offset','-100'),(35838,5,'_group_chcf29yih8zz3j3_content_area_animations_offset','field_5b7ed532a7f4b'),(35839,5,'group_chcf29yih8zz3j3_content_area_animations_mobile','1'),(35840,5,'_group_chcf29yih8zz3j3_content_area_animations_mobile','field_5b7ed5cf62c6b'),(35841,5,'group_chcf29yih8zz3j3_content_area_animations_run_once','1'),(35842,5,'_group_chcf29yih8zz3j3_content_area_animations_run_once','field_5b7ed60862c6c'),(35843,5,'group_7omya7l9yrr0mu0_testimonials_animations_type','fade'),(35844,5,'_group_7omya7l9yrr0mu0_testimonials_animations_type','field_5b7ece638e4ea'),(35845,5,'group_7omya7l9yrr0mu0_testimonials_animations_speed','1200'),(35846,5,'_group_7omya7l9yrr0mu0_testimonials_animations_speed','field_5b7ed501a7f4a'),(35847,5,'group_7omya7l9yrr0mu0_testimonials_animations_offset','-100'),(35848,5,'_group_7omya7l9yrr0mu0_testimonials_animations_offset','field_5b7ed532a7f4b'),(35849,5,'group_7omya7l9yrr0mu0_testimonials_animations_mobile','1'),(35850,5,'_group_7omya7l9yrr0mu0_testimonials_animations_mobile','field_5b7ed5cf62c6b'),(35851,5,'group_7omya7l9yrr0mu0_testimonials_animations_run_once','1'),(35852,5,'_group_7omya7l9yrr0mu0_testimonials_animations_run_once','field_5b7ed60862c6c'),(36153,580,'group_yzfih4f7wihjncf_testimonials_animations_type','fade'),(36154,580,'_group_yzfih4f7wihjncf_testimonials_animations_type','field_5b7ece638e4ea'),(36155,580,'group_yzfih4f7wihjncf_testimonials_animations_speed','1200'),(36156,580,'_group_yzfih4f7wihjncf_testimonials_animations_speed','field_5b7ed501a7f4a'),(36157,580,'group_yzfih4f7wihjncf_testimonials_animations_offset','-100'),(36158,580,'_group_yzfih4f7wihjncf_testimonials_animations_offset','field_5b7ed532a7f4b'),(36159,580,'group_yzfih4f7wihjncf_testimonials_animations_mobile','1'),(36160,580,'_group_yzfih4f7wihjncf_testimonials_animations_mobile','field_5b7ed5cf62c6b'),(36161,580,'group_yzfih4f7wihjncf_testimonials_animations_run_once','1'),(36162,580,'_group_yzfih4f7wihjncf_testimonials_animations_run_once','field_5b7ed60862c6c'),(36163,751,'subheading',''),(36164,751,'_subheading','field_5976417756400'),(36165,751,'group_yzfih4f7wihjncf_testimonials_content','<h2>Customer Reviews</h2>'),(36166,751,'_group_yzfih4f7wihjncf_testimonials_content','group_yzfih4f7wihjncf_field_59232e687d160'),(36167,751,'group_yzfih4f7wihjncf_testimonials_testimonials_0_name','Amber Florig'),(36168,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_name','field_59232e937d163'),(36169,751,'group_yzfih4f7wihjncf_testimonials_testimonials_0_date',''),(36170,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_date','field_59232e967d164'),(36171,751,'group_yzfih4f7wihjncf_testimonials_testimonials_0_content','Always respond in a timely fashion.  Very knowledgeable technicians also! Great Company all around! Would definitely go to Mann Plumbing and Heating before anywhere else! You won\'t be disappointed!!!!'),(36172,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_content','field_59232e817d162'),(36173,751,'group_yzfih4f7wihjncf_testimonials_testimonials_0_star_rating','5'),(36174,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_star_rating','field_59232e817d166'),(36175,751,'group_yzfih4f7wihjncf_testimonials_testimonials_0_avatar',''),(36176,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_avatar','field_59232e817d165'),(36177,751,'group_yzfih4f7wihjncf_testimonials_testimonials_1_name','Katherine Simpson'),(36178,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_name','field_59232e937d163'),(36179,751,'group_yzfih4f7wihjncf_testimonials_testimonials_1_date',''),(36180,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_date','field_59232e967d164'),(36181,751,'group_yzfih4f7wihjncf_testimonials_testimonials_1_content','Had a new HVAC system installed since the system installed was inadequate. Sales service was excellent and installation was top notch. Now that I can test the efficiency of the heating system it is a vast improvement over the contractor-grade equipment that was existent.'),(36182,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_content','field_59232e817d162'),(36183,751,'group_yzfih4f7wihjncf_testimonials_testimonials_1_star_rating','5'),(36184,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_star_rating','field_59232e817d166'),(36185,751,'group_yzfih4f7wihjncf_testimonials_testimonials_1_avatar',''),(36186,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_avatar','field_59232e817d165'),(36187,751,'group_yzfih4f7wihjncf_testimonials_testimonials_2_name','Nancy Strite'),(36188,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_name','field_59232e937d163'),(36189,751,'group_yzfih4f7wihjncf_testimonials_testimonials_2_date',''),(36190,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_date','field_59232e967d164'),(36191,751,'group_yzfih4f7wihjncf_testimonials_testimonials_2_content','I\'ve used Mann for several years now.  They had my business when my furnace failed on a frigid Sunday and Brad came out in about half an hour and helped me. I\'ve had them for regular maintenance on my system since then, and they recently installed a new system after I relocated.  Their promptness and professionalism is not always found in some other businesses these days, so it\'s good to find people like this.'),(36192,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_content','field_59232e817d162'),(36193,751,'group_yzfih4f7wihjncf_testimonials_testimonials_2_star_rating','5'),(36194,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_star_rating','field_59232e817d166'),(36195,751,'group_yzfih4f7wihjncf_testimonials_testimonials_2_avatar',''),(36196,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_avatar','field_59232e817d165'),(36197,751,'group_yzfih4f7wihjncf_testimonials_testimonials_3_name','Stephen C'),(36198,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_name','field_59232e937d163'),(36199,751,'group_yzfih4f7wihjncf_testimonials_testimonials_3_date',''),(36200,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_date','field_59232e967d164'),(36201,751,'group_yzfih4f7wihjncf_testimonials_testimonials_3_content','Amber is amazing. They do great work for a reasonable price with awesome customer service.\r\n'),(36202,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_content','field_59232e817d162'),(36203,751,'group_yzfih4f7wihjncf_testimonials_testimonials_3_star_rating','5'),(36204,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_star_rating','field_59232e817d166'),(36205,751,'group_yzfih4f7wihjncf_testimonials_testimonials_3_avatar',''),(36206,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_avatar','field_59232e817d165'),(36207,751,'group_yzfih4f7wihjncf_testimonials_testimonials_4_name','W T'),(36208,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_name','field_59232e937d163'),(36209,751,'group_yzfih4f7wihjncf_testimonials_testimonials_4_date',''),(36210,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_date','field_59232e967d164'),(36211,751,'group_yzfih4f7wihjncf_testimonials_testimonials_4_content','Great service! Spoke to Chandler who was able to answer all of my questions and truly seemed to care!'),(36212,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_content','field_59232e817d162'),(36213,751,'group_yzfih4f7wihjncf_testimonials_testimonials_4_star_rating','5'),(36214,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_star_rating','field_59232e817d166'),(36215,751,'group_yzfih4f7wihjncf_testimonials_testimonials_4_avatar',''),(36216,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_avatar','field_59232e817d165'),(36217,751,'group_yzfih4f7wihjncf_testimonials_testimonials_5_name','Thomas Wood'),(36218,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_name','field_59232e937d163'),(36219,751,'group_yzfih4f7wihjncf_testimonials_testimonials_5_date',''),(36220,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_date','field_59232e967d164'),(36221,751,'group_yzfih4f7wihjncf_testimonials_testimonials_5_content','I\'ve had Jeff come out twice now. Once for a repair and once for maintenance. He is prompt, knowledgeable, and very personable. I would highly recommend Jeff and Mann Heating and Plumbing to anyone in need of service or maintenance of their heating and cooling systems.'),(36222,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_content','field_59232e817d162'),(36223,751,'group_yzfih4f7wihjncf_testimonials_testimonials_5_star_rating','5'),(36224,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_star_rating','field_59232e817d166'),(36225,751,'group_yzfih4f7wihjncf_testimonials_testimonials_5_avatar',''),(36226,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_avatar','field_59232e817d165'),(36227,751,'group_yzfih4f7wihjncf_testimonials_testimonials_6_name','James M. Thomas'),(36228,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_name','field_59232e937d163'),(36229,751,'group_yzfih4f7wihjncf_testimonials_testimonials_6_date',''),(36230,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_date','field_59232e967d164'),(36231,751,'group_yzfih4f7wihjncf_testimonials_testimonials_6_content','Chandler at Mann Plumbing reached out to us regarding an issue that came from a sewer line repair.  He quickly addressed and corrected the issue and provided more help with a new problem.  Customer service!'),(36232,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_content','field_59232e817d162'),(36233,751,'group_yzfih4f7wihjncf_testimonials_testimonials_6_star_rating','5'),(36234,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_star_rating','field_59232e817d166'),(36235,751,'group_yzfih4f7wihjncf_testimonials_testimonials_6_avatar',''),(36236,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_avatar','field_59232e817d165'),(36237,751,'group_yzfih4f7wihjncf_testimonials_testimonials_7_name','Stephen Lepak'),(36238,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_name','field_59232e937d163'),(36239,751,'group_yzfih4f7wihjncf_testimonials_testimonials_7_date',''),(36240,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_date','field_59232e967d164'),(36241,751,'group_yzfih4f7wihjncf_testimonials_testimonials_7_content','They came back and fixed an issue with my strainer basket leaking. They originally fixed it 9 months ago. They came out with no questions asked and took care of the problem in less than 10 mins. They will forever have my business because they have an excellent business model.'),(36242,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_content','field_59232e817d162'),(36243,751,'group_yzfih4f7wihjncf_testimonials_testimonials_7_star_rating','5'),(36244,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_star_rating','field_59232e817d166'),(36245,751,'group_yzfih4f7wihjncf_testimonials_testimonials_7_avatar',''),(36246,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_avatar','field_59232e817d165'),(36247,751,'group_yzfih4f7wihjncf_testimonials_testimonials_8_name','Alexzandra Ash'),(36248,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_name','field_59232e937d163'),(36249,751,'group_yzfih4f7wihjncf_testimonials_testimonials_8_date',''),(36250,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_date','field_59232e967d164'),(36251,751,'group_yzfih4f7wihjncf_testimonials_testimonials_8_content','I started using Mann Plumbing 2 years ago when my central air stopped running on a very hot 4th of July.  A service tech came to my home immediately, and had my air fixed the same day.  Since then,  I have used them several times for plumbing problems and for yearly maintenance on my heating unit.  Every issue I\'ve had, they\'ve fixed at a reasonable cost and in a short amount of time.   Also, I can\'t say enough good things about two of Mann\'s Service Techs, Jeff and Shane.  Both men are prompt, professional, knowledgeable, courteous and tidy.  As long as Mann Plumbing and Heating is around, I can\'t imagine using any other company.'),(36252,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_content','field_59232e817d162'),(36253,751,'group_yzfih4f7wihjncf_testimonials_testimonials_8_star_rating','5'),(36254,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_star_rating','field_59232e817d166'),(36255,751,'group_yzfih4f7wihjncf_testimonials_testimonials_8_avatar',''),(36256,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_avatar','field_59232e817d165'),(36257,751,'group_yzfih4f7wihjncf_testimonials_testimonials_9_name','Chris Cassner'),(36258,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_name','field_59232e937d163'),(36259,751,'group_yzfih4f7wihjncf_testimonials_testimonials_9_date',''),(36260,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_date','field_59232e967d164'),(36261,751,'group_yzfih4f7wihjncf_testimonials_testimonials_9_content','Always professional, and the work is excellent.  When it\'s an emergency they are always quick to respond.  I have used them for my rental properties for years and I\'ve never been disappointed.'),(36262,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_content','field_59232e817d162'),(36263,751,'group_yzfih4f7wihjncf_testimonials_testimonials_9_star_rating',''),(36264,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_star_rating','field_59232e817d166'),(36265,751,'group_yzfih4f7wihjncf_testimonials_testimonials_9_avatar',''),(36266,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_avatar','field_59232e817d165'),(36267,751,'group_yzfih4f7wihjncf_testimonials_testimonials_10_name','Bernard McClure'),(36268,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_10_name','field_59232e937d163'),(36269,751,'group_yzfih4f7wihjncf_testimonials_testimonials_10_date',''),(36270,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_10_date','field_59232e967d164'),(36271,751,'group_yzfih4f7wihjncf_testimonials_testimonials_10_content','Integrity, the most important word I can say. Very few companies work this way anymore. It\'s all about up-selling their products and not about doing the job right. Mann came in after dealing with Sandwell HVAC and provided us with excellent service. They were very professional and courteous. The team replaced our whole heating and cooling system in 3 days. First night the performance was noticeably improved. If you are looking for a company you can trust go no further. They have our vote.'),(36272,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_10_content','field_59232e817d162'),(36273,751,'group_yzfih4f7wihjncf_testimonials_testimonials_10_star_rating','5'),(36274,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_10_star_rating','field_59232e817d166'),(36275,751,'group_yzfih4f7wihjncf_testimonials_testimonials_10_avatar',''),(36276,751,'_group_yzfih4f7wihjncf_testimonials_testimonials_10_avatar','field_59232e817d165'),(36277,751,'group_yzfih4f7wihjncf_testimonials_testimonials','11'),(36278,751,'_group_yzfih4f7wihjncf_testimonials_testimonials','group_yzfih4f7wihjncf_field_59232e6d7d161'),(36279,751,'group_yzfih4f7wihjncf_testimonials_button','a:3:{s:4:\"text\";s:12:\"More Reviews\";s:3:\"url\";s:214:\"https://www.google.com/search?q=Mann+Plumbing+and+Heating%2C+LLC&oq=Mann+Plumbing+and+Heating%2C+LLC&aqs=chrome..69i57j69i59j0j69i60l3.477j0j4&sourceid=chrome&ie=UTF-8#lrd=0x89c9a1bbae80bfbd:0x3850750a850579f0,1,,,\";s:8:\"external\";s:1:\"1\";}'),(36280,751,'_group_yzfih4f7wihjncf_testimonials_button','group_yzfih4f7wihjncf_field_59232e687d123'),(36281,751,'group_yzfih4f7wihjncf_testimonials_css_classes',''),(36282,751,'_group_yzfih4f7wihjncf_testimonials_css_classes','group_yzfih4f7wihjncf_field_4310619693162'),(36283,751,'group_yzfih4f7wihjncf_testimonials_enable_content_limit','0'),(36284,751,'_group_yzfih4f7wihjncf_testimonials_enable_content_limit','group_yzfih4f7wihjncf_field_34r5654rfg45'),(36285,751,'group_yzfih4f7wihjncf_testimonials_content_limit_range','120'),(36286,751,'_group_yzfih4f7wihjncf_testimonials_content_limit_range','group_yzfih4f7wihjncf_field_847h9938h3k39'),(36287,751,'group_yzfih4f7wihjncf_testimonials_slides_to_show','0'),(36288,751,'_group_yzfih4f7wihjncf_testimonials_slides_to_show','group_yzfih4f7wihjncf_field_8401674674123'),(36289,751,'group_yzfih4f7wihjncf_testimonials_arrow_placement','sides'),(36290,751,'_group_yzfih4f7wihjncf_testimonials_arrow_placement','group_yzfih4f7wihjncf_field_124793247623'),(36291,751,'group_yzfih4f7wihjncf_testimonials_arrow_color','default'),(36292,751,'_group_yzfih4f7wihjncf_testimonials_arrow_color','group_yzfih4f7wihjncf_field_654793247766'),(36293,751,'group_yzfih4f7wihjncf_testimonials_enable_arrow_background','default'),(36294,751,'_group_yzfih4f7wihjncf_testimonials_enable_arrow_background','group_yzfih4f7wihjncf_field_60232e6872399'),(36295,751,'group_yzfih4f7wihjncf_testimonials_arrow_background_color',''),(36296,751,'_group_yzfih4f7wihjncf_testimonials_arrow_background_color','group_yzfih4f7wihjncf_field_591b6d8fe1000'),(36297,751,'group_yzfih4f7wihjncf_testimonials_enable_padding','1'),(36298,751,'_group_yzfih4f7wihjncf_testimonials_enable_padding','group_yzfih4f7wihjncf_field_59232e687d188'),(36299,751,'group_yzfih4f7wihjncf_testimonials_padding_top','50'),(36300,751,'_group_yzfih4f7wihjncf_testimonials_padding_top','group_yzfih4f7wihjncf_field_59232e687d189'),(36301,751,'group_yzfih4f7wihjncf_testimonials_padding_bottom','50'),(36302,751,'_group_yzfih4f7wihjncf_testimonials_padding_bottom','group_yzfih4f7wihjncf_field_59232e687d187'),(36303,751,'group_yzfih4f7wihjncf_testimonials_button_alignment','left'),(36304,751,'_group_yzfih4f7wihjncf_testimonials_button_alignment','group_yzfih4f7wihjncf_field_8591648772644'),(36305,751,'group_yzfih4f7wihjncf_testimonials_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(36306,751,'_group_yzfih4f7wihjncf_testimonials_background','group_yzfih4f7wihjncf_field_59232e687d167'),(36307,751,'group_yzfih4f7wihjncf_testimonials_animations_enabled','1'),(36308,751,'_group_yzfih4f7wihjncf_testimonials_animations_enabled','field_5b7ece2e8e4e9'),(36309,751,'group_yzfih4f7wihjncf_testimonials_animations',''),(36310,751,'_group_yzfih4f7wihjncf_testimonials_animations','group_yzfih4f7wihjncf_field_5b7ece258e4e8'),(36311,751,'group_uxoj4z6axzyhvze_ctas_ctas','489'),(36312,751,'_group_uxoj4z6axzyhvze_ctas_ctas','group_uxoj4z6axzyhvze_field_5620077701227'),(36313,751,'group_uxoj4z6axzyhvze_ctas_css_classes','cta'),(36314,751,'_group_uxoj4z6axzyhvze_ctas_css_classes','group_uxoj4z6axzyhvze_field_8795774705172'),(36315,751,'group_uxoj4z6axzyhvze_ctas_animations_enabled','0'),(36316,751,'_group_uxoj4z6axzyhvze_ctas_animations_enabled','field_5b7ece2e8e4e9'),(36317,751,'group_uxoj4z6axzyhvze_ctas_animations',''),(36318,751,'_group_uxoj4z6axzyhvze_ctas_animations','group_uxoj4z6axzyhvze_field_5b7ece258e4e8'),(36319,751,'group_yzfih4f7wihjncf_testimonials_animations_type','fade'),(36320,751,'_group_yzfih4f7wihjncf_testimonials_animations_type','field_5b7ece638e4ea'),(36321,751,'group_yzfih4f7wihjncf_testimonials_animations_speed','1200'),(36322,751,'_group_yzfih4f7wihjncf_testimonials_animations_speed','field_5b7ed501a7f4a'),(36323,751,'group_yzfih4f7wihjncf_testimonials_animations_offset','-100'),(36324,751,'_group_yzfih4f7wihjncf_testimonials_animations_offset','field_5b7ed532a7f4b'),(36325,751,'group_yzfih4f7wihjncf_testimonials_animations_mobile','1'),(36326,751,'_group_yzfih4f7wihjncf_testimonials_animations_mobile','field_5b7ed5cf62c6b'),(36327,751,'group_yzfih4f7wihjncf_testimonials_animations_run_once','1'),(36328,751,'_group_yzfih4f7wihjncf_testimonials_animations_run_once','field_5b7ed60862c6c'),(36329,590,'group_r9k1mdmqbq8p3mx_content_area_animations_type','fade'),(36330,590,'_group_r9k1mdmqbq8p3mx_content_area_animations_type','field_5b7ece638e4ea'),(36331,590,'group_r9k1mdmqbq8p3mx_content_area_animations_speed','1200'),(36332,590,'_group_r9k1mdmqbq8p3mx_content_area_animations_speed','field_5b7ed501a7f4a'),(36333,590,'group_r9k1mdmqbq8p3mx_content_area_animations_offset','-100'),(36334,590,'_group_r9k1mdmqbq8p3mx_content_area_animations_offset','field_5b7ed532a7f4b'),(36335,590,'group_r9k1mdmqbq8p3mx_content_area_animations_mobile','1'),(36336,590,'_group_r9k1mdmqbq8p3mx_content_area_animations_mobile','field_5b7ed5cf62c6b'),(36337,590,'group_r9k1mdmqbq8p3mx_content_area_animations_run_once','1'),(36338,590,'_group_r9k1mdmqbq8p3mx_content_area_animations_run_once','field_5b7ed60862c6c'),(36339,590,'group_o94sm7iw1sypujx_content_area_animations_type','slide'),(36340,590,'_group_o94sm7iw1sypujx_content_area_animations_type','field_5b7ece638e4ea'),(36341,590,'group_o94sm7iw1sypujx_content_area_animations_direction','right'),(36342,590,'_group_o94sm7iw1sypujx_content_area_animations_direction','field_5b7ed4a96a49b'),(36343,590,'group_o94sm7iw1sypujx_content_area_animations_speed','1200'),(36344,590,'_group_o94sm7iw1sypujx_content_area_animations_speed','field_5b7ed501a7f4a'),(36345,590,'group_o94sm7iw1sypujx_content_area_animations_offset','-100'),(36346,590,'_group_o94sm7iw1sypujx_content_area_animations_offset','field_5b7ed532a7f4b'),(36347,590,'group_o94sm7iw1sypujx_content_area_animations_mobile','1'),(36348,590,'_group_o94sm7iw1sypujx_content_area_animations_mobile','field_5b7ed5cf62c6b'),(36349,590,'group_o94sm7iw1sypujx_content_area_animations_run_once','1'),(36350,590,'_group_o94sm7iw1sypujx_content_area_animations_run_once','field_5b7ed60862c6c'),(36351,590,'group_4trfhcisy1rje8c_content_area_animations_type','fade'),(36352,590,'_group_4trfhcisy1rje8c_content_area_animations_type','field_5b7ece638e4ea'),(36353,590,'group_4trfhcisy1rje8c_content_area_animations_speed','1200'),(36354,590,'_group_4trfhcisy1rje8c_content_area_animations_speed','field_5b7ed501a7f4a'),(36355,590,'group_4trfhcisy1rje8c_content_area_animations_offset','-100'),(36356,590,'_group_4trfhcisy1rje8c_content_area_animations_offset','field_5b7ed532a7f4b'),(36357,590,'group_4trfhcisy1rje8c_content_area_animations_mobile','1'),(36358,590,'_group_4trfhcisy1rje8c_content_area_animations_mobile','field_5b7ed5cf62c6b'),(36359,590,'group_4trfhcisy1rje8c_content_area_animations_run_once','1'),(36360,590,'_group_4trfhcisy1rje8c_content_area_animations_run_once','field_5b7ed60862c6c'),(36361,752,'subheading',''),(36362,752,'_subheading','field_5976417756400'),(36363,752,'group_r9k1mdmqbq8p3mx_content_area_columns','single'),(36364,752,'_group_r9k1mdmqbq8p3mx_content_area_columns','group_r9k1mdmqbq8p3mx_field_5923225383814'),(36365,752,'group_r9k1mdmqbq8p3mx_content_area_width','medium'),(36366,752,'_group_r9k1mdmqbq8p3mx_content_area_width','group_r9k1mdmqbq8p3mx_field_5923225383891'),(36367,752,'group_r9k1mdmqbq8p3mx_content_area_content_lead',''),(36368,752,'_group_r9k1mdmqbq8p3mx_content_area_content_lead','group_r9k1mdmqbq8p3mx_field_0079736876206'),(36369,752,'group_r9k1mdmqbq8p3mx_content_area_content','<h2>About Mann Plumbing &amp; Heating, LLC.</h2>\r\nWhat qualities make a plumbing and HVAC company worthwhile? At Mann Plumbing &amp; Heating, LLC, we believe it comes down to providing solutions that keep you worry-free consistently, no matter what situation we address. Our technicians get the job done right for your peace of mind. Your project might require a new system installation, or your current unit or fixtures need expert repairs or maintenance. You can count on us to provide service with lasting value at an appropriate price. Our priority for every job is to offer honest answers and solutions to your plumbing, heating, and cooling issues. We want your systems to be dependable year-round, which is why we perform all repairs, maintenance, and installations to ensure they run efficiently and save you on energy costs. Our technicians will evaluate your plumbing or HVAC equipment and give you a straightforward recommendation of the best action to take. Whether repairs will rectify your system’s issues, or you need to replace it with a newer model, we make our recommendations based on what\'s best for your home or business.'),(36370,752,'_group_r9k1mdmqbq8p3mx_content_area_content','group_r9k1mdmqbq8p3mx_field_5923228483815'),(36371,752,'group_r9k1mdmqbq8p3mx_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(36372,752,'_group_r9k1mdmqbq8p3mx_content_area_button','group_r9k1mdmqbq8p3mx_field_5923225383819'),(36373,752,'group_r9k1mdmqbq8p3mx_content_area_css_classes',''),(36374,752,'_group_r9k1mdmqbq8p3mx_content_area_css_classes','group_r9k1mdmqbq8p3mx_field_4554768684187'),(36375,752,'group_r9k1mdmqbq8p3mx_content_area_align','centered'),(36376,752,'_group_r9k1mdmqbq8p3mx_content_area_align','group_r9k1mdmqbq8p3mx_field_5923225383899'),(36377,752,'group_r9k1mdmqbq8p3mx_content_area_enable_padding','1'),(36378,752,'_group_r9k1mdmqbq8p3mx_content_area_enable_padding','group_r9k1mdmqbq8p3mx_field_5923225383901'),(36379,752,'group_r9k1mdmqbq8p3mx_content_area_padding_top','20'),(36380,752,'_group_r9k1mdmqbq8p3mx_content_area_padding_top','group_r9k1mdmqbq8p3mx_field_5923225383902'),(36381,752,'group_r9k1mdmqbq8p3mx_content_area_padding_bottom','20'),(36382,752,'_group_r9k1mdmqbq8p3mx_content_area_padding_bottom','group_r9k1mdmqbq8p3mx_field_5923225383903'),(36383,752,'group_r9k1mdmqbq8p3mx_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(36384,752,'_group_r9k1mdmqbq8p3mx_content_area_background','group_r9k1mdmqbq8p3mx_field_5923225383818'),(36385,752,'group_r9k1mdmqbq8p3mx_content_area_animations_enabled','1'),(36386,752,'_group_r9k1mdmqbq8p3mx_content_area_animations_enabled','field_5b7ece2e8e4e9'),(36387,752,'group_r9k1mdmqbq8p3mx_content_area_animations',''),(36388,752,'_group_r9k1mdmqbq8p3mx_content_area_animations','group_r9k1mdmqbq8p3mx_field_5b7ece258e4e8'),(36389,752,'group_o94sm7iw1sypujx_content_area_columns','image-left'),(36390,752,'_group_o94sm7iw1sypujx_content_area_columns','group_o94sm7iw1sypujx_field_5923225383814'),(36391,752,'group_o94sm7iw1sypujx_content_area_content_lead',''),(36392,752,'_group_o94sm7iw1sypujx_content_area_content_lead','group_o94sm7iw1sypujx_field_0079736876206'),(36393,752,'group_o94sm7iw1sypujx_content_area_content','<h3>Putting Quality in Every Service We Provide</h3>\r\nOur team of talented professionals puts in the extra attention to detail your project deserves. We always strive to achieve exceptional results on jobs large and small. A point of pride for our company is being recognized as a Trane<sup>®</sup> Comfort Specialist™ dealer. Only a select group that meets the stringent standards of Trane<sup>®</sup> earns this honor for technical expertise and customer service. For all projects, we provide quality support and service for your home or business in South-Central Pennsylvania. We have many specialties, including the following:\r\n<ul>\r\n 	<li>Plumbing Installation and Repairs</li>\r\n 	<li>Heating and Air Conditioning Installation and Repairs</li>\r\n 	<li>Service for All Makes and Models of Boilers, Furnaces, and Air Conditioners</li>\r\n 	<li>Preventative Maintenance Agreements</li>\r\n 	<li>Complete Duct System Cleaning, Repair, and Design</li>\r\n 	<li>Electronic Air Cleaners</li>\r\n 	<li>Excavation Services</li>\r\n</ul>'),(36394,752,'_group_o94sm7iw1sypujx_content_area_content','group_o94sm7iw1sypujx_field_5923228483815'),(36395,752,'group_o94sm7iw1sypujx_content_area_image','748'),(36396,752,'_group_o94sm7iw1sypujx_content_area_image','group_o94sm7iw1sypujx_field_5923229983816'),(36397,752,'group_o94sm7iw1sypujx_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(36398,752,'_group_o94sm7iw1sypujx_content_area_button','group_o94sm7iw1sypujx_field_5923225383819'),(36399,752,'group_o94sm7iw1sypujx_content_area_css_classes',''),(36400,752,'_group_o94sm7iw1sypujx_content_area_css_classes','group_o94sm7iw1sypujx_field_4554768684187'),(36401,752,'group_o94sm7iw1sypujx_content_area_align','left'),(36402,752,'_group_o94sm7iw1sypujx_content_area_align','group_o94sm7iw1sypujx_field_5923225383899'),(36403,752,'group_o94sm7iw1sypujx_content_area_image_sizing','center'),(36404,752,'_group_o94sm7iw1sypujx_content_area_image_sizing','group_o94sm7iw1sypujx_field_5923225386557'),(36405,752,'group_o94sm7iw1sypujx_content_area_image_width','full-width'),(36406,752,'_group_o94sm7iw1sypujx_content_area_image_width','group_o94sm7iw1sypujx_field_5923225381234'),(36407,752,'group_o94sm7iw1sypujx_content_area_enable_padding','1'),(36408,752,'_group_o94sm7iw1sypujx_content_area_enable_padding','group_o94sm7iw1sypujx_field_5923225383901'),(36409,752,'group_o94sm7iw1sypujx_content_area_padding_top','0'),(36410,752,'_group_o94sm7iw1sypujx_content_area_padding_top','group_o94sm7iw1sypujx_field_5923225383902'),(36411,752,'group_o94sm7iw1sypujx_content_area_padding_bottom','0'),(36412,752,'_group_o94sm7iw1sypujx_content_area_padding_bottom','group_o94sm7iw1sypujx_field_5923225383903'),(36413,752,'group_o94sm7iw1sypujx_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(36414,752,'_group_o94sm7iw1sypujx_content_area_background','group_o94sm7iw1sypujx_field_5923225383818'),(36415,752,'group_o94sm7iw1sypujx_content_area_animations_enabled','1'),(36416,752,'_group_o94sm7iw1sypujx_content_area_animations_enabled','field_5b7ece2e8e4e9'),(36417,752,'group_o94sm7iw1sypujx_content_area_animations',''),(36418,752,'_group_o94sm7iw1sypujx_content_area_animations','group_o94sm7iw1sypujx_field_5b7ece258e4e8'),(36419,752,'group_4trfhcisy1rje8c_content_area_columns','single'),(36420,752,'_group_4trfhcisy1rje8c_content_area_columns','group_4trfhcisy1rje8c_field_5923225383814'),(36421,752,'group_4trfhcisy1rje8c_content_area_width','medium'),(36422,752,'_group_4trfhcisy1rje8c_content_area_width','group_4trfhcisy1rje8c_field_5923225383891'),(36423,752,'group_4trfhcisy1rje8c_content_area_content_lead',''),(36424,752,'_group_4trfhcisy1rje8c_content_area_content_lead','group_4trfhcisy1rje8c_field_0079736876206'),(36425,752,'group_4trfhcisy1rje8c_content_area_content','<h3>Your Satisfaction is Our Priority</h3>\r\nWe make sure that whenever you call Mann Plumbing &amp; Heating, LLC. for a repair, installation, or maintenance, you can expect reliable, high-quality service. Our technicians work hard to earn your trust and build a long-lasting relationship as we perform service for long-lasting system efficiency. You put your faith in us for your home or business\'s plumbing and HVAC systems, and we believe in living up to that faith. Whenever we visit your residence or building, we’re not done with the job until we’ve achieved your complete satisfaction. The next time you have issues with your plumbing, heating, or cooling system, <a href=\"/contact-us/\">give us a call</a> to schedule quick and effective service with long-term results. Let us show you what you’ve been missing by bringing in Mann Plumbing &amp; Heating, LLC. for your residential or commercial projects.'),(36426,752,'_group_4trfhcisy1rje8c_content_area_content','group_4trfhcisy1rje8c_field_5923228483815'),(36427,752,'group_4trfhcisy1rje8c_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(36428,752,'_group_4trfhcisy1rje8c_content_area_button','group_4trfhcisy1rje8c_field_5923225383819'),(36429,752,'group_4trfhcisy1rje8c_content_area_css_classes',''),(36430,752,'_group_4trfhcisy1rje8c_content_area_css_classes','group_4trfhcisy1rje8c_field_4554768684187'),(36431,752,'group_4trfhcisy1rje8c_content_area_align','centered'),(36432,752,'_group_4trfhcisy1rje8c_content_area_align','group_4trfhcisy1rje8c_field_5923225383899'),(36433,752,'group_4trfhcisy1rje8c_content_area_enable_padding','1'),(36434,752,'_group_4trfhcisy1rje8c_content_area_enable_padding','group_4trfhcisy1rje8c_field_5923225383901'),(36435,752,'group_4trfhcisy1rje8c_content_area_padding_top','20'),(36436,752,'_group_4trfhcisy1rje8c_content_area_padding_top','group_4trfhcisy1rje8c_field_5923225383902'),(36437,752,'group_4trfhcisy1rje8c_content_area_padding_bottom','20'),(36438,752,'_group_4trfhcisy1rje8c_content_area_padding_bottom','group_4trfhcisy1rje8c_field_5923225383903'),(36439,752,'group_4trfhcisy1rje8c_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(36440,752,'_group_4trfhcisy1rje8c_content_area_background','group_4trfhcisy1rje8c_field_5923225383818'),(36441,752,'group_4trfhcisy1rje8c_content_area_animations_enabled','1'),(36442,752,'_group_4trfhcisy1rje8c_content_area_animations_enabled','field_5b7ece2e8e4e9'),(36443,752,'group_4trfhcisy1rje8c_content_area_animations',''),(36444,752,'_group_4trfhcisy1rje8c_content_area_animations','group_4trfhcisy1rje8c_field_5b7ece258e4e8'),(36445,752,'group_jgklj4r4l3wngs8_ctas_ctas','489'),(36446,752,'_group_jgklj4r4l3wngs8_ctas_ctas','group_jgklj4r4l3wngs8_field_5620077701227'),(36447,752,'group_jgklj4r4l3wngs8_ctas_css_classes','cta'),(36448,752,'_group_jgklj4r4l3wngs8_ctas_css_classes','group_jgklj4r4l3wngs8_field_8795774705172'),(36449,752,'group_jgklj4r4l3wngs8_ctas_animations_enabled','0'),(36450,752,'_group_jgklj4r4l3wngs8_ctas_animations_enabled','field_5b7ece2e8e4e9'),(36451,752,'group_jgklj4r4l3wngs8_ctas_animations',''),(36452,752,'_group_jgklj4r4l3wngs8_ctas_animations','group_jgklj4r4l3wngs8_field_5b7ece258e4e8'),(36453,752,'group_r9k1mdmqbq8p3mx_content_area_animations_type','fade'),(36454,752,'_group_r9k1mdmqbq8p3mx_content_area_animations_type','field_5b7ece638e4ea'),(36455,752,'group_r9k1mdmqbq8p3mx_content_area_animations_speed','1200'),(36456,752,'_group_r9k1mdmqbq8p3mx_content_area_animations_speed','field_5b7ed501a7f4a'),(36457,752,'group_r9k1mdmqbq8p3mx_content_area_animations_offset','-100'),(36458,752,'_group_r9k1mdmqbq8p3mx_content_area_animations_offset','field_5b7ed532a7f4b'),(36459,752,'group_r9k1mdmqbq8p3mx_content_area_animations_mobile','1'),(36460,752,'_group_r9k1mdmqbq8p3mx_content_area_animations_mobile','field_5b7ed5cf62c6b'),(36461,752,'group_r9k1mdmqbq8p3mx_content_area_animations_run_once','1'),(36462,752,'_group_r9k1mdmqbq8p3mx_content_area_animations_run_once','field_5b7ed60862c6c'),(36463,752,'group_o94sm7iw1sypujx_content_area_animations_type','slide'),(36464,752,'_group_o94sm7iw1sypujx_content_area_animations_type','field_5b7ece638e4ea'),(36465,752,'group_o94sm7iw1sypujx_content_area_animations_direction','right'),(36466,752,'_group_o94sm7iw1sypujx_content_area_animations_direction','field_5b7ed4a96a49b'),(36467,752,'group_o94sm7iw1sypujx_content_area_animations_speed','1200'),(36468,752,'_group_o94sm7iw1sypujx_content_area_animations_speed','field_5b7ed501a7f4a'),(36469,752,'group_o94sm7iw1sypujx_content_area_animations_offset','-100'),(36470,752,'_group_o94sm7iw1sypujx_content_area_animations_offset','field_5b7ed532a7f4b'),(36471,752,'group_o94sm7iw1sypujx_content_area_animations_mobile','1'),(36472,752,'_group_o94sm7iw1sypujx_content_area_animations_mobile','field_5b7ed5cf62c6b'),(36473,752,'group_o94sm7iw1sypujx_content_area_animations_run_once','1'),(36474,752,'_group_o94sm7iw1sypujx_content_area_animations_run_once','field_5b7ed60862c6c'),(36475,752,'group_4trfhcisy1rje8c_content_area_animations_type','fade'),(36476,752,'_group_4trfhcisy1rje8c_content_area_animations_type','field_5b7ece638e4ea'),(36477,752,'group_4trfhcisy1rje8c_content_area_animations_speed','1200'),(36478,752,'_group_4trfhcisy1rje8c_content_area_animations_speed','field_5b7ed501a7f4a'),(36479,752,'group_4trfhcisy1rje8c_content_area_animations_offset','-100'),(36480,752,'_group_4trfhcisy1rje8c_content_area_animations_offset','field_5b7ed532a7f4b'),(36481,752,'group_4trfhcisy1rje8c_content_area_animations_mobile','1'),(36482,752,'_group_4trfhcisy1rje8c_content_area_animations_mobile','field_5b7ed5cf62c6b'),(36483,752,'group_4trfhcisy1rje8c_content_area_animations_run_once','1'),(36484,752,'_group_4trfhcisy1rje8c_content_area_animations_run_once','field_5b7ed60862c6c'),(36485,205,'group_rnimyv52b1l53jv_contact_info_animations_type','fade'),(36486,205,'_group_rnimyv52b1l53jv_contact_info_animations_type','field_5b7ece638e4ea'),(36487,205,'group_rnimyv52b1l53jv_contact_info_animations_speed','1200'),(36488,205,'_group_rnimyv52b1l53jv_contact_info_animations_speed','field_5b7ed501a7f4a'),(36489,205,'group_rnimyv52b1l53jv_contact_info_animations_offset','-100'),(36490,205,'_group_rnimyv52b1l53jv_contact_info_animations_offset','field_5b7ed532a7f4b'),(36491,205,'group_rnimyv52b1l53jv_contact_info_animations_mobile','1'),(36492,205,'_group_rnimyv52b1l53jv_contact_info_animations_mobile','field_5b7ed5cf62c6b'),(36493,205,'group_rnimyv52b1l53jv_contact_info_animations_run_once','1'),(36494,205,'_group_rnimyv52b1l53jv_contact_info_animations_run_once','field_5b7ed60862c6c'),(36495,205,'group_69kihebviq0vjyc_form_animations_type','fade'),(36496,205,'_group_69kihebviq0vjyc_form_animations_type','field_5b7ece638e4ea'),(36497,205,'group_69kihebviq0vjyc_form_animations_speed','1200'),(36498,205,'_group_69kihebviq0vjyc_form_animations_speed','field_5b7ed501a7f4a'),(36499,205,'group_69kihebviq0vjyc_form_animations_offset','-100'),(36500,205,'_group_69kihebviq0vjyc_form_animations_offset','field_5b7ed532a7f4b'),(36501,205,'group_69kihebviq0vjyc_form_animations_mobile','1'),(36502,205,'_group_69kihebviq0vjyc_form_animations_mobile','field_5b7ed5cf62c6b'),(36503,205,'group_69kihebviq0vjyc_form_animations_run_once','1'),(36504,205,'_group_69kihebviq0vjyc_form_animations_run_once','field_5b7ed60862c6c'),(36505,753,'subheading',''),(36506,753,'_subheading','field_5976417756400'),(36507,753,'group_69kihebviq0vjyc_form_columns','single'),(36508,753,'_group_69kihebviq0vjyc_form_columns','group_69kihebviq0vjyc_field_8752483114003'),(36509,753,'group_69kihebviq0vjyc_form_content','<h3 style=\"text-align: center;\">Contact Us</h3>'),(36510,753,'_group_69kihebviq0vjyc_form_content','group_69kihebviq0vjyc_field_8752483114009'),(36511,753,'group_69kihebviq0vjyc_form_gravity_form','1'),(36512,753,'_group_69kihebviq0vjyc_form_gravity_form','group_69kihebviq0vjyc_field_8752483114008'),(36513,753,'group_69kihebviq0vjyc_form_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(36514,753,'_group_69kihebviq0vjyc_form_background','group_69kihebviq0vjyc_field_8752483114011'),(36515,753,'group_69kihebviq0vjyc_form_css_classes',''),(36516,753,'_group_69kihebviq0vjyc_form_css_classes','group_69kihebviq0vjyc_field_1554003208428'),(36517,753,'group_69kihebviq0vjyc_form_enable_padding','0'),(36518,753,'_group_69kihebviq0vjyc_form_enable_padding','group_69kihebviq0vjyc_field_8752483119801'),(36519,753,'group_69kihebviq0vjyc_form_padding_top','0'),(36520,753,'_group_69kihebviq0vjyc_form_padding_top','group_69kihebviq0vjyc_field_8752483119802'),(36521,753,'group_69kihebviq0vjyc_form_padding_bottom','0'),(36522,753,'_group_69kihebviq0vjyc_form_padding_bottom','group_69kihebviq0vjyc_field_8752483119803'),(36523,753,'group_rnimyv52b1l53jv_contact_info_layout','content-left'),(36524,753,'_group_rnimyv52b1l53jv_contact_info_layout','group_rnimyv52b1l53jv_field_2950329921081'),(36525,753,'group_rnimyv52b1l53jv_contact_info_layout_mobile','content-top'),(36526,753,'_group_rnimyv52b1l53jv_contact_info_layout_mobile','group_rnimyv52b1l53jv_field_295012559486'),(36527,753,'group_rnimyv52b1l53jv_contact_info_content','<h3>Mann Plumbing &amp; Heating, LLC.</h3>\r\n<strong>Address</strong>\r\n<a href=\"https://goo.gl/maps/fTgT1g4T7yXUkdud7\" target=\"_blank\" rel=\"noopener\">6210 Lincoln Way E\r\nFayetteville, PA 17222</a>\r\n\r\n<strong>Phone</strong>\r\n[company-phone id=1]\r\n\r\n<strong>Hours of Operation</strong>\r\nMonday: 7:30 AM – 4:00 PM\r\nTuesday: 7:30 AM – 4:00 PM\r\nWednesday: 7:30 AM – 4:00 PM\r\nThursday: 7:30 AM – 4:00 PM\r\nFriday: 7:30 AM – 4:00 PM\r\n\r\n<strong>Emergency Service Available</strong>\r\n<strong>Seven Days A Week / 24 Hours A Day</strong>'),(36528,753,'_group_rnimyv52b1l53jv_contact_info_content','group_rnimyv52b1l53jv_field_2950329921082'),(36529,753,'group_rnimyv52b1l53jv_contact_info_multiple_locations','0'),(36530,753,'_group_rnimyv52b1l53jv_contact_info_multiple_locations','group_rnimyv52b1l53jv_field_2950329921979'),(36531,753,'group_rnimyv52b1l53jv_contact_info_location','a:3:{s:7:\"address\";s:71:\"Mann Plumbing and Heating, LLC, Lincoln Way East, Fayetteville, PA, USA\";s:3:\"lat\";s:17:\"39.90622919999999\";s:3:\"lng\";s:11:\"-77.5323874\";}'),(36532,753,'_group_rnimyv52b1l53jv_contact_info_location','group_rnimyv52b1l53jv_field_2950329921083'),(36533,753,'group_rnimyv52b1l53jv_contact_info_css_classes',''),(36534,753,'_group_rnimyv52b1l53jv_contact_info_css_classes','group_rnimyv52b1l53jv_field_2943940260591'),(36535,753,'group_rnimyv52b1l53jv_contact_info_enable_padding','0'),(36536,753,'_group_rnimyv52b1l53jv_contact_info_enable_padding','group_rnimyv52b1l53jv_field_2950329921034'),(36537,753,'group_rnimyv52b1l53jv_contact_info_padding_top','0'),(36538,753,'_group_rnimyv52b1l53jv_contact_info_padding_top','group_rnimyv52b1l53jv_field_2950329921035'),(36539,753,'group_rnimyv52b1l53jv_contact_info_padding_bottom','0'),(36540,753,'_group_rnimyv52b1l53jv_contact_info_padding_bottom','group_rnimyv52b1l53jv_field_2950329921036'),(36541,753,'group_rnimyv52b1l53jv_contact_info_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(36542,753,'_group_rnimyv52b1l53jv_contact_info_background','group_rnimyv52b1l53jv_field_2950329921085'),(36543,753,'group_rnimyv52b1l53jv_contact_info_animations_enabled','1'),(36544,753,'_group_rnimyv52b1l53jv_contact_info_animations_enabled','field_5b7ece2e8e4e9'),(36545,753,'group_rnimyv52b1l53jv_contact_info_animations',''),(36546,753,'_group_rnimyv52b1l53jv_contact_info_animations','group_rnimyv52b1l53jv_field_5b7ece258e4e8'),(36547,753,'group_69kihebviq0vjyc_form_animations_enabled','1'),(36548,753,'_group_69kihebviq0vjyc_form_animations_enabled','field_5b7ece2e8e4e9'),(36549,753,'group_69kihebviq0vjyc_form_animations',''),(36550,753,'_group_69kihebviq0vjyc_form_animations','group_69kihebviq0vjyc_field_5b7ece258e4e8'),(36551,753,'group_rnimyv52b1l53jv_contact_info_animations_type','fade'),(36552,753,'_group_rnimyv52b1l53jv_contact_info_animations_type','field_5b7ece638e4ea'),(36553,753,'group_rnimyv52b1l53jv_contact_info_animations_speed','1200'),(36554,753,'_group_rnimyv52b1l53jv_contact_info_animations_speed','field_5b7ed501a7f4a'),(36555,753,'group_rnimyv52b1l53jv_contact_info_animations_offset','-100'),(36556,753,'_group_rnimyv52b1l53jv_contact_info_animations_offset','field_5b7ed532a7f4b'),(36557,753,'group_rnimyv52b1l53jv_contact_info_animations_mobile','1'),(36558,753,'_group_rnimyv52b1l53jv_contact_info_animations_mobile','field_5b7ed5cf62c6b'),(36559,753,'group_rnimyv52b1l53jv_contact_info_animations_run_once','1'),(36560,753,'_group_rnimyv52b1l53jv_contact_info_animations_run_once','field_5b7ed60862c6c'),(36561,753,'group_69kihebviq0vjyc_form_animations_type','fade'),(36562,753,'_group_69kihebviq0vjyc_form_animations_type','field_5b7ece638e4ea'),(36563,753,'group_69kihebviq0vjyc_form_animations_speed','1200'),(36564,753,'_group_69kihebviq0vjyc_form_animations_speed','field_5b7ed501a7f4a'),(36565,753,'group_69kihebviq0vjyc_form_animations_offset','-100'),(36566,753,'_group_69kihebviq0vjyc_form_animations_offset','field_5b7ed532a7f4b'),(36567,753,'group_69kihebviq0vjyc_form_animations_mobile','1'),(36568,753,'_group_69kihebviq0vjyc_form_animations_mobile','field_5b7ed5cf62c6b'),(36569,753,'group_69kihebviq0vjyc_form_animations_run_once','1'),(36570,753,'_group_69kihebviq0vjyc_form_animations_run_once','field_5b7ed60862c6c'),(37452,798,'subheading',''),(37453,798,'_subheading','field_5976417756400'),(37454,798,'group_r9k1mdmqbq8p3mx_content_area_columns','single'),(37455,798,'_group_r9k1mdmqbq8p3mx_content_area_columns','group_r9k1mdmqbq8p3mx_field_5923225383814'),(37456,798,'group_r9k1mdmqbq8p3mx_content_area_width','medium'),(37457,798,'_group_r9k1mdmqbq8p3mx_content_area_width','group_r9k1mdmqbq8p3mx_field_5923225383891'),(37458,798,'group_r9k1mdmqbq8p3mx_content_area_content_lead',''),(37459,798,'_group_r9k1mdmqbq8p3mx_content_area_content_lead','group_r9k1mdmqbq8p3mx_field_0079736876206'),(37460,798,'group_r9k1mdmqbq8p3mx_content_area_content','<h2>About Mann Plumbing &amp; Heating, LLC.</h2>\r\nWhat qualities make a plumbing and HVAC company worthwhile? At Mann Plumbing &amp; Heating, LLC., we believe it comes down to providing solutions that keep you worry-free consistently, no matter what situation we address. Our technicians get the job done right for your peace of mind. Your project might require a new system installation, or your current unit or fixtures need expert repairs or maintenance. You can count on us to provide service with lasting value at an appropriate price. Our priority for every job is to offer honest answers and solutions to your plumbing, heating, and cooling issues. We want your systems to be dependable year-round, which is why we perform all repairs, maintenance, and installations to ensure they run efficiently and save you on energy costs. Our technicians will evaluate your plumbing or HVAC equipment and give you a straightforward recommendation of the best action to take. Whether repairs will rectify your system’s issues, or you need to replace it with a newer model, we make our recommendations based on what\'s best for your home or business.'),(37461,798,'_group_r9k1mdmqbq8p3mx_content_area_content','group_r9k1mdmqbq8p3mx_field_5923228483815'),(37462,798,'group_r9k1mdmqbq8p3mx_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(37463,798,'_group_r9k1mdmqbq8p3mx_content_area_button','group_r9k1mdmqbq8p3mx_field_5923225383819'),(37464,798,'group_r9k1mdmqbq8p3mx_content_area_css_classes',''),(37465,798,'_group_r9k1mdmqbq8p3mx_content_area_css_classes','group_r9k1mdmqbq8p3mx_field_4554768684187'),(37466,798,'group_r9k1mdmqbq8p3mx_content_area_align','centered'),(37467,798,'_group_r9k1mdmqbq8p3mx_content_area_align','group_r9k1mdmqbq8p3mx_field_5923225383899'),(37468,798,'group_r9k1mdmqbq8p3mx_content_area_enable_padding','1'),(37469,798,'_group_r9k1mdmqbq8p3mx_content_area_enable_padding','group_r9k1mdmqbq8p3mx_field_5923225383901'),(37470,798,'group_r9k1mdmqbq8p3mx_content_area_padding_top','20'),(37471,798,'_group_r9k1mdmqbq8p3mx_content_area_padding_top','group_r9k1mdmqbq8p3mx_field_5923225383902'),(37472,798,'group_r9k1mdmqbq8p3mx_content_area_padding_bottom','20'),(37473,798,'_group_r9k1mdmqbq8p3mx_content_area_padding_bottom','group_r9k1mdmqbq8p3mx_field_5923225383903'),(37474,798,'group_r9k1mdmqbq8p3mx_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(37475,798,'_group_r9k1mdmqbq8p3mx_content_area_background','group_r9k1mdmqbq8p3mx_field_5923225383818'),(37476,798,'group_r9k1mdmqbq8p3mx_content_area_animations_enabled','1'),(37477,798,'_group_r9k1mdmqbq8p3mx_content_area_animations_enabled','field_5b7ece2e8e4e9'),(37478,798,'group_r9k1mdmqbq8p3mx_content_area_animations',''),(37479,798,'_group_r9k1mdmqbq8p3mx_content_area_animations','group_r9k1mdmqbq8p3mx_field_5b7ece258e4e8'),(37480,798,'group_o94sm7iw1sypujx_content_area_columns','image-left'),(37481,798,'_group_o94sm7iw1sypujx_content_area_columns','group_o94sm7iw1sypujx_field_5923225383814'),(37482,798,'group_o94sm7iw1sypujx_content_area_content_lead',''),(37483,798,'_group_o94sm7iw1sypujx_content_area_content_lead','group_o94sm7iw1sypujx_field_0079736876206'),(37484,798,'group_o94sm7iw1sypujx_content_area_content','<h3>Putting Quality in Every Service We Provide</h3>\r\nOur team of talented professionals puts in the extra attention to detail your project deserves. We always strive to achieve exceptional results on jobs large and small. A point of pride for our company is being recognized as a Trane<sup>®</sup> Comfort Specialist™ dealer. Only a select group that meets the stringent standards of Trane<sup>®</sup> earns this honor for technical expertise and customer service. For all projects, we provide quality support and service for your home or business in South-Central Pennsylvania. We have many specialties, including the following:\r\n<ul>\r\n 	<li>Plumbing Installation and Repairs</li>\r\n 	<li>Heating and Air Conditioning Installation and Repairs</li>\r\n 	<li>Service for All Makes and Models of Boilers, Furnaces, and Air Conditioners</li>\r\n 	<li>Preventative Maintenance Agreements</li>\r\n 	<li>Complete Duct System Cleaning, Repair, and Design</li>\r\n 	<li>Electronic Air Cleaners</li>\r\n 	<li>Excavation Services</li>\r\n</ul>'),(37485,798,'_group_o94sm7iw1sypujx_content_area_content','group_o94sm7iw1sypujx_field_5923228483815'),(37486,798,'group_o94sm7iw1sypujx_content_area_image','748'),(37487,798,'_group_o94sm7iw1sypujx_content_area_image','group_o94sm7iw1sypujx_field_5923229983816'),(37488,798,'group_o94sm7iw1sypujx_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(37489,798,'_group_o94sm7iw1sypujx_content_area_button','group_o94sm7iw1sypujx_field_5923225383819'),(37490,798,'group_o94sm7iw1sypujx_content_area_css_classes',''),(37491,798,'_group_o94sm7iw1sypujx_content_area_css_classes','group_o94sm7iw1sypujx_field_4554768684187'),(37492,798,'group_o94sm7iw1sypujx_content_area_align','left'),(37493,798,'_group_o94sm7iw1sypujx_content_area_align','group_o94sm7iw1sypujx_field_5923225383899'),(37494,798,'group_o94sm7iw1sypujx_content_area_image_sizing','center'),(37495,798,'_group_o94sm7iw1sypujx_content_area_image_sizing','group_o94sm7iw1sypujx_field_5923225386557'),(37496,798,'group_o94sm7iw1sypujx_content_area_image_width','full-width'),(37497,798,'_group_o94sm7iw1sypujx_content_area_image_width','group_o94sm7iw1sypujx_field_5923225381234'),(37498,798,'group_o94sm7iw1sypujx_content_area_enable_padding','1'),(37499,798,'_group_o94sm7iw1sypujx_content_area_enable_padding','group_o94sm7iw1sypujx_field_5923225383901'),(37500,798,'group_o94sm7iw1sypujx_content_area_padding_top','0'),(37501,798,'_group_o94sm7iw1sypujx_content_area_padding_top','group_o94sm7iw1sypujx_field_5923225383902'),(37502,798,'group_o94sm7iw1sypujx_content_area_padding_bottom','0'),(37503,798,'_group_o94sm7iw1sypujx_content_area_padding_bottom','group_o94sm7iw1sypujx_field_5923225383903'),(37504,798,'group_o94sm7iw1sypujx_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(37505,798,'_group_o94sm7iw1sypujx_content_area_background','group_o94sm7iw1sypujx_field_5923225383818'),(37506,798,'group_o94sm7iw1sypujx_content_area_animations_enabled','1'),(37507,798,'_group_o94sm7iw1sypujx_content_area_animations_enabled','field_5b7ece2e8e4e9'),(37508,798,'group_o94sm7iw1sypujx_content_area_animations',''),(37509,798,'_group_o94sm7iw1sypujx_content_area_animations','group_o94sm7iw1sypujx_field_5b7ece258e4e8'),(37510,798,'group_4trfhcisy1rje8c_content_area_columns','single'),(37511,798,'_group_4trfhcisy1rje8c_content_area_columns','group_4trfhcisy1rje8c_field_5923225383814'),(37512,798,'group_4trfhcisy1rje8c_content_area_width','medium'),(37513,798,'_group_4trfhcisy1rje8c_content_area_width','group_4trfhcisy1rje8c_field_5923225383891'),(37514,798,'group_4trfhcisy1rje8c_content_area_content_lead',''),(37515,798,'_group_4trfhcisy1rje8c_content_area_content_lead','group_4trfhcisy1rje8c_field_0079736876206'),(37516,798,'group_4trfhcisy1rje8c_content_area_content','<h3>Your Satisfaction is Our Priority</h3>\r\nWe make sure that whenever you call Mann Plumbing &amp; Heating, LLC. for a repair, installation, or maintenance, you can expect reliable, high-quality service. Our technicians work hard to earn your trust and build a long-lasting relationship as we perform service for long-lasting system efficiency. You put your faith in us for your home or business\'s plumbing and HVAC systems, and we believe in living up to that faith. Whenever we visit your residence or building, we’re not done with the job until we’ve achieved your complete satisfaction. The next time you have issues with your plumbing, heating, or cooling system, <a href=\"/contact-us/\">give us a call</a> to schedule quick and effective service with long-term results. Let us show you what you’ve been missing by bringing in Mann Plumbing &amp; Heating, LLC. for your residential or commercial projects.'),(37517,798,'_group_4trfhcisy1rje8c_content_area_content','group_4trfhcisy1rje8c_field_5923228483815'),(37518,798,'group_4trfhcisy1rje8c_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(37519,798,'_group_4trfhcisy1rje8c_content_area_button','group_4trfhcisy1rje8c_field_5923225383819'),(37520,798,'group_4trfhcisy1rje8c_content_area_css_classes',''),(37521,798,'_group_4trfhcisy1rje8c_content_area_css_classes','group_4trfhcisy1rje8c_field_4554768684187'),(37522,798,'group_4trfhcisy1rje8c_content_area_align','centered'),(37523,798,'_group_4trfhcisy1rje8c_content_area_align','group_4trfhcisy1rje8c_field_5923225383899'),(37524,798,'group_4trfhcisy1rje8c_content_area_enable_padding','1'),(37525,798,'_group_4trfhcisy1rje8c_content_area_enable_padding','group_4trfhcisy1rje8c_field_5923225383901'),(37526,798,'group_4trfhcisy1rje8c_content_area_padding_top','20'),(37527,798,'_group_4trfhcisy1rje8c_content_area_padding_top','group_4trfhcisy1rje8c_field_5923225383902'),(37528,798,'group_4trfhcisy1rje8c_content_area_padding_bottom','20'),(37529,798,'_group_4trfhcisy1rje8c_content_area_padding_bottom','group_4trfhcisy1rje8c_field_5923225383903'),(37530,798,'group_4trfhcisy1rje8c_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(37531,798,'_group_4trfhcisy1rje8c_content_area_background','group_4trfhcisy1rje8c_field_5923225383818'),(37532,798,'group_4trfhcisy1rje8c_content_area_animations_enabled','1'),(37533,798,'_group_4trfhcisy1rje8c_content_area_animations_enabled','field_5b7ece2e8e4e9'),(37534,798,'group_4trfhcisy1rje8c_content_area_animations',''),(37535,798,'_group_4trfhcisy1rje8c_content_area_animations','group_4trfhcisy1rje8c_field_5b7ece258e4e8'),(37536,798,'group_jgklj4r4l3wngs8_ctas_ctas','489'),(37537,798,'_group_jgklj4r4l3wngs8_ctas_ctas','group_jgklj4r4l3wngs8_field_5620077701227'),(37538,798,'group_jgklj4r4l3wngs8_ctas_css_classes','cta'),(37539,798,'_group_jgklj4r4l3wngs8_ctas_css_classes','group_jgklj4r4l3wngs8_field_8795774705172'),(37540,798,'group_jgklj4r4l3wngs8_ctas_animations_enabled','0'),(37541,798,'_group_jgklj4r4l3wngs8_ctas_animations_enabled','field_5b7ece2e8e4e9'),(37542,798,'group_jgklj4r4l3wngs8_ctas_animations',''),(37543,798,'_group_jgklj4r4l3wngs8_ctas_animations','group_jgklj4r4l3wngs8_field_5b7ece258e4e8'),(37544,798,'group_r9k1mdmqbq8p3mx_content_area_animations_type','fade'),(37545,798,'_group_r9k1mdmqbq8p3mx_content_area_animations_type','field_5b7ece638e4ea'),(37546,798,'group_r9k1mdmqbq8p3mx_content_area_animations_speed','1200'),(37547,798,'_group_r9k1mdmqbq8p3mx_content_area_animations_speed','field_5b7ed501a7f4a'),(37548,798,'group_r9k1mdmqbq8p3mx_content_area_animations_offset','-100'),(37549,798,'_group_r9k1mdmqbq8p3mx_content_area_animations_offset','field_5b7ed532a7f4b'),(37550,798,'group_r9k1mdmqbq8p3mx_content_area_animations_mobile','1'),(37551,798,'_group_r9k1mdmqbq8p3mx_content_area_animations_mobile','field_5b7ed5cf62c6b'),(37552,798,'group_r9k1mdmqbq8p3mx_content_area_animations_run_once','1'),(37553,798,'_group_r9k1mdmqbq8p3mx_content_area_animations_run_once','field_5b7ed60862c6c'),(37554,798,'group_o94sm7iw1sypujx_content_area_animations_type','slide'),(37555,798,'_group_o94sm7iw1sypujx_content_area_animations_type','field_5b7ece638e4ea'),(37556,798,'group_o94sm7iw1sypujx_content_area_animations_direction','right'),(37557,798,'_group_o94sm7iw1sypujx_content_area_animations_direction','field_5b7ed4a96a49b'),(37558,798,'group_o94sm7iw1sypujx_content_area_animations_speed','1200'),(37559,798,'_group_o94sm7iw1sypujx_content_area_animations_speed','field_5b7ed501a7f4a'),(37560,798,'group_o94sm7iw1sypujx_content_area_animations_offset','-100'),(37561,798,'_group_o94sm7iw1sypujx_content_area_animations_offset','field_5b7ed532a7f4b'),(37562,798,'group_o94sm7iw1sypujx_content_area_animations_mobile','1'),(37563,798,'_group_o94sm7iw1sypujx_content_area_animations_mobile','field_5b7ed5cf62c6b'),(37564,798,'group_o94sm7iw1sypujx_content_area_animations_run_once','1'),(37565,798,'_group_o94sm7iw1sypujx_content_area_animations_run_once','field_5b7ed60862c6c'),(37566,798,'group_4trfhcisy1rje8c_content_area_animations_type','fade'),(37567,798,'_group_4trfhcisy1rje8c_content_area_animations_type','field_5b7ece638e4ea'),(37568,798,'group_4trfhcisy1rje8c_content_area_animations_speed','1200'),(37569,798,'_group_4trfhcisy1rje8c_content_area_animations_speed','field_5b7ed501a7f4a'),(37570,798,'group_4trfhcisy1rje8c_content_area_animations_offset','-100'),(37571,798,'_group_4trfhcisy1rje8c_content_area_animations_offset','field_5b7ed532a7f4b'),(37572,798,'group_4trfhcisy1rje8c_content_area_animations_mobile','1'),(37573,798,'_group_4trfhcisy1rje8c_content_area_animations_mobile','field_5b7ed5cf62c6b'),(37574,798,'group_4trfhcisy1rje8c_content_area_animations_run_once','1'),(37575,798,'_group_4trfhcisy1rje8c_content_area_animations_run_once','field_5b7ed60862c6c'),(37612,802,'subheading',''),(37613,802,'_subheading','field_5976417756400'),(37614,802,'group_9c9flwfx75zpkho_content_area_columns','single'),(37615,802,'_group_9c9flwfx75zpkho_content_area_columns','group_9c9flwfx75zpkho_field_5923225383814'),(37616,802,'group_9c9flwfx75zpkho_content_area_width','medium'),(37617,802,'_group_9c9flwfx75zpkho_content_area_width','group_9c9flwfx75zpkho_field_5923225383891'),(37618,802,'group_9c9flwfx75zpkho_content_area_content_lead',''),(37619,802,'_group_9c9flwfx75zpkho_content_area_content_lead','group_9c9flwfx75zpkho_field_0079736876206'),(37620,802,'group_9c9flwfx75zpkho_content_area_content','<a href=\"https://retailservices.wellsfargo.com/ahapp/init-app?m=0024234437\" target=\"_blank\" rel=\"noopener\"><img class=\"size-full wp-image-714 aligncenter\" src=\"/wp-content/uploads/2019/12/AtHomeBanner_600x300_B.png\" alt=\"Buy today, pay over time\" width=\"600\" height=\"300\" /></a>\r\n\r\n<img class=\"size-full wp-image-715 aligncenter\" src=\"/wp-content/uploads/2019/12/payments-accepted-1.png\" alt=\"accepted payments\" width=\"212\" height=\"69\" />'),(37621,802,'_group_9c9flwfx75zpkho_content_area_content','group_9c9flwfx75zpkho_field_5923228483815'),(37622,802,'group_9c9flwfx75zpkho_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(37623,802,'_group_9c9flwfx75zpkho_content_area_button','group_9c9flwfx75zpkho_field_5923225383819'),(37624,802,'group_9c9flwfx75zpkho_content_area_css_classes',''),(37625,802,'_group_9c9flwfx75zpkho_content_area_css_classes','group_9c9flwfx75zpkho_field_4554768684187'),(37626,802,'group_9c9flwfx75zpkho_content_area_align','centered'),(37627,802,'_group_9c9flwfx75zpkho_content_area_align','group_9c9flwfx75zpkho_field_5923225383899'),(37628,802,'group_9c9flwfx75zpkho_content_area_enable_padding','1'),(37629,802,'_group_9c9flwfx75zpkho_content_area_enable_padding','group_9c9flwfx75zpkho_field_5923225383901'),(37630,802,'group_9c9flwfx75zpkho_content_area_padding_top','20'),(37631,802,'_group_9c9flwfx75zpkho_content_area_padding_top','group_9c9flwfx75zpkho_field_5923225383902'),(37632,802,'group_9c9flwfx75zpkho_content_area_padding_bottom','20'),(37633,802,'_group_9c9flwfx75zpkho_content_area_padding_bottom','group_9c9flwfx75zpkho_field_5923225383903'),(37634,802,'group_9c9flwfx75zpkho_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(37635,802,'_group_9c9flwfx75zpkho_content_area_background','group_9c9flwfx75zpkho_field_5923225383818'),(37636,802,'group_9c9flwfx75zpkho_content_area_animations_enabled','0'),(37637,802,'_group_9c9flwfx75zpkho_content_area_animations_enabled','field_5b7ece2e8e4e9'),(37638,802,'group_9c9flwfx75zpkho_content_area_animations',''),(37639,802,'_group_9c9flwfx75zpkho_content_area_animations','group_9c9flwfx75zpkho_field_5b7ece258e4e8'),(37640,802,'group_9gwabey53p04ngf_ctas_ctas','489'),(37641,802,'_group_9gwabey53p04ngf_ctas_ctas','group_9gwabey53p04ngf_field_5620077701227'),(37642,802,'group_9gwabey53p04ngf_ctas_css_classes','cta'),(37643,802,'_group_9gwabey53p04ngf_ctas_css_classes','group_9gwabey53p04ngf_field_8795774705172'),(37644,802,'group_9gwabey53p04ngf_ctas_animations_enabled','0'),(37645,802,'_group_9gwabey53p04ngf_ctas_animations_enabled','field_5b7ece2e8e4e9'),(37646,802,'group_9gwabey53p04ngf_ctas_animations',''),(37647,802,'_group_9gwabey53p04ngf_ctas_animations','group_9gwabey53p04ngf_field_5b7ece258e4e8'),(37946,804,'subheading',''),(37947,804,'_subheading','field_5976417756400'),(37948,804,'group_gtf9qg87luu5eqi_content_area_columns','single'),(37949,804,'_group_gtf9qg87luu5eqi_content_area_columns','group_gtf9qg87luu5eqi_field_5923225383814'),(37950,804,'group_gtf9qg87luu5eqi_content_area_width','medium'),(37951,804,'_group_gtf9qg87luu5eqi_content_area_width','group_gtf9qg87luu5eqi_field_5923225383891'),(37952,804,'group_gtf9qg87luu5eqi_content_area_content_lead',''),(37953,804,'_group_gtf9qg87luu5eqi_content_area_content_lead','group_gtf9qg87luu5eqi_field_0079736876206'),(37954,804,'group_gtf9qg87luu5eqi_content_area_content','<h2>PA’s Outstanding HVAC Services</h2>\r\nYour home or business’s HVAC system is a primary source of comfort for your building throughout the year. During the hot summers, you can stay cool, thanks to a fully functional air conditioning system. When the cold winter weather hits, your interior space keeps warm and cozy through the consistent performance of your heating system. Mann Plumbing &amp; Heating, LLC. provides thorough and honest HVAC services to ensure that your system runs at its best. Every HVAC system has maintenance and repair concerns, as well as a limited lifespan. Our technicians will evaluate your system’s condition and give you a straightforward assessment of the best actions to take. If you need repairs or new parts, we’ll execute them to get your system running again. If a replacement is necessary, our team will present you with your options, including Trane<sup>®</sup> heating and air conditioning products. We’ve assisted many residents with their environmental comfort, and Trane<sup>®</sup> is well-known for its reliability and outstanding performance.'),(37955,804,'_group_gtf9qg87luu5eqi_content_area_content','group_gtf9qg87luu5eqi_field_5923228483815'),(37956,804,'group_gtf9qg87luu5eqi_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(37957,804,'_group_gtf9qg87luu5eqi_content_area_button','group_gtf9qg87luu5eqi_field_5923225383819'),(37958,804,'group_gtf9qg87luu5eqi_content_area_css_classes',''),(37959,804,'_group_gtf9qg87luu5eqi_content_area_css_classes','group_gtf9qg87luu5eqi_field_4554768684187'),(37960,804,'group_gtf9qg87luu5eqi_content_area_align','centered'),(37961,804,'_group_gtf9qg87luu5eqi_content_area_align','group_gtf9qg87luu5eqi_field_5923225383899'),(37962,804,'group_gtf9qg87luu5eqi_content_area_enable_padding','1'),(37963,804,'_group_gtf9qg87luu5eqi_content_area_enable_padding','group_gtf9qg87luu5eqi_field_5923225383901'),(37964,804,'group_gtf9qg87luu5eqi_content_area_padding_top','20'),(37965,804,'_group_gtf9qg87luu5eqi_content_area_padding_top','group_gtf9qg87luu5eqi_field_5923225383902'),(37966,804,'group_gtf9qg87luu5eqi_content_area_padding_bottom','20'),(37967,804,'_group_gtf9qg87luu5eqi_content_area_padding_bottom','group_gtf9qg87luu5eqi_field_5923225383903'),(37968,804,'group_gtf9qg87luu5eqi_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(37969,804,'_group_gtf9qg87luu5eqi_content_area_background','group_gtf9qg87luu5eqi_field_5923225383818'),(37970,804,'group_gtf9qg87luu5eqi_content_area_animations_enabled','0'),(37971,804,'_group_gtf9qg87luu5eqi_content_area_animations_enabled','field_5b7ece2e8e4e9'),(37972,804,'group_gtf9qg87luu5eqi_content_area_animations',''),(37973,804,'_group_gtf9qg87luu5eqi_content_area_animations','group_gtf9qg87luu5eqi_field_5b7ece258e4e8'),(37974,804,'group_5ceuunsp1agbemn_content_area_columns','image-left'),(37975,804,'_group_5ceuunsp1agbemn_content_area_columns','group_5ceuunsp1agbemn_field_5923225383814'),(37976,804,'group_5ceuunsp1agbemn_content_area_content_lead',''),(37977,804,'_group_5ceuunsp1agbemn_content_area_content_lead','group_5ceuunsp1agbemn_field_0079736876206'),(37978,804,'group_5ceuunsp1agbemn_content_area_content','<h3>Heating &amp; Air Conditioning Repairs</h3>\r\nCustomers in Greencastle, Waynesboro, and many other South-Central Pennsylvania cities and towns can trust Mann Plumbing &amp; Heating, LLC. to repair and replace all types of heating systems. Our training and expertise include working on gas and electric furnaces, as well as heat pumps and hot water heaters. We’ll make recommendations on excellent choices for your lifestyle and home environmental comfort, and we offer humidifiers that enhance the comfort of your home. If your air conditioning system isn’t functioning at its best, we service and repair those systems with expert know-how while keeping any disruption to your daily life to a minimum. Our comfort consultants share a dedication to your comfort, and we’ll assess your system to determine if a replacement is the best option. If it is, we\'ll design an air conditioning system that fits your budget and situation.'),(37979,804,'_group_5ceuunsp1agbemn_content_area_content','group_5ceuunsp1agbemn_field_5923228483815'),(37980,804,'group_5ceuunsp1agbemn_content_area_image','739'),(37981,804,'_group_5ceuunsp1agbemn_content_area_image','group_5ceuunsp1agbemn_field_5923229983816'),(37982,804,'group_5ceuunsp1agbemn_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(37983,804,'_group_5ceuunsp1agbemn_content_area_button','group_5ceuunsp1agbemn_field_5923225383819'),(37984,804,'group_5ceuunsp1agbemn_content_area_css_classes',''),(37985,804,'_group_5ceuunsp1agbemn_content_area_css_classes','group_5ceuunsp1agbemn_field_4554768684187'),(37986,804,'group_5ceuunsp1agbemn_content_area_align','left'),(37987,804,'_group_5ceuunsp1agbemn_content_area_align','group_5ceuunsp1agbemn_field_5923225383899'),(37988,804,'group_5ceuunsp1agbemn_content_area_image_sizing','center'),(37989,804,'_group_5ceuunsp1agbemn_content_area_image_sizing','group_5ceuunsp1agbemn_field_5923225386557'),(37990,804,'group_5ceuunsp1agbemn_content_area_image_width','full-width'),(37991,804,'_group_5ceuunsp1agbemn_content_area_image_width','group_5ceuunsp1agbemn_field_5923225381234'),(37992,804,'group_5ceuunsp1agbemn_content_area_enable_padding','1'),(37993,804,'_group_5ceuunsp1agbemn_content_area_enable_padding','group_5ceuunsp1agbemn_field_5923225383901'),(37994,804,'group_5ceuunsp1agbemn_content_area_padding_top','0'),(37995,804,'_group_5ceuunsp1agbemn_content_area_padding_top','group_5ceuunsp1agbemn_field_5923225383902'),(37996,804,'group_5ceuunsp1agbemn_content_area_padding_bottom','0'),(37997,804,'_group_5ceuunsp1agbemn_content_area_padding_bottom','group_5ceuunsp1agbemn_field_5923225383903'),(37998,804,'group_5ceuunsp1agbemn_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(37999,804,'_group_5ceuunsp1agbemn_content_area_background','group_5ceuunsp1agbemn_field_5923225383818'),(38000,804,'group_5ceuunsp1agbemn_content_area_animations_enabled','0'),(38001,804,'_group_5ceuunsp1agbemn_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38002,804,'group_5ceuunsp1agbemn_content_area_animations',''),(38003,804,'_group_5ceuunsp1agbemn_content_area_animations','group_5ceuunsp1agbemn_field_5b7ece258e4e8'),(38004,804,'group_zznmx4e2lzf8s9h_content_area_columns','single'),(38005,804,'_group_zznmx4e2lzf8s9h_content_area_columns','group_zznmx4e2lzf8s9h_field_5923225383814'),(38006,804,'group_zznmx4e2lzf8s9h_content_area_width','medium'),(38007,804,'_group_zznmx4e2lzf8s9h_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(38008,804,'group_zznmx4e2lzf8s9h_content_area_content_lead',''),(38009,804,'_group_zznmx4e2lzf8s9h_content_area_content_lead','group_zznmx4e2lzf8s9h_field_0079736876206'),(38010,804,'group_zznmx4e2lzf8s9h_content_area_content','<h3>Service is Just a Phone Call Away</h3>\r\nMann Plumbing &amp; Heating, LLC. is happy to help residential and commercial customers keep their spaces comfortable during any season with our comprehensive knowledge and training of HVAC systems. If your system isn’t keeping your winter home warm, we offer free consultations. Our technicians will examine your unit and determine the cause of your system’s lagging or failure. We might recommend repairs to your existing unit, or we might advise you to get a new system. Whatever assessment we present, you can rest assured your motivation for any action is to provide you with the best long-term solution. <a href=\"/contact-us/\">Give us a call today</a> to schedule professional care for your HVAC system. We’ll make sure you enjoy your time inside during the stifling summers and frigid winters.'),(38011,804,'_group_zznmx4e2lzf8s9h_content_area_content','group_zznmx4e2lzf8s9h_field_5923228483815'),(38012,804,'group_zznmx4e2lzf8s9h_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38013,804,'_group_zznmx4e2lzf8s9h_content_area_button','group_zznmx4e2lzf8s9h_field_5923225383819'),(38014,804,'group_zznmx4e2lzf8s9h_content_area_css_classes',''),(38015,804,'_group_zznmx4e2lzf8s9h_content_area_css_classes','group_zznmx4e2lzf8s9h_field_4554768684187'),(38016,804,'group_zznmx4e2lzf8s9h_content_area_align','centered'),(38017,804,'_group_zznmx4e2lzf8s9h_content_area_align','group_zznmx4e2lzf8s9h_field_5923225383899'),(38018,804,'group_zznmx4e2lzf8s9h_content_area_enable_padding','1'),(38019,804,'_group_zznmx4e2lzf8s9h_content_area_enable_padding','group_zznmx4e2lzf8s9h_field_5923225383901'),(38020,804,'group_zznmx4e2lzf8s9h_content_area_padding_top','20'),(38021,804,'_group_zznmx4e2lzf8s9h_content_area_padding_top','group_zznmx4e2lzf8s9h_field_5923225383902'),(38022,804,'group_zznmx4e2lzf8s9h_content_area_padding_bottom','20'),(38023,804,'_group_zznmx4e2lzf8s9h_content_area_padding_bottom','group_zznmx4e2lzf8s9h_field_5923225383903'),(38024,804,'group_zznmx4e2lzf8s9h_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38025,804,'_group_zznmx4e2lzf8s9h_content_area_background','group_zznmx4e2lzf8s9h_field_5923225383818'),(38026,804,'group_zznmx4e2lzf8s9h_content_area_animations_enabled','0'),(38027,804,'_group_zznmx4e2lzf8s9h_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38028,804,'group_zznmx4e2lzf8s9h_content_area_animations',''),(38029,804,'_group_zznmx4e2lzf8s9h_content_area_animations','group_zznmx4e2lzf8s9h_field_5b7ece258e4e8'),(38030,804,'group_tzgv8v1sbieylt0_ctas_ctas','489'),(38031,804,'_group_tzgv8v1sbieylt0_ctas_ctas','group_tzgv8v1sbieylt0_field_5620077701227'),(38032,804,'group_tzgv8v1sbieylt0_ctas_css_classes','cta'),(38033,804,'_group_tzgv8v1sbieylt0_ctas_css_classes','group_tzgv8v1sbieylt0_field_8795774705172'),(38034,804,'group_tzgv8v1sbieylt0_ctas_animations_enabled','0'),(38035,804,'_group_tzgv8v1sbieylt0_ctas_animations_enabled','field_5b7ece2e8e4e9'),(38036,804,'group_tzgv8v1sbieylt0_ctas_animations',''),(38037,804,'_group_tzgv8v1sbieylt0_ctas_animations','group_tzgv8v1sbieylt0_field_5b7ece258e4e8'),(38038,805,'subheading',''),(38039,805,'_subheading','field_5976417756400'),(38040,805,'group_0j287z8smusg8ro_content_area_columns','single'),(38041,805,'_group_0j287z8smusg8ro_content_area_columns','group_0j287z8smusg8ro_field_5923225383814'),(38042,805,'group_0j287z8smusg8ro_content_area_width','medium'),(38043,805,'_group_0j287z8smusg8ro_content_area_width','group_0j287z8smusg8ro_field_5923225383891'),(38044,805,'group_0j287z8smusg8ro_content_area_content_lead',''),(38045,805,'_group_0j287z8smusg8ro_content_area_content_lead','group_0j287z8smusg8ro_field_0079736876206'),(38046,805,'group_0j287z8smusg8ro_content_area_content','<h2>Custom HVAC Design &amp; Build Services for Customers</h2>\r\nThe talented team at Mann Plumbing &amp; Heating, LLC. plans and installs heating and air conditioning systems that ensure long-term efficiency and comfort for new buildings. We design and build HVAC systems for customers throughout cities and towns in South-Central Pennsylvania, such as Waynesboro, Greencastle, Gettysburg, and Chambersburg. Other areas in which we excel include gas installation and plumbing. Whatever project we’re working on, we always ensure your water pipes, gas line, and HVAC system operate as efficiently as possible. Our clients include a wide variety of businesses and institutions, including nursing homes, restaurants, schools, and other large commercial establishments. After 30 years of serving commercial and residential clients, we’ve built our expertise and skillset to make sure we can handle any type of HVAC project. Don’t leave your business’s heating and cooling systems in the hands of an inexperienced contractor with limited knowledge. Our seasoned professionals will create and install a system that suits your space for long-term performance.'),(38047,805,'_group_0j287z8smusg8ro_content_area_content','group_0j287z8smusg8ro_field_5923228483815'),(38048,805,'group_0j287z8smusg8ro_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(38049,805,'_group_0j287z8smusg8ro_content_area_button','group_0j287z8smusg8ro_field_5923225383819'),(38050,805,'group_0j287z8smusg8ro_content_area_css_classes',''),(38051,805,'_group_0j287z8smusg8ro_content_area_css_classes','group_0j287z8smusg8ro_field_4554768684187'),(38052,805,'group_0j287z8smusg8ro_content_area_align','centered'),(38053,805,'_group_0j287z8smusg8ro_content_area_align','group_0j287z8smusg8ro_field_5923225383899'),(38054,805,'group_0j287z8smusg8ro_content_area_enable_padding','1'),(38055,805,'_group_0j287z8smusg8ro_content_area_enable_padding','group_0j287z8smusg8ro_field_5923225383901'),(38056,805,'group_0j287z8smusg8ro_content_area_padding_top','20'),(38057,805,'_group_0j287z8smusg8ro_content_area_padding_top','group_0j287z8smusg8ro_field_5923225383902'),(38058,805,'group_0j287z8smusg8ro_content_area_padding_bottom','20'),(38059,805,'_group_0j287z8smusg8ro_content_area_padding_bottom','group_0j287z8smusg8ro_field_5923225383903'),(38060,805,'group_0j287z8smusg8ro_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38061,805,'_group_0j287z8smusg8ro_content_area_background','group_0j287z8smusg8ro_field_5923225383818'),(38062,805,'group_0j287z8smusg8ro_content_area_animations_enabled','0'),(38063,805,'_group_0j287z8smusg8ro_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38064,805,'group_0j287z8smusg8ro_content_area_animations',''),(38065,805,'_group_0j287z8smusg8ro_content_area_animations','group_0j287z8smusg8ro_field_5b7ece258e4e8'),(38066,805,'group_glogz5elw7g3d94_content_area_columns','image-left'),(38067,805,'_group_glogz5elw7g3d94_content_area_columns','group_glogz5elw7g3d94_field_5923225383814'),(38068,805,'group_glogz5elw7g3d94_content_area_content_lead',''),(38069,805,'_group_glogz5elw7g3d94_content_area_content_lead','group_glogz5elw7g3d94_field_0079736876206'),(38070,805,'group_glogz5elw7g3d94_content_area_content','<h3>Designing Your Heating &amp; Air Conditioning Systems</h3>\r\nWhen it’s no longer cost-effective to repair your heating or cooling system due to its age or lack of efficiency, we’ll help you find a solution that fits your space and budget needs. Let our comfort consultants evaluate the comfort needs of your home or business and recommend equipment options to replace your system. The reason your heating and cooling system isn’t providing comfortable temperatures adequately is sometimes because the unit isn’t the right size for the space. When an AC (air conditioning) or heating unit isn’t big enough to handle the needed capacity, then keeping your home or building comfortable will be impossible. Our team will design a custom system that we engineer with load calculations for your space specifically, which will provide maximum comfort and save you energy over time.'),(38071,805,'_group_glogz5elw7g3d94_content_area_content','group_glogz5elw7g3d94_field_5923228483815'),(38072,805,'group_glogz5elw7g3d94_content_area_image','740'),(38073,805,'_group_glogz5elw7g3d94_content_area_image','group_glogz5elw7g3d94_field_5923229983816'),(38074,805,'group_glogz5elw7g3d94_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38075,805,'_group_glogz5elw7g3d94_content_area_button','group_glogz5elw7g3d94_field_5923225383819'),(38076,805,'group_glogz5elw7g3d94_content_area_css_classes',''),(38077,805,'_group_glogz5elw7g3d94_content_area_css_classes','group_glogz5elw7g3d94_field_4554768684187'),(38078,805,'group_glogz5elw7g3d94_content_area_align','left'),(38079,805,'_group_glogz5elw7g3d94_content_area_align','group_glogz5elw7g3d94_field_5923225383899'),(38080,805,'group_glogz5elw7g3d94_content_area_image_sizing','center'),(38081,805,'_group_glogz5elw7g3d94_content_area_image_sizing','group_glogz5elw7g3d94_field_5923225386557'),(38082,805,'group_glogz5elw7g3d94_content_area_image_width','full-width'),(38083,805,'_group_glogz5elw7g3d94_content_area_image_width','group_glogz5elw7g3d94_field_5923225381234'),(38084,805,'group_glogz5elw7g3d94_content_area_enable_padding','1'),(38085,805,'_group_glogz5elw7g3d94_content_area_enable_padding','group_glogz5elw7g3d94_field_5923225383901'),(38086,805,'group_glogz5elw7g3d94_content_area_padding_top','0'),(38087,805,'_group_glogz5elw7g3d94_content_area_padding_top','group_glogz5elw7g3d94_field_5923225383902'),(38088,805,'group_glogz5elw7g3d94_content_area_padding_bottom','0'),(38089,805,'_group_glogz5elw7g3d94_content_area_padding_bottom','group_glogz5elw7g3d94_field_5923225383903'),(38090,805,'group_glogz5elw7g3d94_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38091,805,'_group_glogz5elw7g3d94_content_area_background','group_glogz5elw7g3d94_field_5923225383818'),(38092,805,'group_glogz5elw7g3d94_content_area_animations_enabled','0'),(38093,805,'_group_glogz5elw7g3d94_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38094,805,'group_glogz5elw7g3d94_content_area_animations',''),(38095,805,'_group_glogz5elw7g3d94_content_area_animations','group_glogz5elw7g3d94_field_5b7ece258e4e8'),(38096,805,'group_lt793odq0j0s3qx_content_area_columns','single'),(38097,805,'_group_lt793odq0j0s3qx_content_area_columns','group_lt793odq0j0s3qx_field_5923225383814'),(38098,805,'group_lt793odq0j0s3qx_content_area_width','medium'),(38099,805,'_group_lt793odq0j0s3qx_content_area_width','group_lt793odq0j0s3qx_field_5923225383891'),(38100,805,'group_lt793odq0j0s3qx_content_area_content_lead',''),(38101,805,'_group_lt793odq0j0s3qx_content_area_content_lead','group_lt793odq0j0s3qx_field_0079736876206'),(38102,805,'group_lt793odq0j0s3qx_content_area_content','<h3>Solutions for Your Duct Work</h3>\r\nIf you have undersized or leaky ducts, then your heating and air conditioning bills can increase significantly. Your HVAC equipment’s capacity will also reduce dramatically, and you’ll end up having problems with your indoor air quality. Our technicians perform thorough repairs to resolve your ductwork, or we can redesign it to optimize your airflow and ensure you won’t have any issues in the future. We’re the team you can count on in South-Central Pennsylvania for new ductwork to support your heating and air conditioning systems. We\'ve spent decades installing air conditioning ductwork in homes and businesses, and we welcome the opportunity to do the same for you. <a href=\"/contact-us/\">Give us a call today</a> to schedule a consultation. We\'ll examine your system and ductwork and recommend the solution that suits your budget and comfort needs.'),(38103,805,'_group_lt793odq0j0s3qx_content_area_content','group_lt793odq0j0s3qx_field_5923228483815'),(38104,805,'group_lt793odq0j0s3qx_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38105,805,'_group_lt793odq0j0s3qx_content_area_button','group_lt793odq0j0s3qx_field_5923225383819'),(38106,805,'group_lt793odq0j0s3qx_content_area_css_classes',''),(38107,805,'_group_lt793odq0j0s3qx_content_area_css_classes','group_lt793odq0j0s3qx_field_4554768684187'),(38108,805,'group_lt793odq0j0s3qx_content_area_align','centered'),(38109,805,'_group_lt793odq0j0s3qx_content_area_align','group_lt793odq0j0s3qx_field_5923225383899'),(38110,805,'group_lt793odq0j0s3qx_content_area_enable_padding','1'),(38111,805,'_group_lt793odq0j0s3qx_content_area_enable_padding','group_lt793odq0j0s3qx_field_5923225383901'),(38112,805,'group_lt793odq0j0s3qx_content_area_padding_top','20'),(38113,805,'_group_lt793odq0j0s3qx_content_area_padding_top','group_lt793odq0j0s3qx_field_5923225383902'),(38114,805,'group_lt793odq0j0s3qx_content_area_padding_bottom','20'),(38115,805,'_group_lt793odq0j0s3qx_content_area_padding_bottom','group_lt793odq0j0s3qx_field_5923225383903'),(38116,805,'group_lt793odq0j0s3qx_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38117,805,'_group_lt793odq0j0s3qx_content_area_background','group_lt793odq0j0s3qx_field_5923225383818'),(38118,805,'group_lt793odq0j0s3qx_content_area_animations_enabled','0'),(38119,805,'_group_lt793odq0j0s3qx_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38120,805,'group_lt793odq0j0s3qx_content_area_animations',''),(38121,805,'_group_lt793odq0j0s3qx_content_area_animations','group_lt793odq0j0s3qx_field_5b7ece258e4e8'),(38122,805,'group_7hpz2gts0xxjbk1_ctas_ctas','489'),(38123,805,'_group_7hpz2gts0xxjbk1_ctas_ctas','group_7hpz2gts0xxjbk1_field_5620077701227'),(38124,805,'group_7hpz2gts0xxjbk1_ctas_css_classes','cta'),(38125,805,'_group_7hpz2gts0xxjbk1_ctas_css_classes','group_7hpz2gts0xxjbk1_field_8795774705172'),(38126,805,'group_7hpz2gts0xxjbk1_ctas_animations_enabled','0'),(38127,805,'_group_7hpz2gts0xxjbk1_ctas_animations_enabled','field_5b7ece2e8e4e9'),(38128,805,'group_7hpz2gts0xxjbk1_ctas_animations',''),(38129,805,'_group_7hpz2gts0xxjbk1_ctas_animations','group_7hpz2gts0xxjbk1_field_5b7ece258e4e8'),(38130,806,'subheading',''),(38131,806,'_subheading','field_5976417756400'),(38132,806,'group_qo98bywf16e4f60_content_area_columns','single'),(38133,806,'_group_qo98bywf16e4f60_content_area_columns','group_qo98bywf16e4f60_field_5923225383814'),(38134,806,'group_qo98bywf16e4f60_content_area_width','medium'),(38135,806,'_group_qo98bywf16e4f60_content_area_width','group_qo98bywf16e4f60_field_5923225383891'),(38136,806,'group_qo98bywf16e4f60_content_area_content_lead',''),(38137,806,'_group_qo98bywf16e4f60_content_area_content_lead','group_qo98bywf16e4f60_field_0079736876206'),(38138,806,'group_qo98bywf16e4f60_content_area_content','<h2>Plumbing Solutions for Clients in Gettysburg, PA</h2>\r\nMann Plumbing &amp; Heating, LLC. is a full-service plumbing contractor for your entire plumbing system. We offer a comprehensive list of plumbing services for homes and businesses in Gettysburg, PA, as well as Shippensburg, Chambersburg, and beyond. Whether you need to replace or repair your toilet or faucet, or you have a water heater that needs installation, we’ll make sure you get the service you need for a complete working system in your building. On top of our hands-on plumbing services, our experts are happy to consult with you regarding improvements to your existing system. This collaboration can lead to better performance and save you energy costs. For the past 30 years, Mann Plumbing &amp; Heating, LLC. has upheld a reputation of quality in every job we perform in South-Central Pennsylvania. Let our team of skilled professionals show you the difference our exceptional expertise makes in maintaining an efficient plumbing system.'),(38139,806,'_group_qo98bywf16e4f60_content_area_content','group_qo98bywf16e4f60_field_5923228483815'),(38140,806,'group_qo98bywf16e4f60_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(38141,806,'_group_qo98bywf16e4f60_content_area_button','group_qo98bywf16e4f60_field_5923225383819'),(38142,806,'group_qo98bywf16e4f60_content_area_css_classes',''),(38143,806,'_group_qo98bywf16e4f60_content_area_css_classes','group_qo98bywf16e4f60_field_4554768684187'),(38144,806,'group_qo98bywf16e4f60_content_area_align','centered'),(38145,806,'_group_qo98bywf16e4f60_content_area_align','group_qo98bywf16e4f60_field_5923225383899'),(38146,806,'group_qo98bywf16e4f60_content_area_enable_padding','1'),(38147,806,'_group_qo98bywf16e4f60_content_area_enable_padding','group_qo98bywf16e4f60_field_5923225383901'),(38148,806,'group_qo98bywf16e4f60_content_area_padding_top','20'),(38149,806,'_group_qo98bywf16e4f60_content_area_padding_top','group_qo98bywf16e4f60_field_5923225383902'),(38150,806,'group_qo98bywf16e4f60_content_area_padding_bottom','20'),(38151,806,'_group_qo98bywf16e4f60_content_area_padding_bottom','group_qo98bywf16e4f60_field_5923225383903'),(38152,806,'group_qo98bywf16e4f60_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38153,806,'_group_qo98bywf16e4f60_content_area_background','group_qo98bywf16e4f60_field_5923225383818'),(38154,806,'group_qo98bywf16e4f60_content_area_animations_enabled','0'),(38155,806,'_group_qo98bywf16e4f60_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38156,806,'group_qo98bywf16e4f60_content_area_animations',''),(38157,806,'_group_qo98bywf16e4f60_content_area_animations','group_qo98bywf16e4f60_field_5b7ece258e4e8'),(38158,806,'group_sfvs9xaj2olhh3a_content_area_columns','image-left'),(38159,806,'_group_sfvs9xaj2olhh3a_content_area_columns','group_sfvs9xaj2olhh3a_field_5923225383814'),(38160,806,'group_sfvs9xaj2olhh3a_content_area_content_lead',''),(38161,806,'_group_sfvs9xaj2olhh3a_content_area_content_lead','group_sfvs9xaj2olhh3a_field_0079736876206'),(38162,806,'group_sfvs9xaj2olhh3a_content_area_content','<h3>Types of Plumbing Services We Offer</h3>\r\nFor any plumbing repair and installation we perform, you can count on the team at Mann Plumbing &amp; Heating, LLC. for thorough work with sharp attention to detail. We make sure your gas and water lines run without any issues, and you should depend on a hot shower in the morning and a steady stream from the faucet when you’re washing dishes. Our versatile expertise in plumbing makes us the prime company to call when you have a clog, leak, or new major component for your building. We ensure your newly installed water heater supplies hot water for your home, restaurant, or office. Reach out to us for high-quality plumbing services for your new or existing home or building.'),(38163,806,'_group_sfvs9xaj2olhh3a_content_area_content','group_sfvs9xaj2olhh3a_field_5923228483815'),(38164,806,'group_sfvs9xaj2olhh3a_content_area_image','738'),(38165,806,'_group_sfvs9xaj2olhh3a_content_area_image','group_sfvs9xaj2olhh3a_field_5923229983816'),(38166,806,'group_sfvs9xaj2olhh3a_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38167,806,'_group_sfvs9xaj2olhh3a_content_area_button','group_sfvs9xaj2olhh3a_field_5923225383819'),(38168,806,'group_sfvs9xaj2olhh3a_content_area_css_classes',''),(38169,806,'_group_sfvs9xaj2olhh3a_content_area_css_classes','group_sfvs9xaj2olhh3a_field_4554768684187'),(38170,806,'group_sfvs9xaj2olhh3a_content_area_align','left'),(38171,806,'_group_sfvs9xaj2olhh3a_content_area_align','group_sfvs9xaj2olhh3a_field_5923225383899'),(38172,806,'group_sfvs9xaj2olhh3a_content_area_image_sizing','center'),(38173,806,'_group_sfvs9xaj2olhh3a_content_area_image_sizing','group_sfvs9xaj2olhh3a_field_5923225386557'),(38174,806,'group_sfvs9xaj2olhh3a_content_area_image_width','full-width'),(38175,806,'_group_sfvs9xaj2olhh3a_content_area_image_width','group_sfvs9xaj2olhh3a_field_5923225381234'),(38176,806,'group_sfvs9xaj2olhh3a_content_area_enable_padding','1'),(38177,806,'_group_sfvs9xaj2olhh3a_content_area_enable_padding','group_sfvs9xaj2olhh3a_field_5923225383901'),(38178,806,'group_sfvs9xaj2olhh3a_content_area_padding_top','0'),(38179,806,'_group_sfvs9xaj2olhh3a_content_area_padding_top','group_sfvs9xaj2olhh3a_field_5923225383902'),(38180,806,'group_sfvs9xaj2olhh3a_content_area_padding_bottom','0'),(38181,806,'_group_sfvs9xaj2olhh3a_content_area_padding_bottom','group_sfvs9xaj2olhh3a_field_5923225383903'),(38182,806,'group_sfvs9xaj2olhh3a_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38183,806,'_group_sfvs9xaj2olhh3a_content_area_background','group_sfvs9xaj2olhh3a_field_5923225383818'),(38184,806,'group_sfvs9xaj2olhh3a_content_area_animations_enabled','0'),(38185,806,'_group_sfvs9xaj2olhh3a_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38186,806,'group_sfvs9xaj2olhh3a_content_area_animations',''),(38187,806,'_group_sfvs9xaj2olhh3a_content_area_animations','group_sfvs9xaj2olhh3a_field_5b7ece258e4e8'),(38188,806,'group_xd5cu11k7q2944x_content_area_columns','two-column'),(38189,806,'_group_xd5cu11k7q2944x_content_area_columns','group_xd5cu11k7q2944x_field_5923225383814'),(38190,806,'group_xd5cu11k7q2944x_content_area_width','medium'),(38191,806,'_group_xd5cu11k7q2944x_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(38192,806,'group_xd5cu11k7q2944x_content_area_content_lead','<h5>We provide all of the following services:</h5>'),(38193,806,'_group_xd5cu11k7q2944x_content_area_content_lead','group_xd5cu11k7q2944x_field_0079736876206'),(38194,806,'group_xd5cu11k7q2944x_content_area_content','<ul>\r\n 	<li>Residential and Commercial New Construction</li>\r\n 	<li>Service and Repair of All Makes and Models</li>\r\n 	<li>Remodeling Projects (Include Free Estimates)</li>\r\n 	<li>Sewer Drain Cleaning and Repair</li>\r\n 	<li>Residential and Commerical Excavation</li>\r\n</ul>'),(38195,806,'_group_xd5cu11k7q2944x_content_area_content','group_xd5cu11k7q2944x_field_5923228483815'),(38196,806,'group_xd5cu11k7q2944x_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38197,806,'_group_xd5cu11k7q2944x_content_area_button','group_xd5cu11k7q2944x_field_5923225383819'),(38198,806,'group_xd5cu11k7q2944x_content_area_css_classes',''),(38199,806,'_group_xd5cu11k7q2944x_content_area_css_classes','group_xd5cu11k7q2944x_field_4554768684187'),(38200,806,'group_xd5cu11k7q2944x_content_area_align','left'),(38201,806,'_group_xd5cu11k7q2944x_content_area_align','group_xd5cu11k7q2944x_field_5923225383899'),(38202,806,'group_xd5cu11k7q2944x_content_area_enable_padding','1'),(38203,806,'_group_xd5cu11k7q2944x_content_area_enable_padding','group_xd5cu11k7q2944x_field_5923225383901'),(38204,806,'group_xd5cu11k7q2944x_content_area_padding_top','20'),(38205,806,'_group_xd5cu11k7q2944x_content_area_padding_top','group_xd5cu11k7q2944x_field_5923225383902'),(38206,806,'group_xd5cu11k7q2944x_content_area_padding_bottom','20'),(38207,806,'_group_xd5cu11k7q2944x_content_area_padding_bottom','group_xd5cu11k7q2944x_field_5923225383903'),(38208,806,'group_xd5cu11k7q2944x_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38209,806,'_group_xd5cu11k7q2944x_content_area_background','group_xd5cu11k7q2944x_field_5923225383818'),(38210,806,'group_xd5cu11k7q2944x_content_area_animations_enabled','0'),(38211,806,'_group_xd5cu11k7q2944x_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38212,806,'group_xd5cu11k7q2944x_content_area_animations',''),(38213,806,'_group_xd5cu11k7q2944x_content_area_animations','group_xd5cu11k7q2944x_field_5b7ece258e4e8'),(38214,806,'group_ud1z6cp3we1stc6_ctas_ctas','489'),(38215,806,'_group_ud1z6cp3we1stc6_ctas_ctas','group_ud1z6cp3we1stc6_field_5620077701227'),(38216,806,'group_ud1z6cp3we1stc6_ctas_css_classes','cta'),(38217,806,'_group_ud1z6cp3we1stc6_ctas_css_classes','group_ud1z6cp3we1stc6_field_8795774705172'),(38218,806,'group_ud1z6cp3we1stc6_ctas_animations_enabled','0'),(38219,806,'_group_ud1z6cp3we1stc6_ctas_animations_enabled','field_5b7ece2e8e4e9'),(38220,806,'group_ud1z6cp3we1stc6_ctas_animations',''),(38221,806,'_group_ud1z6cp3we1stc6_ctas_animations','group_ud1z6cp3we1stc6_field_5b7ece258e4e8'),(38222,806,'group_xd5cu11k7q2944x_content_area_content_two','<ul>\r\n 	<li>Faucet, Toilet, and Fixture Repairs</li>\r\n 	<li>Water Heater Installation</li>\r\n 	<li>Gas Installation (Certified Columbia Gas Installer)</li>\r\n 	<li>Water and Sanitation Line Repair and Installation</li>\r\n</ul>'),(38223,806,'_group_xd5cu11k7q2944x_content_area_content_two','group_xd5cu11k7q2944x_field_9871214998600'),(38224,806,'group_rcq58c1snwtp4dg_content_area_columns','single'),(38225,806,'_group_rcq58c1snwtp4dg_content_area_columns','group_rcq58c1snwtp4dg_field_5923225383814'),(38226,806,'group_rcq58c1snwtp4dg_content_area_width','medium'),(38227,806,'_group_rcq58c1snwtp4dg_content_area_width','group_rcq58c1snwtp4dg_field_5923225383891'),(38228,806,'group_rcq58c1snwtp4dg_content_area_content_lead',''),(38229,806,'_group_rcq58c1snwtp4dg_content_area_content_lead','group_rcq58c1snwtp4dg_field_0079736876206'),(38230,806,'group_rcq58c1snwtp4dg_content_area_content','<h3>Get Efficient Plumbing Service for Your Building</h3>\r\nWe’re dedicated to serving residential and commercial customers like you with five-star service and honest answers to your plumbing issues. Anything we repair or install is handled to ensure long-term efficiency with a minimal chance of problems in the future. When your plumbing system and fixtures function properly, you’ll save on headaches from cold showers and overflowing toilets, as well as lower utility bills. Mann Plumbing &amp; Heating, LLC. is ready to help you get the best performance out of your home or building’s plumbing system. <a href=\"/contact-us/\">Give us a call today</a> to schedule service or a consultation for your residential or commercial structure. We look forward to working with you and earning a long-term relationship.'),(38231,806,'_group_rcq58c1snwtp4dg_content_area_content','group_rcq58c1snwtp4dg_field_5923228483815'),(38232,806,'group_rcq58c1snwtp4dg_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38233,806,'_group_rcq58c1snwtp4dg_content_area_button','group_rcq58c1snwtp4dg_field_5923225383819'),(38234,806,'group_rcq58c1snwtp4dg_content_area_css_classes',''),(38235,806,'_group_rcq58c1snwtp4dg_content_area_css_classes','group_rcq58c1snwtp4dg_field_4554768684187'),(38236,806,'group_rcq58c1snwtp4dg_content_area_align','centered'),(38237,806,'_group_rcq58c1snwtp4dg_content_area_align','group_rcq58c1snwtp4dg_field_5923225383899'),(38238,806,'group_rcq58c1snwtp4dg_content_area_enable_padding','1'),(38239,806,'_group_rcq58c1snwtp4dg_content_area_enable_padding','group_rcq58c1snwtp4dg_field_5923225383901'),(38240,806,'group_rcq58c1snwtp4dg_content_area_padding_top','20'),(38241,806,'_group_rcq58c1snwtp4dg_content_area_padding_top','group_rcq58c1snwtp4dg_field_5923225383902'),(38242,806,'group_rcq58c1snwtp4dg_content_area_padding_bottom','20'),(38243,806,'_group_rcq58c1snwtp4dg_content_area_padding_bottom','group_rcq58c1snwtp4dg_field_5923225383903'),(38244,806,'group_rcq58c1snwtp4dg_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38245,806,'_group_rcq58c1snwtp4dg_content_area_background','group_rcq58c1snwtp4dg_field_5923225383818'),(38246,806,'group_rcq58c1snwtp4dg_content_area_animations_enabled','0'),(38247,806,'_group_rcq58c1snwtp4dg_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38248,806,'group_rcq58c1snwtp4dg_content_area_animations',''),(38249,806,'_group_rcq58c1snwtp4dg_content_area_animations','group_rcq58c1snwtp4dg_field_5b7ece258e4e8'),(38250,807,'subheading',''),(38251,807,'_subheading','field_5976417756400'),(38252,807,'group_bll1v31dtnw9rl6_content_area_columns','single'),(38253,807,'_group_bll1v31dtnw9rl6_content_area_columns','group_bll1v31dtnw9rl6_field_5923225383814'),(38254,807,'group_bll1v31dtnw9rl6_content_area_width','medium'),(38255,807,'_group_bll1v31dtnw9rl6_content_area_width','group_bll1v31dtnw9rl6_field_5923225383891'),(38256,807,'group_bll1v31dtnw9rl6_content_area_content_lead',''),(38257,807,'_group_bll1v31dtnw9rl6_content_area_content_lead','group_bll1v31dtnw9rl6_field_0079736876206'),(38258,807,'group_bll1v31dtnw9rl6_content_area_content','<h2>Your Local Professionals for Excavation Services</h2>\r\nMann Plumbing & Heating, LLC. offers customers throughout Shippensburg, Gettysburg, Waynesboro, Chambersburg, and beyond a wide array of solutions for their excavating needs. Home and business owners, buyers, and developers in Franklin County can get the drilling, separation, and inspection services they require from our team of seasoned experts in property excavation. Our services cover all sectors that customers need, spanning from commercial and residential to industrial and municipal. We’re ready to put our site work, design, and consultation services to work for you to find an efficient plan for your project. You can trust our 30 years of experience in plumbing, HVAC, and excavation.'),(38259,807,'_group_bll1v31dtnw9rl6_content_area_content','group_bll1v31dtnw9rl6_field_5923228483815'),(38260,807,'group_bll1v31dtnw9rl6_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(38261,807,'_group_bll1v31dtnw9rl6_content_area_button','group_bll1v31dtnw9rl6_field_5923225383819'),(38262,807,'group_bll1v31dtnw9rl6_content_area_css_classes',''),(38263,807,'_group_bll1v31dtnw9rl6_content_area_css_classes','group_bll1v31dtnw9rl6_field_4554768684187'),(38264,807,'group_bll1v31dtnw9rl6_content_area_align','centered'),(38265,807,'_group_bll1v31dtnw9rl6_content_area_align','group_bll1v31dtnw9rl6_field_5923225383899'),(38266,807,'group_bll1v31dtnw9rl6_content_area_enable_padding','1'),(38267,807,'_group_bll1v31dtnw9rl6_content_area_enable_padding','group_bll1v31dtnw9rl6_field_5923225383901'),(38268,807,'group_bll1v31dtnw9rl6_content_area_padding_top','20'),(38269,807,'_group_bll1v31dtnw9rl6_content_area_padding_top','group_bll1v31dtnw9rl6_field_5923225383902'),(38270,807,'group_bll1v31dtnw9rl6_content_area_padding_bottom','20'),(38271,807,'_group_bll1v31dtnw9rl6_content_area_padding_bottom','group_bll1v31dtnw9rl6_field_5923225383903'),(38272,807,'group_bll1v31dtnw9rl6_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38273,807,'_group_bll1v31dtnw9rl6_content_area_background','group_bll1v31dtnw9rl6_field_5923225383818'),(38274,807,'group_bll1v31dtnw9rl6_content_area_animations_enabled','0'),(38275,807,'_group_bll1v31dtnw9rl6_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38276,807,'group_bll1v31dtnw9rl6_content_area_animations',''),(38277,807,'_group_bll1v31dtnw9rl6_content_area_animations','group_bll1v31dtnw9rl6_field_5b7ece258e4e8'),(38278,807,'group_5zwsdbbzhgq9b3k_content_area_columns','image-left'),(38279,807,'_group_5zwsdbbzhgq9b3k_content_area_columns','group_5zwsdbbzhgq9b3k_field_5923225383814'),(38280,807,'group_5zwsdbbzhgq9b3k_content_area_content_lead',''),(38281,807,'_group_5zwsdbbzhgq9b3k_content_area_content_lead','group_5zwsdbbzhgq9b3k_field_0079736876206'),(38282,807,'group_5zwsdbbzhgq9b3k_content_area_content','<h3>Services for Residential &amp; Commercial Customers</h3>\r\nIf you have a project that involves new construction, work on an existing structure, or inspection of a home or building’s sewer and drain lines, Mann Plumbing &amp; Heating can help. Our team of talented professionals offers a variety of excavation services to provide solutions for residential and commercial projects.'),(38283,807,'_group_5zwsdbbzhgq9b3k_content_area_content','group_5zwsdbbzhgq9b3k_field_5923228483815'),(38284,807,'group_5zwsdbbzhgq9b3k_content_area_image','741'),(38285,807,'_group_5zwsdbbzhgq9b3k_content_area_image','group_5zwsdbbzhgq9b3k_field_5923229983816'),(38286,807,'group_5zwsdbbzhgq9b3k_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38287,807,'_group_5zwsdbbzhgq9b3k_content_area_button','group_5zwsdbbzhgq9b3k_field_5923225383819'),(38288,807,'group_5zwsdbbzhgq9b3k_content_area_css_classes',''),(38289,807,'_group_5zwsdbbzhgq9b3k_content_area_css_classes','group_5zwsdbbzhgq9b3k_field_4554768684187'),(38290,807,'group_5zwsdbbzhgq9b3k_content_area_align','left'),(38291,807,'_group_5zwsdbbzhgq9b3k_content_area_align','group_5zwsdbbzhgq9b3k_field_5923225383899'),(38292,807,'group_5zwsdbbzhgq9b3k_content_area_image_sizing','center'),(38293,807,'_group_5zwsdbbzhgq9b3k_content_area_image_sizing','group_5zwsdbbzhgq9b3k_field_5923225386557'),(38294,807,'group_5zwsdbbzhgq9b3k_content_area_image_width','full-width'),(38295,807,'_group_5zwsdbbzhgq9b3k_content_area_image_width','group_5zwsdbbzhgq9b3k_field_5923225381234'),(38296,807,'group_5zwsdbbzhgq9b3k_content_area_enable_padding','1'),(38297,807,'_group_5zwsdbbzhgq9b3k_content_area_enable_padding','group_5zwsdbbzhgq9b3k_field_5923225383901'),(38298,807,'group_5zwsdbbzhgq9b3k_content_area_padding_top','0'),(38299,807,'_group_5zwsdbbzhgq9b3k_content_area_padding_top','group_5zwsdbbzhgq9b3k_field_5923225383902'),(38300,807,'group_5zwsdbbzhgq9b3k_content_area_padding_bottom','0'),(38301,807,'_group_5zwsdbbzhgq9b3k_content_area_padding_bottom','group_5zwsdbbzhgq9b3k_field_5923225383903'),(38302,807,'group_5zwsdbbzhgq9b3k_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38303,807,'_group_5zwsdbbzhgq9b3k_content_area_background','group_5zwsdbbzhgq9b3k_field_5923225383818'),(38304,807,'group_5zwsdbbzhgq9b3k_content_area_animations_enabled','0'),(38305,807,'_group_5zwsdbbzhgq9b3k_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38306,807,'group_5zwsdbbzhgq9b3k_content_area_animations',''),(38307,807,'_group_5zwsdbbzhgq9b3k_content_area_animations','group_5zwsdbbzhgq9b3k_field_5b7ece258e4e8'),(38308,807,'group_6tb9wboffn47hyy_content_area_columns','two-column'),(38309,807,'_group_6tb9wboffn47hyy_content_area_columns','group_6tb9wboffn47hyy_field_5923225383814'),(38310,807,'group_6tb9wboffn47hyy_content_area_width','medium'),(38311,807,'_group_6tb9wboffn47hyy_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(38312,807,'group_6tb9wboffn47hyy_content_area_content_lead',''),(38313,807,'_group_6tb9wboffn47hyy_content_area_content_lead','group_6tb9wboffn47hyy_field_0079736876206'),(38314,807,'group_6tb9wboffn47hyy_content_area_content','<h5>Horizontal Directional Drilling</h5>\r\nThis form of drilling allows contractors to install power lines, sewer and water mains, and pipelines without digging trenches into the property. We take care to keep all drilling as efficient as possible with minimal disturbance to any surface structures or utility lines and pipes already in place.\r\n<h5>Sewer Scopes</h5>\r\nA sewer scope is a video inspection of your sewer line. It leads from the house or building to the connection to the septic tank or HOA tap. The information that sewer scopes collect is highly beneficial to home and property buyers, which is why many inspections include a sewer scope as part of their property assessment.'),(38315,807,'_group_6tb9wboffn47hyy_content_area_content','group_6tb9wboffn47hyy_field_5923228483815'),(38316,807,'group_6tb9wboffn47hyy_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38317,807,'_group_6tb9wboffn47hyy_content_area_button','group_6tb9wboffn47hyy_field_5923225383819'),(38318,807,'group_6tb9wboffn47hyy_content_area_css_classes','padding-fix'),(38319,807,'_group_6tb9wboffn47hyy_content_area_css_classes','group_6tb9wboffn47hyy_field_4554768684187'),(38320,807,'group_6tb9wboffn47hyy_content_area_align','left'),(38321,807,'_group_6tb9wboffn47hyy_content_area_align','group_6tb9wboffn47hyy_field_5923225383899'),(38322,807,'group_6tb9wboffn47hyy_content_area_enable_padding','1'),(38323,807,'_group_6tb9wboffn47hyy_content_area_enable_padding','group_6tb9wboffn47hyy_field_5923225383901'),(38324,807,'group_6tb9wboffn47hyy_content_area_padding_top','20'),(38325,807,'_group_6tb9wboffn47hyy_content_area_padding_top','group_6tb9wboffn47hyy_field_5923225383902'),(38326,807,'group_6tb9wboffn47hyy_content_area_padding_bottom','20'),(38327,807,'_group_6tb9wboffn47hyy_content_area_padding_bottom','group_6tb9wboffn47hyy_field_5923225383903'),(38328,807,'group_6tb9wboffn47hyy_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38329,807,'_group_6tb9wboffn47hyy_content_area_background','group_6tb9wboffn47hyy_field_5923225383818'),(38330,807,'group_6tb9wboffn47hyy_content_area_animations_enabled','0'),(38331,807,'_group_6tb9wboffn47hyy_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38332,807,'group_6tb9wboffn47hyy_content_area_animations',''),(38333,807,'_group_6tb9wboffn47hyy_content_area_animations','group_6tb9wboffn47hyy_field_5b7ece258e4e8'),(38334,807,'group_57f36i17ugcs5l4_ctas_ctas','489'),(38335,807,'_group_57f36i17ugcs5l4_ctas_ctas','group_57f36i17ugcs5l4_field_5620077701227'),(38336,807,'group_57f36i17ugcs5l4_ctas_css_classes','cta'),(38337,807,'_group_57f36i17ugcs5l4_ctas_css_classes','group_57f36i17ugcs5l4_field_8795774705172'),(38338,807,'group_57f36i17ugcs5l4_ctas_animations_enabled','0'),(38339,807,'_group_57f36i17ugcs5l4_ctas_animations_enabled','field_5b7ece2e8e4e9'),(38340,807,'group_57f36i17ugcs5l4_ctas_animations',''),(38341,807,'_group_57f36i17ugcs5l4_ctas_animations','group_57f36i17ugcs5l4_field_5b7ece258e4e8'),(38342,807,'group_br5n2isiewhel27_content_area_columns','single'),(38343,807,'_group_br5n2isiewhel27_content_area_columns','group_br5n2isiewhel27_field_5923225383814'),(38344,807,'group_br5n2isiewhel27_content_area_width','medium'),(38345,807,'_group_br5n2isiewhel27_content_area_width','group_br5n2isiewhel27_field_5923225383891'),(38346,807,'group_br5n2isiewhel27_content_area_content_lead',''),(38347,807,'_group_br5n2isiewhel27_content_area_content_lead','group_br5n2isiewhel27_field_0079736876206'),(38348,807,'group_br5n2isiewhel27_content_area_content','<h3>Call Us for Projects in Shippensburg, PA</h3>\r\nIf your project calls for excavation services to complete the necessary utility line installations or inspections of sewer and drain lines, we’re happy to help you. Mann Plumbing &amp; Heating, LLC. services residential and commercial customers throughout South-Central Pennsylvania, including Chambersburg, Greencastle, Waynesboro, Shippensburg, Gettysburg, and St. Thomas. If you’re in one of the towns in between these locations, we also provide professional service for you. Our team is ready to handle your excavation needs, so <a href=\"/contact-us/\">give us a call today</a> with any questions or to schedule service for your project.'),(38349,807,'_group_br5n2isiewhel27_content_area_content','group_br5n2isiewhel27_field_5923228483815'),(38350,807,'group_br5n2isiewhel27_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38351,807,'_group_br5n2isiewhel27_content_area_button','group_br5n2isiewhel27_field_5923225383819'),(38352,807,'group_br5n2isiewhel27_content_area_css_classes',''),(38353,807,'_group_br5n2isiewhel27_content_area_css_classes','group_br5n2isiewhel27_field_4554768684187'),(38354,807,'group_br5n2isiewhel27_content_area_align','centered'),(38355,807,'_group_br5n2isiewhel27_content_area_align','group_br5n2isiewhel27_field_5923225383899'),(38356,807,'group_br5n2isiewhel27_content_area_enable_padding','1'),(38357,807,'_group_br5n2isiewhel27_content_area_enable_padding','group_br5n2isiewhel27_field_5923225383901'),(38358,807,'group_br5n2isiewhel27_content_area_padding_top','20'),(38359,807,'_group_br5n2isiewhel27_content_area_padding_top','group_br5n2isiewhel27_field_5923225383902'),(38360,807,'group_br5n2isiewhel27_content_area_padding_bottom','20'),(38361,807,'_group_br5n2isiewhel27_content_area_padding_bottom','group_br5n2isiewhel27_field_5923225383903'),(38362,807,'group_br5n2isiewhel27_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38363,807,'_group_br5n2isiewhel27_content_area_background','group_br5n2isiewhel27_field_5923225383818'),(38364,807,'group_br5n2isiewhel27_content_area_animations_enabled','0'),(38365,807,'_group_br5n2isiewhel27_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38366,807,'group_br5n2isiewhel27_content_area_animations',''),(38367,807,'_group_br5n2isiewhel27_content_area_animations','group_br5n2isiewhel27_field_5b7ece258e4e8'),(38368,807,'group_6tb9wboffn47hyy_content_area_content_two','<h5>Party Sewer Line Separation</h5>\r\nCreating horizontal and vertical separations for multiple sewer lines may be necessary for your property, especially when the area has existing utilities already in place. We handle sewer line separations with the utmost consideration for the existing standards for waterworks.\r\n<h5>Video Inspections</h5>\r\nUsing video inspection, we can more easily identify any current or potential issues with a sewer or drain line. Pipelines are susceptible to many problems, including corrosion, grease buildup, damage from roots, and obstructions such as paper towels and baby wipes. Once we identify the issue, our team can formulate the best solution.'),(38369,807,'_group_6tb9wboffn47hyy_content_area_content_two','group_6tb9wboffn47hyy_field_9871214998600'),(38376,818,'group_0yx3acydmccnw9z_hero_panel','1'),(38377,818,'_group_0yx3acydmccnw9z_hero_panel','group_0yx3acydmccnw9z_field_591dea5128ac1'),(38378,818,'group_0yx3acydmccnw9z_hero_height','0'),(38379,818,'_group_0yx3acydmccnw9z_hero_height','group_0yx3acydmccnw9z_field_591dea5128ac0'),(38380,818,'group_0yx3acydmccnw9z_hero_autoplay','off'),(38381,818,'_group_0yx3acydmccnw9z_hero_autoplay','group_0yx3acydmccnw9z_field_591dea5128ac2'),(38382,818,'group_jay33uzo882n74g_gallery_content','<h3 style=\"text-align: center;\">Call Us for Exceptional Plumbing &amp; HVAC Service</h3>\r\n<p style=\"text-align: center;\">Our team is available to provide service throughout South-Central Pennsylvania, including near Chambersburg, Greencastle, Waynesboro, Shippensburg, Gettysburg, St. Thomas, and all the small towns in between. Our extensive training and experience ensure your home or building’s plumbing and heating issues get rectified with the utmost consideration for the best possible long-term results. If you have questions or need plumbing, HVAC, or excavation repairs or replacement for air conditioning, give us a call today to schedule service.</p>'),(38383,818,'_group_jay33uzo882n74g_gallery_content','group_jay33uzo882n74g_field_591ca1f42e821'),(38384,818,'group_jay33uzo882n74g_gallery_images','a:4:{i:0;s:3:\"561\";i:1;s:3:\"563\";i:2;s:3:\"560\";i:3;s:3:\"562\";}'),(38385,818,'_group_jay33uzo882n74g_gallery_images','group_jay33uzo882n74g_field_591ca1f42e820'),(38386,818,'group_jay33uzo882n74g_gallery_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#ffffff\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38387,818,'_group_jay33uzo882n74g_gallery_background','group_jay33uzo882n74g_field_591ca1f42e829'),(38388,818,'group_zi794n2mdkggmlv_services_content','<h3 style=\"text-align: center;\">Our Versatile Services for Your Home or Business</h3>\r\n<p style=\"text-align: center;\">Mann Plumbing &amp; Heating, LLC. has ample experience helping residential and commercial customers like you with a wide array of issues with your plumbing, HVAC, and excavation needs. Our specialties include the following:</p>'),(38389,818,'_group_zi794n2mdkggmlv_services_content','group_zi794n2mdkggmlv_field_35a935e59d870'),(38390,818,'group_zi794n2mdkggmlv_services_services','4'),(38391,818,'_group_zi794n2mdkggmlv_services_services','group_zi794n2mdkggmlv_field_35a935e59d871'),(38392,818,'group_zi794n2mdkggmlv_services_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38393,818,'_group_zi794n2mdkggmlv_services_button','group_zi794n2mdkggmlv_field_35a935e59da88'),(38394,818,'group_zi794n2mdkggmlv_services_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:6:\"repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:4:\"auto\";}'),(38395,818,'_group_zi794n2mdkggmlv_services_background','group_zi794n2mdkggmlv_field_35a935e59da75'),(38396,818,'group_7omya7l9yrr0mu0_testimonials_content','<h3 style=\"text-align: center;\">Reviews</h3>'),(38397,818,'_group_7omya7l9yrr0mu0_testimonials_content','group_7omya7l9yrr0mu0_field_59232e687d160'),(38398,818,'group_7omya7l9yrr0mu0_testimonials_testimonials','5'),(38399,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials','group_7omya7l9yrr0mu0_field_59232e6d7d161'),(38400,818,'group_7omya7l9yrr0mu0_testimonials_background','a:6:{s:5:\"image\";s:3:\"532\";s:16:\"background_color\";s:7:\"#252525\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38401,818,'_group_7omya7l9yrr0mu0_testimonials_background','group_7omya7l9yrr0mu0_field_59232e687d167'),(38402,818,'group_7omya7l9yrr0mu0_testimonials_autoplay','off'),(38403,818,'_group_7omya7l9yrr0mu0_testimonials_autoplay','group_7omya7l9yrr0mu0_field_59232e687d168'),(38404,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_name','Stephen C'),(38405,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_name','field_59232e937d163'),(38406,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_date',''),(38407,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_date','field_59232e967d164'),(38408,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_content','Amber is amazing. They do great work for a reasonable price with awesome customer service.'),(38409,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_content','field_59232e817d162'),(38410,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_star_rating','5'),(38411,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_star_rating','field_59232e817d166'),(38412,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_avatar',''),(38413,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_avatar','field_59232e817d165'),(38414,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_name','James Foltz'),(38415,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_name','field_59232e937d163'),(38416,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_date',''),(38417,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_date','field_59232e967d164'),(38418,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_content','Timely, professional, and reasonable cost. After hours emergency service is excellent.'),(38419,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_content','field_59232e817d162'),(38420,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_star_rating','5'),(38421,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_star_rating','field_59232e817d166'),(38422,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_avatar',''),(38423,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_avatar','field_59232e817d165'),(38424,818,'group_0yx3acydmccnw9z_hero_panel_0_content','<h1>Peace of Mind for Your Plumbing &amp; Heating</h1>'),(38425,818,'_group_0yx3acydmccnw9z_hero_panel_0_content','field_591dea5128ac6'),(38426,818,'group_0yx3acydmccnw9z_hero_panel_0_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38427,818,'_group_0yx3acydmccnw9z_hero_panel_0_button','field_591dea5128ac7'),(38428,818,'group_0yx3acydmccnw9z_hero_panel_0_align','center'),(38429,818,'_group_0yx3acydmccnw9z_hero_panel_0_align','field_591dea5128ac8'),(38430,818,'group_0yx3acydmccnw9z_hero_panel_0_background','a:9:{s:5:\"image\";s:3:\"537\";s:12:\"mobile_image\";s:3:\"536\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:8:\"parallax\";}'),(38431,818,'_group_0yx3acydmccnw9z_hero_panel_0_background','field_591dea5128ac9'),(38432,818,'group_7omya7l9yrr0mu0_testimonials_slides_to_show','2'),(38433,818,'_group_7omya7l9yrr0mu0_testimonials_slides_to_show','group_7omya7l9yrr0mu0_field_8401674674123'),(38434,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_name','W T'),(38435,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_name','field_59232e937d163'),(38436,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_date',''),(38437,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_date','field_59232e967d164'),(38438,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_content','Great service! Spoke to Chandler who was able to answer all of my questions and truly seemed to care!'),(38439,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_content','field_59232e817d162'),(38440,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_star_rating','5'),(38441,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_star_rating','field_59232e817d166'),(38442,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_avatar',''),(38443,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_avatar','field_59232e817d165'),(38444,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_name','Robbie Cameron'),(38445,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_name','field_59232e937d163'),(38446,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_date',''),(38447,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_date','field_59232e967d164'),(38448,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_content','Very professional.  Get jobs done quick. Customer service is outstanding. Would recomend these guys to anyone.'),(38449,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_content','field_59232e817d162'),(38450,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_star_rating','5'),(38451,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_star_rating','field_59232e817d166'),(38452,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_avatar',''),(38453,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_avatar','field_59232e817d165'),(38454,818,'group_zi794n2mdkggmlv_services_services_0_image','555'),(38455,818,'_group_zi794n2mdkggmlv_services_services_0_image','field_35a935e59da73'),(38456,818,'group_zi794n2mdkggmlv_services_services_0_name','HVAC'),(38457,818,'_group_zi794n2mdkggmlv_services_services_0_name','field_35a935e59da72'),(38458,818,'group_zi794n2mdkggmlv_services_services_0_content','Our dependable HVAC services apply to your heating and air conditioning systems, including heat pumps, electric and gas furnaces, and hot water heaters. We’ll repair or replace your system so that you stay comfortable year-round.'),(38459,818,'_group_zi794n2mdkggmlv_services_services_0_content','field_35a935e59da74'),(38460,818,'group_zi794n2mdkggmlv_services_services_0_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38461,818,'_group_zi794n2mdkggmlv_services_services_0_button','field_35a935e59da76'),(38462,818,'group_zi794n2mdkggmlv_services_services_1_image','554'),(38463,818,'_group_zi794n2mdkggmlv_services_services_1_image','field_35a935e59da73'),(38464,818,'group_zi794n2mdkggmlv_services_services_1_name','Design / Build'),(38465,818,'_group_zi794n2mdkggmlv_services_services_1_name','field_35a935e59da72'),(38466,818,'group_zi794n2mdkggmlv_services_services_1_content','We plan out and design heating and air conditioning systems, as well as ductwork. When you have undersized or leaky ducts, or it\'s no longer cost-effective to repair your heating or cooling system, we’ll build and install systems for your long-term comfort.'),(38467,818,'_group_zi794n2mdkggmlv_services_services_1_content','field_35a935e59da74'),(38468,818,'group_zi794n2mdkggmlv_services_services_1_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38469,818,'_group_zi794n2mdkggmlv_services_services_1_button','field_35a935e59da76'),(38470,818,'group_zi794n2mdkggmlv_services_services_2_image','556'),(38471,818,'_group_zi794n2mdkggmlv_services_services_2_image','field_35a935e59da73'),(38472,818,'group_zi794n2mdkggmlv_services_services_2_name','Plumbing'),(38473,818,'_group_zi794n2mdkggmlv_services_services_2_name','field_35a935e59da72'),(38474,818,'group_zi794n2mdkggmlv_services_services_2_content','Whether you need simple repairs to your faucets or toilets, or you need to install water or gas lines, we’re certified and trained to handle your plumbing needs. Our comprehensive knowledge and skills ensure better performance and energy savings.'),(38475,818,'_group_zi794n2mdkggmlv_services_services_2_content','field_35a935e59da74'),(38476,818,'group_zi794n2mdkggmlv_services_services_2_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38477,818,'_group_zi794n2mdkggmlv_services_services_2_button','field_35a935e59da76'),(38478,818,'group_chcf29yih8zz3j3_content_area_columns','single'),(38479,818,'_group_chcf29yih8zz3j3_content_area_columns','group_chcf29yih8zz3j3_field_5923225383814'),(38480,818,'group_chcf29yih8zz3j3_content_area_width','medium'),(38481,818,'_group_chcf29yih8zz3j3_content_area_width','group_chcf29yih8zz3j3_field_5923225383891'),(38482,818,'group_chcf29yih8zz3j3_content_area_content','<h2>Plumbing &amp; Heating Experts for Chambersburg, PA &amp; Beyond</h2>\r\nWhy do more home and business owners in South Central Pennsylvania choose Mann Plumbing &amp; Heating, LLC.? We’re a trustworthy company that provides solid ground for customers to enjoy comfort, system performance, and savings in Chambersburg, PA and beyond. Our highly skilled technicians maintain a track record of consistent quality for heating, cooling, and plumbing solutions. Residents and businesses can count on us for Trane® heating and conditioning products and their reliable quality and optimal performance. Trane® products also ensure you get value for your money and peace of mind that your home or building stays comfortable. We have more than 30 years of expertise in plumbing that’s unmatched in the area. Our mission is to earn your trust and loyalty by giving you honest answers, friendly and personal service, and lasting results on every project. Bring your plumbing and HVAC needs to Mann Plumbing &amp; Heating, LLC. to raise your comfort and convenience and lower your costs.'),(38483,818,'_group_chcf29yih8zz3j3_content_area_content','group_chcf29yih8zz3j3_field_5923228483815'),(38484,818,'group_chcf29yih8zz3j3_content_area_button','a:3:{s:4:\"text\";s:8:\"About Us\";s:3:\"url\";s:10:\"/about-us/\";s:8:\"external\";s:1:\"0\";}'),(38485,818,'_group_chcf29yih8zz3j3_content_area_button','group_chcf29yih8zz3j3_field_5923225383819'),(38486,818,'group_chcf29yih8zz3j3_content_area_align','centered'),(38487,818,'_group_chcf29yih8zz3j3_content_area_align','group_chcf29yih8zz3j3_field_5923225383899'),(38488,818,'group_chcf29yih8zz3j3_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:6:\"repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:4:\"auto\";}'),(38489,818,'_group_chcf29yih8zz3j3_content_area_background','group_chcf29yih8zz3j3_field_5923225383818'),(38490,818,'group_285xgh2d32ffzt8_special_offers_content','Mann Plumbing & Heating, LLC.: Serving Chambersburg,&nbsp;PA'),(38491,818,'_group_285xgh2d32ffzt8_special_offers_content','group_285xgh2d32ffzt8_field_5648912548761'),(38492,818,'group_285xgh2d32ffzt8_special_offers_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(38493,818,'_group_285xgh2d32ffzt8_special_offers_button','group_285xgh2d32ffzt8_field_5648912548762'),(38494,818,'group_285xgh2d32ffzt8_special_offers_background','a:6:{s:5:\"image\";s:3:\"538\";s:16:\"background_color\";s:7:\"#d51d25\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38495,818,'_group_285xgh2d32ffzt8_special_offers_background','group_285xgh2d32ffzt8_field_5648912548765'),(38496,818,'group_zi794n2mdkggmlv_services_services_0_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38497,818,'_group_zi794n2mdkggmlv_services_services_0_background','field_35a935e59da75'),(38498,818,'group_zi794n2mdkggmlv_services_services_1_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38499,818,'_group_zi794n2mdkggmlv_services_services_1_background','field_35a935e59da75'),(38500,818,'group_zi794n2mdkggmlv_services_services_2_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38501,818,'_group_zi794n2mdkggmlv_services_services_2_background','field_35a935e59da75'),(38502,818,'group_jay33uzo882n74g_gallery_slides_to_show','4'),(38503,818,'_group_jay33uzo882n74g_gallery_slides_to_show','group_jay33uzo882n74g_field_71810a8701e99'),(38504,818,'group_7omya7l9yrr0mu0_testimonials_button','a:3:{s:4:\"text\";s:9:\"Read More\";s:3:\"url\";s:14:\"/testimonials/\";s:8:\"external\";s:1:\"0\";}'),(38505,818,'_group_7omya7l9yrr0mu0_testimonials_button','group_7omya7l9yrr0mu0_field_59232e687d123'),(38506,818,'group_zi794n2mdkggmlv_services_columns','single'),(38507,818,'_group_zi794n2mdkggmlv_services_columns','group_zi794n2mdkggmlv_field_1875124714003'),(38508,818,'group_jay33uzo882n74g_gallery_button','a:3:{s:4:\"text\";s:13:\"View Our Work\";s:3:\"url\";s:10:\"/our-work/\";s:8:\"external\";s:1:\"0\";}'),(38509,818,'_group_jay33uzo882n74g_gallery_button','group_jay33uzo882n74g_field_35a591ca6da88'),(38510,818,'group_7omya7l9yrr0mu0_testimonials_arrow_placement','sides'),(38511,818,'_group_7omya7l9yrr0mu0_testimonials_arrow_placement','group_7omya7l9yrr0mu0_field_124793247623'),(38512,818,'group_285xgh2d32ffzt8_special_offers_enable_padding','0'),(38513,818,'_group_285xgh2d32ffzt8_special_offers_enable_padding','group_285xgh2d32ffzt8_field_56489125487801'),(38514,818,'group_285xgh2d32ffzt8_special_offers_padding_top','0'),(38515,818,'_group_285xgh2d32ffzt8_special_offers_padding_top','group_285xgh2d32ffzt8_field_56489125487802'),(38516,818,'group_285xgh2d32ffzt8_special_offers_padding_bottom','0'),(38517,818,'_group_285xgh2d32ffzt8_special_offers_padding_bottom','group_285xgh2d32ffzt8_field_56489125487803'),(38518,818,'group_chcf29yih8zz3j3_content_area_enable_padding','1'),(38519,818,'_group_chcf29yih8zz3j3_content_area_enable_padding','group_chcf29yih8zz3j3_field_5923225383901'),(38520,818,'group_chcf29yih8zz3j3_content_area_padding_top','20'),(38521,818,'_group_chcf29yih8zz3j3_content_area_padding_top','group_chcf29yih8zz3j3_field_5923225383902'),(38522,818,'group_chcf29yih8zz3j3_content_area_padding_bottom','20'),(38523,818,'_group_chcf29yih8zz3j3_content_area_padding_bottom','group_chcf29yih8zz3j3_field_5923225383903'),(38524,818,'group_zi794n2mdkggmlv_services_services_0_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:15:\"/services/hvac/\";s:6:\"target\";s:0:\"\";}'),(38525,818,'_group_zi794n2mdkggmlv_services_services_0_item_link','field_35a935e59da79'),(38526,818,'group_zi794n2mdkggmlv_services_services_1_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/services/design-build/\";s:6:\"target\";s:0:\"\";}'),(38527,818,'_group_zi794n2mdkggmlv_services_services_1_item_link','field_35a935e59da79'),(38528,818,'group_zi794n2mdkggmlv_services_services_2_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:19:\"/services/plumbing/\";s:6:\"target\";s:0:\"\";}'),(38529,818,'_group_zi794n2mdkggmlv_services_services_2_item_link','field_35a935e59da79'),(38530,818,'group_zi794n2mdkggmlv_services_enable_padding','0'),(38531,818,'_group_zi794n2mdkggmlv_services_enable_padding','group_zi794n2mdkggmlv_field_35a935e59da91'),(38532,818,'group_zi794n2mdkggmlv_services_padding_top','0'),(38533,818,'_group_zi794n2mdkggmlv_services_padding_top','group_zi794n2mdkggmlv_field_35a935e59da92'),(38534,818,'group_zi794n2mdkggmlv_services_padding_bottom','0'),(38535,818,'_group_zi794n2mdkggmlv_services_padding_bottom','group_zi794n2mdkggmlv_field_35a935e59da93'),(38536,818,'group_jay33uzo882n74g_gallery_enable_padding','1'),(38537,818,'_group_jay33uzo882n74g_gallery_enable_padding','group_jay33uzo882n74g_field_591ca1f42e82901'),(38538,818,'group_jay33uzo882n74g_gallery_padding_top','0'),(38539,818,'_group_jay33uzo882n74g_gallery_padding_top','group_jay33uzo882n74g_field_591ca1f42e82902'),(38540,818,'group_jay33uzo882n74g_gallery_padding_bottom','0'),(38541,818,'_group_jay33uzo882n74g_gallery_padding_bottom','group_jay33uzo882n74g_field_591ca1f42e82903'),(38542,818,'group_7omya7l9yrr0mu0_testimonials_enable_padding','1'),(38543,818,'_group_7omya7l9yrr0mu0_testimonials_enable_padding','group_7omya7l9yrr0mu0_field_59232e687d188'),(38544,818,'group_7omya7l9yrr0mu0_testimonials_padding_top','60'),(38545,818,'_group_7omya7l9yrr0mu0_testimonials_padding_top','group_7omya7l9yrr0mu0_field_59232e687d189'),(38546,818,'group_7omya7l9yrr0mu0_testimonials_padding_bottom','60'),(38547,818,'_group_7omya7l9yrr0mu0_testimonials_padding_bottom','group_7omya7l9yrr0mu0_field_59232e687d187'),(38548,818,'group_0yx3acydmccnw9z_hero_css_classes',''),(38549,818,'_group_0yx3acydmccnw9z_hero_css_classes','group_0yx3acydmccnw9z_field_9877065828823'),(38550,818,'group_285xgh2d32ffzt8_special_offers_css_classes',''),(38551,818,'_group_285xgh2d32ffzt8_special_offers_css_classes','group_285xgh2d32ffzt8_field_9147022838688'),(38552,818,'group_chcf29yih8zz3j3_content_area_css_classes',''),(38553,818,'_group_chcf29yih8zz3j3_content_area_css_classes','group_chcf29yih8zz3j3_field_4554768684187'),(38554,818,'group_zi794n2mdkggmlv_services_css_classes',''),(38555,818,'_group_zi794n2mdkggmlv_services_css_classes','group_zi794n2mdkggmlv_field_8577178443184'),(38556,818,'group_jay33uzo882n74g_gallery_css_classes',''),(38557,818,'_group_jay33uzo882n74g_gallery_css_classes','group_jay33uzo882n74g_field_8987622106215'),(38558,818,'group_7omya7l9yrr0mu0_testimonials_css_classes',''),(38559,818,'_group_7omya7l9yrr0mu0_testimonials_css_classes','group_7omya7l9yrr0mu0_field_4310619693162'),(38560,818,'group_chcf29yih8zz3j3_content_area_content_lead',''),(38561,818,'_group_chcf29yih8zz3j3_content_area_content_lead','group_chcf29yih8zz3j3_field_0079736876206'),(38562,818,'group_0yx3acydmccnw9z_hero_animations_enabled','1'),(38563,818,'_group_0yx3acydmccnw9z_hero_animations_enabled','field_5b7ece2e8e4e9'),(38564,818,'group_0yx3acydmccnw9z_hero_animations',''),(38565,818,'_group_0yx3acydmccnw9z_hero_animations','group_0yx3acydmccnw9z_field_5b7ece258e4e8'),(38566,818,'group_285xgh2d32ffzt8_special_offers_animations_enabled','1'),(38567,818,'_group_285xgh2d32ffzt8_special_offers_animations_enabled','field_5b7ece2e8e4e9'),(38568,818,'group_285xgh2d32ffzt8_special_offers_animations',''),(38569,818,'_group_285xgh2d32ffzt8_special_offers_animations','group_285xgh2d32ffzt8_field_5b7ece258e4e8'),(38570,818,'group_chcf29yih8zz3j3_content_area_animations_enabled','1'),(38571,818,'_group_chcf29yih8zz3j3_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38572,818,'group_chcf29yih8zz3j3_content_area_animations',''),(38573,818,'_group_chcf29yih8zz3j3_content_area_animations','group_chcf29yih8zz3j3_field_5b7ece258e4e8'),(38574,818,'group_zi794n2mdkggmlv_services_button_alignment',''),(38575,818,'_group_zi794n2mdkggmlv_services_button_alignment','group_zi794n2mdkggmlv_field_8591648772677'),(38576,818,'group_zi794n2mdkggmlv_services_animations_enabled','0'),(38577,818,'_group_zi794n2mdkggmlv_services_animations_enabled','field_5b7ece2e8e4e9'),(38578,818,'group_zi794n2mdkggmlv_services_animations',''),(38579,818,'_group_zi794n2mdkggmlv_services_animations','group_zi794n2mdkggmlv_field_5b7ece258e4e8'),(38580,818,'group_jay33uzo882n74g_gallery_layout','non-bleeding'),(38581,818,'_group_jay33uzo882n74g_gallery_layout','group_jay33uzo882n74g_field_8973h3489324h324'),(38582,818,'group_jay33uzo882n74g_gallery_width','md'),(38583,818,'_group_jay33uzo882n74g_gallery_width','group_jay33uzo882n74g_field_8973h3489324a002'),(38584,818,'group_jay33uzo882n74g_gallery_enable_captions','0'),(38585,818,'_group_jay33uzo882n74g_gallery_enable_captions','group_jay33uzo882n74g_field_h29be82vf92b9ad3'),(38586,818,'group_jay33uzo882n74g_gallery_button_alignment','center'),(38587,818,'_group_jay33uzo882n74g_gallery_button_alignment','group_jay33uzo882n74g_field_8591648772866'),(38588,818,'group_jay33uzo882n74g_gallery_animations_enabled','0'),(38589,818,'_group_jay33uzo882n74g_gallery_animations_enabled','field_5b7ece2e8e4e9'),(38590,818,'group_jay33uzo882n74g_gallery_animations',''),(38591,818,'_group_jay33uzo882n74g_gallery_animations','group_jay33uzo882n74g_field_5b7ece258e4e8'),(38592,818,'group_7omya7l9yrr0mu0_testimonials_enable_content_limit','0'),(38593,818,'_group_7omya7l9yrr0mu0_testimonials_enable_content_limit','group_7omya7l9yrr0mu0_field_34r5654rfg45'),(38594,818,'group_7omya7l9yrr0mu0_testimonials_content_limit_range','120'),(38595,818,'_group_7omya7l9yrr0mu0_testimonials_content_limit_range','group_7omya7l9yrr0mu0_field_847h9938h3k39'),(38596,818,'group_7omya7l9yrr0mu0_testimonials_arrow_color','default'),(38597,818,'_group_7omya7l9yrr0mu0_testimonials_arrow_color','group_7omya7l9yrr0mu0_field_654793247766'),(38598,818,'group_7omya7l9yrr0mu0_testimonials_enable_arrow_background','default'),(38599,818,'_group_7omya7l9yrr0mu0_testimonials_enable_arrow_background','group_7omya7l9yrr0mu0_field_60232e6872399'),(38600,818,'group_7omya7l9yrr0mu0_testimonials_arrow_background_color',''),(38601,818,'_group_7omya7l9yrr0mu0_testimonials_arrow_background_color','group_7omya7l9yrr0mu0_field_591b6d8fe1000'),(38602,818,'group_7omya7l9yrr0mu0_testimonials_button_alignment',''),(38603,818,'_group_7omya7l9yrr0mu0_testimonials_button_alignment','group_7omya7l9yrr0mu0_field_8591648772644'),(38604,818,'group_7omya7l9yrr0mu0_testimonials_animations_enabled','1'),(38605,818,'_group_7omya7l9yrr0mu0_testimonials_animations_enabled','field_5b7ece2e8e4e9'),(38606,818,'group_7omya7l9yrr0mu0_testimonials_animations',''),(38607,818,'_group_7omya7l9yrr0mu0_testimonials_animations','group_7omya7l9yrr0mu0_field_5b7ece258e4e8'),(38608,818,'group_zi794n2mdkggmlv_services_services_3_image','557'),(38609,818,'_group_zi794n2mdkggmlv_services_services_3_image','field_35a935e59da73'),(38610,818,'group_zi794n2mdkggmlv_services_services_3_name','Excavation Services'),(38611,818,'_group_zi794n2mdkggmlv_services_services_3_name','field_35a935e59da72'),(38612,818,'group_zi794n2mdkggmlv_services_services_3_content','Our team offers a variety of solutions for your excavating needs. If you require party sewer line separation, video inspections, or horizontal directional drilling, we can help you. We handle site work or design and consultation.'),(38613,818,'_group_zi794n2mdkggmlv_services_services_3_content','field_35a935e59da74'),(38614,818,'group_zi794n2mdkggmlv_services_services_3_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38615,818,'_group_zi794n2mdkggmlv_services_services_3_button','field_35a935e59da76'),(38616,818,'group_zi794n2mdkggmlv_services_services_3_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:30:\"/services/excavation-services/\";s:6:\"target\";s:0:\"\";}'),(38617,818,'_group_zi794n2mdkggmlv_services_services_3_item_link','field_35a935e59da79'),(38618,818,'group_zi794n2mdkggmlv_services_services_3_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38619,818,'_group_zi794n2mdkggmlv_services_services_3_background','field_35a935e59da75'),(38620,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_name','B H'),(38621,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_name','field_59232e937d163'),(38622,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_date',''),(38623,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_date','field_59232e967d164'),(38624,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_content','Great service. Mann\'s installed Trane Heat Pump. Very professional and courteous. Highly recommend. A+++'),(38625,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_content','field_59232e817d162'),(38626,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_star_rating','5'),(38627,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_star_rating','field_59232e817d166'),(38628,818,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_avatar',''),(38629,818,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_avatar','field_59232e817d165'),(38630,818,'group_0yx3acydmccnw9z_hero_animations_type','slide'),(38631,818,'_group_0yx3acydmccnw9z_hero_animations_type','field_5b7ece638e4ea'),(38632,818,'group_0yx3acydmccnw9z_hero_animations_direction','top'),(38633,818,'_group_0yx3acydmccnw9z_hero_animations_direction','field_5b7ed4a96a49b'),(38634,818,'group_0yx3acydmccnw9z_hero_animations_speed','1200'),(38635,818,'_group_0yx3acydmccnw9z_hero_animations_speed','field_5b7ed501a7f4a'),(38636,818,'group_0yx3acydmccnw9z_hero_animations_offset','0'),(38637,818,'_group_0yx3acydmccnw9z_hero_animations_offset','field_5b7ed532a7f4b'),(38638,818,'group_0yx3acydmccnw9z_hero_animations_mobile','1'),(38639,818,'_group_0yx3acydmccnw9z_hero_animations_mobile','field_5b7ed5cf62c6b'),(38640,818,'group_0yx3acydmccnw9z_hero_animations_run_once','1'),(38641,818,'_group_0yx3acydmccnw9z_hero_animations_run_once','field_5b7ed60862c6c'),(38642,818,'group_285xgh2d32ffzt8_special_offers_animations_type','fade'),(38643,818,'_group_285xgh2d32ffzt8_special_offers_animations_type','field_5b7ece638e4ea'),(38644,818,'group_285xgh2d32ffzt8_special_offers_animations_speed','1200'),(38645,818,'_group_285xgh2d32ffzt8_special_offers_animations_speed','field_5b7ed501a7f4a'),(38646,818,'group_285xgh2d32ffzt8_special_offers_animations_offset','-500'),(38647,818,'_group_285xgh2d32ffzt8_special_offers_animations_offset','field_5b7ed532a7f4b'),(38648,818,'group_285xgh2d32ffzt8_special_offers_animations_mobile','1'),(38649,818,'_group_285xgh2d32ffzt8_special_offers_animations_mobile','field_5b7ed5cf62c6b'),(38650,818,'group_285xgh2d32ffzt8_special_offers_animations_run_once','1'),(38651,818,'_group_285xgh2d32ffzt8_special_offers_animations_run_once','field_5b7ed60862c6c'),(38652,818,'group_chcf29yih8zz3j3_content_area_animations_type','slide'),(38653,818,'_group_chcf29yih8zz3j3_content_area_animations_type','field_5b7ece638e4ea'),(38654,818,'group_chcf29yih8zz3j3_content_area_animations_direction','left'),(38655,818,'_group_chcf29yih8zz3j3_content_area_animations_direction','field_5b7ed4a96a49b'),(38656,818,'group_chcf29yih8zz3j3_content_area_animations_speed','1200'),(38657,818,'_group_chcf29yih8zz3j3_content_area_animations_speed','field_5b7ed501a7f4a'),(38658,818,'group_chcf29yih8zz3j3_content_area_animations_offset','-100'),(38659,818,'_group_chcf29yih8zz3j3_content_area_animations_offset','field_5b7ed532a7f4b'),(38660,818,'group_chcf29yih8zz3j3_content_area_animations_mobile','1'),(38661,818,'_group_chcf29yih8zz3j3_content_area_animations_mobile','field_5b7ed5cf62c6b'),(38662,818,'group_chcf29yih8zz3j3_content_area_animations_run_once','1'),(38663,818,'_group_chcf29yih8zz3j3_content_area_animations_run_once','field_5b7ed60862c6c'),(38664,818,'group_7omya7l9yrr0mu0_testimonials_animations_type','fade'),(38665,818,'_group_7omya7l9yrr0mu0_testimonials_animations_type','field_5b7ece638e4ea'),(38666,818,'group_7omya7l9yrr0mu0_testimonials_animations_speed','1200'),(38667,818,'_group_7omya7l9yrr0mu0_testimonials_animations_speed','field_5b7ed501a7f4a'),(38668,818,'group_7omya7l9yrr0mu0_testimonials_animations_offset','-100'),(38669,818,'_group_7omya7l9yrr0mu0_testimonials_animations_offset','field_5b7ed532a7f4b'),(38670,818,'group_7omya7l9yrr0mu0_testimonials_animations_mobile','1'),(38671,818,'_group_7omya7l9yrr0mu0_testimonials_animations_mobile','field_5b7ed5cf62c6b'),(38672,818,'group_7omya7l9yrr0mu0_testimonials_animations_run_once','1'),(38673,818,'_group_7omya7l9yrr0mu0_testimonials_animations_run_once','field_5b7ed60862c6c'),(38674,819,'subheading',''),(38675,819,'_subheading','field_5976417756400'),(38676,819,'group_gtf9qg87luu5eqi_content_area_columns','single'),(38677,819,'_group_gtf9qg87luu5eqi_content_area_columns','group_gtf9qg87luu5eqi_field_5923225383814'),(38678,819,'group_gtf9qg87luu5eqi_content_area_width','medium'),(38679,819,'_group_gtf9qg87luu5eqi_content_area_width','group_gtf9qg87luu5eqi_field_5923225383891'),(38680,819,'group_gtf9qg87luu5eqi_content_area_content_lead',''),(38681,819,'_group_gtf9qg87luu5eqi_content_area_content_lead','group_gtf9qg87luu5eqi_field_0079736876206'),(38682,819,'group_gtf9qg87luu5eqi_content_area_content','<h2>PA’s Outstanding HVAC Services</h2>\r\nYour home or business’s HVAC system is a primary source of comfort for your building throughout the year. During the hot summers, you can stay cool, thanks to a fully functional air conditioning system. When the cold winter weather hits, your interior space keeps warm and cozy through the consistent performance of your heating system. Mann Plumbing &amp; Heating, LLC. provides thorough and honest HVAC services to ensure that your system runs at its best. Every HVAC system has maintenance and repair concerns, as well as a limited lifespan. Our technicians will evaluate your system’s condition and give you a straightforward assessment of the best actions to take. If you need repairs or new parts, we’ll execute them to get your system running again. If a replacement is necessary, our team will present you with your options, including Trane<sup>®</sup> heating and air conditioning products. We’ve assisted many residents with their environmental comfort, and Trane<sup>®</sup> is well-known for its reliability and outstanding performance.'),(38683,819,'_group_gtf9qg87luu5eqi_content_area_content','group_gtf9qg87luu5eqi_field_5923228483815'),(38684,819,'group_gtf9qg87luu5eqi_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(38685,819,'_group_gtf9qg87luu5eqi_content_area_button','group_gtf9qg87luu5eqi_field_5923225383819'),(38686,819,'group_gtf9qg87luu5eqi_content_area_css_classes',''),(38687,819,'_group_gtf9qg87luu5eqi_content_area_css_classes','group_gtf9qg87luu5eqi_field_4554768684187'),(38688,819,'group_gtf9qg87luu5eqi_content_area_align','centered'),(38689,819,'_group_gtf9qg87luu5eqi_content_area_align','group_gtf9qg87luu5eqi_field_5923225383899'),(38690,819,'group_gtf9qg87luu5eqi_content_area_enable_padding','1'),(38691,819,'_group_gtf9qg87luu5eqi_content_area_enable_padding','group_gtf9qg87luu5eqi_field_5923225383901'),(38692,819,'group_gtf9qg87luu5eqi_content_area_padding_top','20'),(38693,819,'_group_gtf9qg87luu5eqi_content_area_padding_top','group_gtf9qg87luu5eqi_field_5923225383902'),(38694,819,'group_gtf9qg87luu5eqi_content_area_padding_bottom','20'),(38695,819,'_group_gtf9qg87luu5eqi_content_area_padding_bottom','group_gtf9qg87luu5eqi_field_5923225383903'),(38696,819,'group_gtf9qg87luu5eqi_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38697,819,'_group_gtf9qg87luu5eqi_content_area_background','group_gtf9qg87luu5eqi_field_5923225383818'),(38698,819,'group_gtf9qg87luu5eqi_content_area_animations_enabled','0'),(38699,819,'_group_gtf9qg87luu5eqi_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38700,819,'group_gtf9qg87luu5eqi_content_area_animations',''),(38701,819,'_group_gtf9qg87luu5eqi_content_area_animations','group_gtf9qg87luu5eqi_field_5b7ece258e4e8'),(38702,819,'group_5ceuunsp1agbemn_content_area_columns','image-left'),(38703,819,'_group_5ceuunsp1agbemn_content_area_columns','group_5ceuunsp1agbemn_field_5923225383814'),(38704,819,'group_5ceuunsp1agbemn_content_area_content_lead',''),(38705,819,'_group_5ceuunsp1agbemn_content_area_content_lead','group_5ceuunsp1agbemn_field_0079736876206'),(38706,819,'group_5ceuunsp1agbemn_content_area_content','<h3>Heating &amp; Air Conditioning Repairs</h3>\r\nCustomers near Greencastle, Waynesboro, and many other South-Central Pennsylvania cities and towns can trust Mann Plumbing &amp; Heating, LLC. to repair and replace all types of heating systems. Our training and expertise include working on gas and electric furnaces, as well as heat pumps and hot water heaters. We’ll make recommendations on excellent choices for your lifestyle and home environmental comfort, and we offer humidifiers that enhance the comfort of your home. If your air conditioning system isn’t functioning at its best, we service and repair those systems with expert know-how while keeping any disruption to your daily life to a minimum. Our comfort consultants share a dedication to your comfort, and we’ll assess your system to determine if a replacement is the best option. If it is, we\'ll design an air conditioning system that fits your budget and situation.'),(38707,819,'_group_5ceuunsp1agbemn_content_area_content','group_5ceuunsp1agbemn_field_5923228483815'),(38708,819,'group_5ceuunsp1agbemn_content_area_image','739'),(38709,819,'_group_5ceuunsp1agbemn_content_area_image','group_5ceuunsp1agbemn_field_5923229983816'),(38710,819,'group_5ceuunsp1agbemn_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38711,819,'_group_5ceuunsp1agbemn_content_area_button','group_5ceuunsp1agbemn_field_5923225383819'),(38712,819,'group_5ceuunsp1agbemn_content_area_css_classes',''),(38713,819,'_group_5ceuunsp1agbemn_content_area_css_classes','group_5ceuunsp1agbemn_field_4554768684187'),(38714,819,'group_5ceuunsp1agbemn_content_area_align','left'),(38715,819,'_group_5ceuunsp1agbemn_content_area_align','group_5ceuunsp1agbemn_field_5923225383899'),(38716,819,'group_5ceuunsp1agbemn_content_area_image_sizing','center'),(38717,819,'_group_5ceuunsp1agbemn_content_area_image_sizing','group_5ceuunsp1agbemn_field_5923225386557'),(38718,819,'group_5ceuunsp1agbemn_content_area_image_width','full-width'),(38719,819,'_group_5ceuunsp1agbemn_content_area_image_width','group_5ceuunsp1agbemn_field_5923225381234'),(38720,819,'group_5ceuunsp1agbemn_content_area_enable_padding','1'),(38721,819,'_group_5ceuunsp1agbemn_content_area_enable_padding','group_5ceuunsp1agbemn_field_5923225383901'),(38722,819,'group_5ceuunsp1agbemn_content_area_padding_top','0'),(38723,819,'_group_5ceuunsp1agbemn_content_area_padding_top','group_5ceuunsp1agbemn_field_5923225383902'),(38724,819,'group_5ceuunsp1agbemn_content_area_padding_bottom','0'),(38725,819,'_group_5ceuunsp1agbemn_content_area_padding_bottom','group_5ceuunsp1agbemn_field_5923225383903'),(38726,819,'group_5ceuunsp1agbemn_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38727,819,'_group_5ceuunsp1agbemn_content_area_background','group_5ceuunsp1agbemn_field_5923225383818'),(38728,819,'group_5ceuunsp1agbemn_content_area_animations_enabled','0'),(38729,819,'_group_5ceuunsp1agbemn_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38730,819,'group_5ceuunsp1agbemn_content_area_animations',''),(38731,819,'_group_5ceuunsp1agbemn_content_area_animations','group_5ceuunsp1agbemn_field_5b7ece258e4e8'),(38732,819,'group_zznmx4e2lzf8s9h_content_area_columns','single'),(38733,819,'_group_zznmx4e2lzf8s9h_content_area_columns','group_zznmx4e2lzf8s9h_field_5923225383814'),(38734,819,'group_zznmx4e2lzf8s9h_content_area_width','medium'),(38735,819,'_group_zznmx4e2lzf8s9h_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(38736,819,'group_zznmx4e2lzf8s9h_content_area_content_lead',''),(38737,819,'_group_zznmx4e2lzf8s9h_content_area_content_lead','group_zznmx4e2lzf8s9h_field_0079736876206'),(38738,819,'group_zznmx4e2lzf8s9h_content_area_content','<h3>Service is Just a Phone Call Away</h3>\r\nMann Plumbing &amp; Heating, LLC. is happy to help residential and commercial customers keep their spaces comfortable during any season with our comprehensive knowledge and training of HVAC systems. If your system isn’t keeping your winter home warm, we offer free consultations. Our technicians will examine your unit and determine the cause of your system’s lagging or failure. We might recommend repairs to your existing unit, or we might advise you to get a new system. Whatever assessment we present, you can rest assured your motivation for any action is to provide you with the best long-term solution. <a href=\"/contact-us/\">Give us a call today</a> to schedule professional care for your HVAC system. We’ll make sure you enjoy your time inside during the stifling summers and frigid winters.'),(38739,819,'_group_zznmx4e2lzf8s9h_content_area_content','group_zznmx4e2lzf8s9h_field_5923228483815'),(38740,819,'group_zznmx4e2lzf8s9h_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38741,819,'_group_zznmx4e2lzf8s9h_content_area_button','group_zznmx4e2lzf8s9h_field_5923225383819'),(38742,819,'group_zznmx4e2lzf8s9h_content_area_css_classes',''),(38743,819,'_group_zznmx4e2lzf8s9h_content_area_css_classes','group_zznmx4e2lzf8s9h_field_4554768684187'),(38744,819,'group_zznmx4e2lzf8s9h_content_area_align','centered'),(38745,819,'_group_zznmx4e2lzf8s9h_content_area_align','group_zznmx4e2lzf8s9h_field_5923225383899'),(38746,819,'group_zznmx4e2lzf8s9h_content_area_enable_padding','1'),(38747,819,'_group_zznmx4e2lzf8s9h_content_area_enable_padding','group_zznmx4e2lzf8s9h_field_5923225383901'),(38748,819,'group_zznmx4e2lzf8s9h_content_area_padding_top','20'),(38749,819,'_group_zznmx4e2lzf8s9h_content_area_padding_top','group_zznmx4e2lzf8s9h_field_5923225383902'),(38750,819,'group_zznmx4e2lzf8s9h_content_area_padding_bottom','20'),(38751,819,'_group_zznmx4e2lzf8s9h_content_area_padding_bottom','group_zznmx4e2lzf8s9h_field_5923225383903'),(38752,819,'group_zznmx4e2lzf8s9h_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38753,819,'_group_zznmx4e2lzf8s9h_content_area_background','group_zznmx4e2lzf8s9h_field_5923225383818'),(38754,819,'group_zznmx4e2lzf8s9h_content_area_animations_enabled','0'),(38755,819,'_group_zznmx4e2lzf8s9h_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38756,819,'group_zznmx4e2lzf8s9h_content_area_animations',''),(38757,819,'_group_zznmx4e2lzf8s9h_content_area_animations','group_zznmx4e2lzf8s9h_field_5b7ece258e4e8'),(38758,819,'group_tzgv8v1sbieylt0_ctas_ctas','489'),(38759,819,'_group_tzgv8v1sbieylt0_ctas_ctas','group_tzgv8v1sbieylt0_field_5620077701227'),(38760,819,'group_tzgv8v1sbieylt0_ctas_css_classes','cta'),(38761,819,'_group_tzgv8v1sbieylt0_ctas_css_classes','group_tzgv8v1sbieylt0_field_8795774705172'),(38762,819,'group_tzgv8v1sbieylt0_ctas_animations_enabled','0'),(38763,819,'_group_tzgv8v1sbieylt0_ctas_animations_enabled','field_5b7ece2e8e4e9'),(38764,819,'group_tzgv8v1sbieylt0_ctas_animations',''),(38765,819,'_group_tzgv8v1sbieylt0_ctas_animations','group_tzgv8v1sbieylt0_field_5b7ece258e4e8'),(38766,820,'subheading',''),(38767,820,'_subheading','field_5976417756400'),(38768,820,'group_0j287z8smusg8ro_content_area_columns','single'),(38769,820,'_group_0j287z8smusg8ro_content_area_columns','group_0j287z8smusg8ro_field_5923225383814'),(38770,820,'group_0j287z8smusg8ro_content_area_width','medium'),(38771,820,'_group_0j287z8smusg8ro_content_area_width','group_0j287z8smusg8ro_field_5923225383891'),(38772,820,'group_0j287z8smusg8ro_content_area_content_lead',''),(38773,820,'_group_0j287z8smusg8ro_content_area_content_lead','group_0j287z8smusg8ro_field_0079736876206'),(38774,820,'group_0j287z8smusg8ro_content_area_content','<h2>Custom HVAC Design &amp; Build Services for Customers</h2>\r\nThe talented team at Mann Plumbing &amp; Heating, LLC. plans and installs heating and air conditioning systems that ensure long-term efficiency and comfort for new buildings. We design and build HVAC systems for customers throughout cities and towns in South-Central Pennsylvania, such as near Waynesboro, Greencastle, Gettysburg, and Chambersburg. Other areas in which we excel include gas installation and plumbing. Whatever project we’re working on, we always ensure your water pipes, gas line, and HVAC system operate as efficiently as possible. Our clients include a wide variety of businesses and institutions, including nursing homes, restaurants, schools, and other large commercial establishments. After 30 years of serving commercial and residential clients, we’ve built our expertise and skillset to make sure we can handle any type of HVAC project. Don’t leave your business’s heating and cooling systems in the hands of an inexperienced contractor with limited knowledge. Our seasoned professionals will create and install a system that suits your space for long-term performance.'),(38775,820,'_group_0j287z8smusg8ro_content_area_content','group_0j287z8smusg8ro_field_5923228483815'),(38776,820,'group_0j287z8smusg8ro_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(38777,820,'_group_0j287z8smusg8ro_content_area_button','group_0j287z8smusg8ro_field_5923225383819'),(38778,820,'group_0j287z8smusg8ro_content_area_css_classes',''),(38779,820,'_group_0j287z8smusg8ro_content_area_css_classes','group_0j287z8smusg8ro_field_4554768684187'),(38780,820,'group_0j287z8smusg8ro_content_area_align','centered'),(38781,820,'_group_0j287z8smusg8ro_content_area_align','group_0j287z8smusg8ro_field_5923225383899'),(38782,820,'group_0j287z8smusg8ro_content_area_enable_padding','1'),(38783,820,'_group_0j287z8smusg8ro_content_area_enable_padding','group_0j287z8smusg8ro_field_5923225383901'),(38784,820,'group_0j287z8smusg8ro_content_area_padding_top','20'),(38785,820,'_group_0j287z8smusg8ro_content_area_padding_top','group_0j287z8smusg8ro_field_5923225383902'),(38786,820,'group_0j287z8smusg8ro_content_area_padding_bottom','20'),(38787,820,'_group_0j287z8smusg8ro_content_area_padding_bottom','group_0j287z8smusg8ro_field_5923225383903'),(38788,820,'group_0j287z8smusg8ro_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38789,820,'_group_0j287z8smusg8ro_content_area_background','group_0j287z8smusg8ro_field_5923225383818'),(38790,820,'group_0j287z8smusg8ro_content_area_animations_enabled','0'),(38791,820,'_group_0j287z8smusg8ro_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38792,820,'group_0j287z8smusg8ro_content_area_animations',''),(38793,820,'_group_0j287z8smusg8ro_content_area_animations','group_0j287z8smusg8ro_field_5b7ece258e4e8'),(38794,820,'group_glogz5elw7g3d94_content_area_columns','image-left'),(38795,820,'_group_glogz5elw7g3d94_content_area_columns','group_glogz5elw7g3d94_field_5923225383814'),(38796,820,'group_glogz5elw7g3d94_content_area_content_lead',''),(38797,820,'_group_glogz5elw7g3d94_content_area_content_lead','group_glogz5elw7g3d94_field_0079736876206'),(38798,820,'group_glogz5elw7g3d94_content_area_content','<h3>Designing Your Heating &amp; Air Conditioning Systems</h3>\r\nWhen it’s no longer cost-effective to repair your heating or cooling system due to its age or lack of efficiency, we’ll help you find a solution that fits your space and budget needs. Let our comfort consultants evaluate the comfort needs of your home or business and recommend equipment options to replace your system. The reason your heating and cooling system isn’t providing comfortable temperatures adequately is sometimes because the unit isn’t the right size for the space. When an AC (air conditioning) or heating unit isn’t big enough to handle the needed capacity, then keeping your home or building comfortable will be impossible. Our team will design a custom system that we engineer with load calculations for your space specifically, which will provide maximum comfort and save you energy over time.'),(38799,820,'_group_glogz5elw7g3d94_content_area_content','group_glogz5elw7g3d94_field_5923228483815'),(38800,820,'group_glogz5elw7g3d94_content_area_image','740'),(38801,820,'_group_glogz5elw7g3d94_content_area_image','group_glogz5elw7g3d94_field_5923229983816'),(38802,820,'group_glogz5elw7g3d94_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38803,820,'_group_glogz5elw7g3d94_content_area_button','group_glogz5elw7g3d94_field_5923225383819'),(38804,820,'group_glogz5elw7g3d94_content_area_css_classes',''),(38805,820,'_group_glogz5elw7g3d94_content_area_css_classes','group_glogz5elw7g3d94_field_4554768684187'),(38806,820,'group_glogz5elw7g3d94_content_area_align','left'),(38807,820,'_group_glogz5elw7g3d94_content_area_align','group_glogz5elw7g3d94_field_5923225383899'),(38808,820,'group_glogz5elw7g3d94_content_area_image_sizing','center'),(38809,820,'_group_glogz5elw7g3d94_content_area_image_sizing','group_glogz5elw7g3d94_field_5923225386557'),(38810,820,'group_glogz5elw7g3d94_content_area_image_width','full-width'),(38811,820,'_group_glogz5elw7g3d94_content_area_image_width','group_glogz5elw7g3d94_field_5923225381234'),(38812,820,'group_glogz5elw7g3d94_content_area_enable_padding','1'),(38813,820,'_group_glogz5elw7g3d94_content_area_enable_padding','group_glogz5elw7g3d94_field_5923225383901'),(38814,820,'group_glogz5elw7g3d94_content_area_padding_top','0'),(38815,820,'_group_glogz5elw7g3d94_content_area_padding_top','group_glogz5elw7g3d94_field_5923225383902'),(38816,820,'group_glogz5elw7g3d94_content_area_padding_bottom','0'),(38817,820,'_group_glogz5elw7g3d94_content_area_padding_bottom','group_glogz5elw7g3d94_field_5923225383903'),(38818,820,'group_glogz5elw7g3d94_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38819,820,'_group_glogz5elw7g3d94_content_area_background','group_glogz5elw7g3d94_field_5923225383818'),(38820,820,'group_glogz5elw7g3d94_content_area_animations_enabled','0'),(38821,820,'_group_glogz5elw7g3d94_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38822,820,'group_glogz5elw7g3d94_content_area_animations',''),(38823,820,'_group_glogz5elw7g3d94_content_area_animations','group_glogz5elw7g3d94_field_5b7ece258e4e8'),(38824,820,'group_lt793odq0j0s3qx_content_area_columns','single'),(38825,820,'_group_lt793odq0j0s3qx_content_area_columns','group_lt793odq0j0s3qx_field_5923225383814'),(38826,820,'group_lt793odq0j0s3qx_content_area_width','medium'),(38827,820,'_group_lt793odq0j0s3qx_content_area_width','group_lt793odq0j0s3qx_field_5923225383891'),(38828,820,'group_lt793odq0j0s3qx_content_area_content_lead',''),(38829,820,'_group_lt793odq0j0s3qx_content_area_content_lead','group_lt793odq0j0s3qx_field_0079736876206'),(38830,820,'group_lt793odq0j0s3qx_content_area_content','<h3>Solutions for Your Duct Work</h3>\r\nIf you have undersized or leaky ducts, then your heating and air conditioning bills can increase significantly. Your HVAC equipment’s capacity will also reduce dramatically, and you’ll end up having problems with your indoor air quality. Our technicians perform thorough repairs to resolve your ductwork, or we can redesign it to optimize your airflow and ensure you won’t have any issues in the future. We’re the team you can count on in South-Central Pennsylvania for new ductwork to support your heating and air conditioning systems. We\'ve spent decades installing air conditioning ductwork in homes and businesses, and we welcome the opportunity to do the same for you. <a href=\"/contact-us/\">Give us a call today</a> to schedule a consultation. We\'ll examine your system and ductwork and recommend the solution that suits your budget and comfort needs.'),(38831,820,'_group_lt793odq0j0s3qx_content_area_content','group_lt793odq0j0s3qx_field_5923228483815'),(38832,820,'group_lt793odq0j0s3qx_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38833,820,'_group_lt793odq0j0s3qx_content_area_button','group_lt793odq0j0s3qx_field_5923225383819'),(38834,820,'group_lt793odq0j0s3qx_content_area_css_classes',''),(38835,820,'_group_lt793odq0j0s3qx_content_area_css_classes','group_lt793odq0j0s3qx_field_4554768684187'),(38836,820,'group_lt793odq0j0s3qx_content_area_align','centered'),(38837,820,'_group_lt793odq0j0s3qx_content_area_align','group_lt793odq0j0s3qx_field_5923225383899'),(38838,820,'group_lt793odq0j0s3qx_content_area_enable_padding','1'),(38839,820,'_group_lt793odq0j0s3qx_content_area_enable_padding','group_lt793odq0j0s3qx_field_5923225383901'),(38840,820,'group_lt793odq0j0s3qx_content_area_padding_top','20'),(38841,820,'_group_lt793odq0j0s3qx_content_area_padding_top','group_lt793odq0j0s3qx_field_5923225383902'),(38842,820,'group_lt793odq0j0s3qx_content_area_padding_bottom','20'),(38843,820,'_group_lt793odq0j0s3qx_content_area_padding_bottom','group_lt793odq0j0s3qx_field_5923225383903'),(38844,820,'group_lt793odq0j0s3qx_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38845,820,'_group_lt793odq0j0s3qx_content_area_background','group_lt793odq0j0s3qx_field_5923225383818'),(38846,820,'group_lt793odq0j0s3qx_content_area_animations_enabled','0'),(38847,820,'_group_lt793odq0j0s3qx_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38848,820,'group_lt793odq0j0s3qx_content_area_animations',''),(38849,820,'_group_lt793odq0j0s3qx_content_area_animations','group_lt793odq0j0s3qx_field_5b7ece258e4e8'),(38850,820,'group_7hpz2gts0xxjbk1_ctas_ctas','489'),(38851,820,'_group_7hpz2gts0xxjbk1_ctas_ctas','group_7hpz2gts0xxjbk1_field_5620077701227'),(38852,820,'group_7hpz2gts0xxjbk1_ctas_css_classes','cta'),(38853,820,'_group_7hpz2gts0xxjbk1_ctas_css_classes','group_7hpz2gts0xxjbk1_field_8795774705172'),(38854,820,'group_7hpz2gts0xxjbk1_ctas_animations_enabled','0'),(38855,820,'_group_7hpz2gts0xxjbk1_ctas_animations_enabled','field_5b7ece2e8e4e9'),(38856,820,'group_7hpz2gts0xxjbk1_ctas_animations',''),(38857,820,'_group_7hpz2gts0xxjbk1_ctas_animations','group_7hpz2gts0xxjbk1_field_5b7ece258e4e8'),(38858,821,'subheading',''),(38859,821,'_subheading','field_5976417756400'),(38860,821,'group_qo98bywf16e4f60_content_area_columns','single'),(38861,821,'_group_qo98bywf16e4f60_content_area_columns','group_qo98bywf16e4f60_field_5923225383814'),(38862,821,'group_qo98bywf16e4f60_content_area_width','medium'),(38863,821,'_group_qo98bywf16e4f60_content_area_width','group_qo98bywf16e4f60_field_5923225383891'),(38864,821,'group_qo98bywf16e4f60_content_area_content_lead',''),(38865,821,'_group_qo98bywf16e4f60_content_area_content_lead','group_qo98bywf16e4f60_field_0079736876206'),(38866,821,'group_qo98bywf16e4f60_content_area_content','<h2>Plumbing Solutions for Clients in Gettysburg, PA</h2>\r\nMann Plumbing &amp; Heating, LLC. is a full-service plumbing contractor for your entire plumbing system. We offer a comprehensive list of plumbing services for homes and businesses in Gettysburg, PA, as well as near Shippensburg, Chambersburg, and beyond. Whether you need to replace or repair your toilet or faucet, or you have a water heater that needs installation, we’ll make sure you get the service you need for a complete working system in your building. On top of our hands-on plumbing services, our experts are happy to consult with you regarding improvements to your existing system. This collaboration can lead to better performance and save you energy costs. For the past 30 years, Mann Plumbing &amp; Heating, LLC. has upheld a reputation of quality in every job we perform in South-Central Pennsylvania. Let our team of skilled professionals show you the difference our exceptional expertise makes in maintaining an efficient plumbing system.'),(38867,821,'_group_qo98bywf16e4f60_content_area_content','group_qo98bywf16e4f60_field_5923228483815'),(38868,821,'group_qo98bywf16e4f60_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(38869,821,'_group_qo98bywf16e4f60_content_area_button','group_qo98bywf16e4f60_field_5923225383819'),(38870,821,'group_qo98bywf16e4f60_content_area_css_classes',''),(38871,821,'_group_qo98bywf16e4f60_content_area_css_classes','group_qo98bywf16e4f60_field_4554768684187'),(38872,821,'group_qo98bywf16e4f60_content_area_align','centered'),(38873,821,'_group_qo98bywf16e4f60_content_area_align','group_qo98bywf16e4f60_field_5923225383899'),(38874,821,'group_qo98bywf16e4f60_content_area_enable_padding','1'),(38875,821,'_group_qo98bywf16e4f60_content_area_enable_padding','group_qo98bywf16e4f60_field_5923225383901'),(38876,821,'group_qo98bywf16e4f60_content_area_padding_top','20'),(38877,821,'_group_qo98bywf16e4f60_content_area_padding_top','group_qo98bywf16e4f60_field_5923225383902'),(38878,821,'group_qo98bywf16e4f60_content_area_padding_bottom','20'),(38879,821,'_group_qo98bywf16e4f60_content_area_padding_bottom','group_qo98bywf16e4f60_field_5923225383903'),(38880,821,'group_qo98bywf16e4f60_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38881,821,'_group_qo98bywf16e4f60_content_area_background','group_qo98bywf16e4f60_field_5923225383818'),(38882,821,'group_qo98bywf16e4f60_content_area_animations_enabled','0'),(38883,821,'_group_qo98bywf16e4f60_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38884,821,'group_qo98bywf16e4f60_content_area_animations',''),(38885,821,'_group_qo98bywf16e4f60_content_area_animations','group_qo98bywf16e4f60_field_5b7ece258e4e8'),(38886,821,'group_sfvs9xaj2olhh3a_content_area_columns','image-left'),(38887,821,'_group_sfvs9xaj2olhh3a_content_area_columns','group_sfvs9xaj2olhh3a_field_5923225383814'),(38888,821,'group_sfvs9xaj2olhh3a_content_area_content_lead',''),(38889,821,'_group_sfvs9xaj2olhh3a_content_area_content_lead','group_sfvs9xaj2olhh3a_field_0079736876206'),(38890,821,'group_sfvs9xaj2olhh3a_content_area_content','<h3>Types of Plumbing Services We Offer</h3>\r\nFor any plumbing repair and installation we perform, you can count on the team at Mann Plumbing &amp; Heating, LLC. for thorough work with sharp attention to detail. We make sure your gas and water lines run without any issues, and you should depend on a hot shower in the morning and a steady stream from the faucet when you’re washing dishes. Our versatile expertise in plumbing makes us the prime company to call when you have a clog, leak, or new major component for your building. We ensure your newly installed water heater supplies hot water for your home, restaurant, or office. Reach out to us for high-quality plumbing services for your new or existing home or building.'),(38891,821,'_group_sfvs9xaj2olhh3a_content_area_content','group_sfvs9xaj2olhh3a_field_5923228483815'),(38892,821,'group_sfvs9xaj2olhh3a_content_area_image','738'),(38893,821,'_group_sfvs9xaj2olhh3a_content_area_image','group_sfvs9xaj2olhh3a_field_5923229983816'),(38894,821,'group_sfvs9xaj2olhh3a_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38895,821,'_group_sfvs9xaj2olhh3a_content_area_button','group_sfvs9xaj2olhh3a_field_5923225383819'),(38896,821,'group_sfvs9xaj2olhh3a_content_area_css_classes',''),(38897,821,'_group_sfvs9xaj2olhh3a_content_area_css_classes','group_sfvs9xaj2olhh3a_field_4554768684187'),(38898,821,'group_sfvs9xaj2olhh3a_content_area_align','left'),(38899,821,'_group_sfvs9xaj2olhh3a_content_area_align','group_sfvs9xaj2olhh3a_field_5923225383899'),(38900,821,'group_sfvs9xaj2olhh3a_content_area_image_sizing','center'),(38901,821,'_group_sfvs9xaj2olhh3a_content_area_image_sizing','group_sfvs9xaj2olhh3a_field_5923225386557'),(38902,821,'group_sfvs9xaj2olhh3a_content_area_image_width','full-width'),(38903,821,'_group_sfvs9xaj2olhh3a_content_area_image_width','group_sfvs9xaj2olhh3a_field_5923225381234'),(38904,821,'group_sfvs9xaj2olhh3a_content_area_enable_padding','1'),(38905,821,'_group_sfvs9xaj2olhh3a_content_area_enable_padding','group_sfvs9xaj2olhh3a_field_5923225383901'),(38906,821,'group_sfvs9xaj2olhh3a_content_area_padding_top','0'),(38907,821,'_group_sfvs9xaj2olhh3a_content_area_padding_top','group_sfvs9xaj2olhh3a_field_5923225383902'),(38908,821,'group_sfvs9xaj2olhh3a_content_area_padding_bottom','0'),(38909,821,'_group_sfvs9xaj2olhh3a_content_area_padding_bottom','group_sfvs9xaj2olhh3a_field_5923225383903'),(38910,821,'group_sfvs9xaj2olhh3a_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38911,821,'_group_sfvs9xaj2olhh3a_content_area_background','group_sfvs9xaj2olhh3a_field_5923225383818'),(38912,821,'group_sfvs9xaj2olhh3a_content_area_animations_enabled','0'),(38913,821,'_group_sfvs9xaj2olhh3a_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38914,821,'group_sfvs9xaj2olhh3a_content_area_animations',''),(38915,821,'_group_sfvs9xaj2olhh3a_content_area_animations','group_sfvs9xaj2olhh3a_field_5b7ece258e4e8'),(38916,821,'group_xd5cu11k7q2944x_content_area_columns','two-column'),(38917,821,'_group_xd5cu11k7q2944x_content_area_columns','group_xd5cu11k7q2944x_field_5923225383814'),(38918,821,'group_xd5cu11k7q2944x_content_area_width','medium'),(38919,821,'_group_xd5cu11k7q2944x_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(38920,821,'group_xd5cu11k7q2944x_content_area_content_lead','<h5>We provide all of the following services:</h5>'),(38921,821,'_group_xd5cu11k7q2944x_content_area_content_lead','group_xd5cu11k7q2944x_field_0079736876206'),(38922,821,'group_xd5cu11k7q2944x_content_area_content','<ul>\r\n 	<li>Residential and Commercial New Construction</li>\r\n 	<li>Service and Repair of All Makes and Models</li>\r\n 	<li>Remodeling Projects (Include Free Estimates)</li>\r\n 	<li>Sewer Drain Cleaning and Repair</li>\r\n 	<li>Residential and Commerical Excavation</li>\r\n</ul>'),(38923,821,'_group_xd5cu11k7q2944x_content_area_content','group_xd5cu11k7q2944x_field_5923228483815'),(38924,821,'group_xd5cu11k7q2944x_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38925,821,'_group_xd5cu11k7q2944x_content_area_button','group_xd5cu11k7q2944x_field_5923225383819'),(38926,821,'group_xd5cu11k7q2944x_content_area_css_classes',''),(38927,821,'_group_xd5cu11k7q2944x_content_area_css_classes','group_xd5cu11k7q2944x_field_4554768684187'),(38928,821,'group_xd5cu11k7q2944x_content_area_align','left'),(38929,821,'_group_xd5cu11k7q2944x_content_area_align','group_xd5cu11k7q2944x_field_5923225383899'),(38930,821,'group_xd5cu11k7q2944x_content_area_enable_padding','1'),(38931,821,'_group_xd5cu11k7q2944x_content_area_enable_padding','group_xd5cu11k7q2944x_field_5923225383901'),(38932,821,'group_xd5cu11k7q2944x_content_area_padding_top','20'),(38933,821,'_group_xd5cu11k7q2944x_content_area_padding_top','group_xd5cu11k7q2944x_field_5923225383902'),(38934,821,'group_xd5cu11k7q2944x_content_area_padding_bottom','20'),(38935,821,'_group_xd5cu11k7q2944x_content_area_padding_bottom','group_xd5cu11k7q2944x_field_5923225383903'),(38936,821,'group_xd5cu11k7q2944x_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38937,821,'_group_xd5cu11k7q2944x_content_area_background','group_xd5cu11k7q2944x_field_5923225383818'),(38938,821,'group_xd5cu11k7q2944x_content_area_animations_enabled','0'),(38939,821,'_group_xd5cu11k7q2944x_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38940,821,'group_xd5cu11k7q2944x_content_area_animations',''),(38941,821,'_group_xd5cu11k7q2944x_content_area_animations','group_xd5cu11k7q2944x_field_5b7ece258e4e8'),(38942,821,'group_ud1z6cp3we1stc6_ctas_ctas','489'),(38943,821,'_group_ud1z6cp3we1stc6_ctas_ctas','group_ud1z6cp3we1stc6_field_5620077701227'),(38944,821,'group_ud1z6cp3we1stc6_ctas_css_classes','cta'),(38945,821,'_group_ud1z6cp3we1stc6_ctas_css_classes','group_ud1z6cp3we1stc6_field_8795774705172'),(38946,821,'group_ud1z6cp3we1stc6_ctas_animations_enabled','0'),(38947,821,'_group_ud1z6cp3we1stc6_ctas_animations_enabled','field_5b7ece2e8e4e9'),(38948,821,'group_ud1z6cp3we1stc6_ctas_animations',''),(38949,821,'_group_ud1z6cp3we1stc6_ctas_animations','group_ud1z6cp3we1stc6_field_5b7ece258e4e8'),(38950,821,'group_xd5cu11k7q2944x_content_area_content_two','<ul>\r\n 	<li>Faucet, Toilet, and Fixture Repairs</li>\r\n 	<li>Water Heater Installation</li>\r\n 	<li>Gas Installation (Certified Columbia Gas Installer)</li>\r\n 	<li>Water and Sanitation Line Repair and Installation</li>\r\n</ul>'),(38951,821,'_group_xd5cu11k7q2944x_content_area_content_two','group_xd5cu11k7q2944x_field_9871214998600'),(38952,821,'group_rcq58c1snwtp4dg_content_area_columns','single'),(38953,821,'_group_rcq58c1snwtp4dg_content_area_columns','group_rcq58c1snwtp4dg_field_5923225383814'),(38954,821,'group_rcq58c1snwtp4dg_content_area_width','medium'),(38955,821,'_group_rcq58c1snwtp4dg_content_area_width','group_rcq58c1snwtp4dg_field_5923225383891'),(38956,821,'group_rcq58c1snwtp4dg_content_area_content_lead',''),(38957,821,'_group_rcq58c1snwtp4dg_content_area_content_lead','group_rcq58c1snwtp4dg_field_0079736876206'),(38958,821,'group_rcq58c1snwtp4dg_content_area_content','<h3>Get Efficient Plumbing Service for Your Building</h3>\r\nWe’re dedicated to serving residential and commercial customers like you with five-star service and honest answers to your plumbing issues. Anything we repair or install is handled to ensure long-term efficiency with a minimal chance of problems in the future. When your plumbing system and fixtures function properly, you’ll save on headaches from cold showers and overflowing toilets, as well as lower utility bills. Mann Plumbing &amp; Heating, LLC. is ready to help you get the best performance out of your home or building’s plumbing system. <a href=\"/contact-us/\">Give us a call today</a> to schedule service or a consultation for your residential or commercial structure. We look forward to working with you and earning a long-term relationship.'),(38959,821,'_group_rcq58c1snwtp4dg_content_area_content','group_rcq58c1snwtp4dg_field_5923228483815'),(38960,821,'group_rcq58c1snwtp4dg_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(38961,821,'_group_rcq58c1snwtp4dg_content_area_button','group_rcq58c1snwtp4dg_field_5923225383819'),(38962,821,'group_rcq58c1snwtp4dg_content_area_css_classes',''),(38963,821,'_group_rcq58c1snwtp4dg_content_area_css_classes','group_rcq58c1snwtp4dg_field_4554768684187'),(38964,821,'group_rcq58c1snwtp4dg_content_area_align','centered'),(38965,821,'_group_rcq58c1snwtp4dg_content_area_align','group_rcq58c1snwtp4dg_field_5923225383899'),(38966,821,'group_rcq58c1snwtp4dg_content_area_enable_padding','1'),(38967,821,'_group_rcq58c1snwtp4dg_content_area_enable_padding','group_rcq58c1snwtp4dg_field_5923225383901'),(38968,821,'group_rcq58c1snwtp4dg_content_area_padding_top','20'),(38969,821,'_group_rcq58c1snwtp4dg_content_area_padding_top','group_rcq58c1snwtp4dg_field_5923225383902'),(38970,821,'group_rcq58c1snwtp4dg_content_area_padding_bottom','20'),(38971,821,'_group_rcq58c1snwtp4dg_content_area_padding_bottom','group_rcq58c1snwtp4dg_field_5923225383903'),(38972,821,'group_rcq58c1snwtp4dg_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(38973,821,'_group_rcq58c1snwtp4dg_content_area_background','group_rcq58c1snwtp4dg_field_5923225383818'),(38974,821,'group_rcq58c1snwtp4dg_content_area_animations_enabled','0'),(38975,821,'_group_rcq58c1snwtp4dg_content_area_animations_enabled','field_5b7ece2e8e4e9'),(38976,821,'group_rcq58c1snwtp4dg_content_area_animations',''),(38977,821,'_group_rcq58c1snwtp4dg_content_area_animations','group_rcq58c1snwtp4dg_field_5b7ece258e4e8'),(38978,822,'subheading',''),(38979,822,'_subheading','field_5976417756400'),(38980,822,'group_bll1v31dtnw9rl6_content_area_columns','single'),(38981,822,'_group_bll1v31dtnw9rl6_content_area_columns','group_bll1v31dtnw9rl6_field_5923225383814'),(38982,822,'group_bll1v31dtnw9rl6_content_area_width','medium'),(38983,822,'_group_bll1v31dtnw9rl6_content_area_width','group_bll1v31dtnw9rl6_field_5923225383891'),(38984,822,'group_bll1v31dtnw9rl6_content_area_content_lead',''),(38985,822,'_group_bll1v31dtnw9rl6_content_area_content_lead','group_bll1v31dtnw9rl6_field_0079736876206'),(38986,822,'group_bll1v31dtnw9rl6_content_area_content','<h2>Your Local Professionals for Excavation Services</h2>\r\nMann Plumbing &amp; Heating, LLC. offers customers near Shippensburg, Gettysburg, Waynesboro, Chambersburg, and beyond a wide array of solutions for their excavating needs. Home and business owners, buyers, and developers in Franklin County can get the drilling, separation, and inspection services they require from our team of seasoned experts in property excavation. Our services cover all sectors that customers need, spanning from commercial and residential to industrial and municipal. We’re ready to put our site work, design, and consultation services to work for you to find an efficient plan for your project. You can trust our 30 years of experience in plumbing, HVAC, and excavation.'),(38987,822,'_group_bll1v31dtnw9rl6_content_area_content','group_bll1v31dtnw9rl6_field_5923228483815'),(38988,822,'group_bll1v31dtnw9rl6_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(38989,822,'_group_bll1v31dtnw9rl6_content_area_button','group_bll1v31dtnw9rl6_field_5923225383819'),(38990,822,'group_bll1v31dtnw9rl6_content_area_css_classes',''),(38991,822,'_group_bll1v31dtnw9rl6_content_area_css_classes','group_bll1v31dtnw9rl6_field_4554768684187'),(38992,822,'group_bll1v31dtnw9rl6_content_area_align','centered'),(38993,822,'_group_bll1v31dtnw9rl6_content_area_align','group_bll1v31dtnw9rl6_field_5923225383899'),(38994,822,'group_bll1v31dtnw9rl6_content_area_enable_padding','1'),(38995,822,'_group_bll1v31dtnw9rl6_content_area_enable_padding','group_bll1v31dtnw9rl6_field_5923225383901'),(38996,822,'group_bll1v31dtnw9rl6_content_area_padding_top','20'),(38997,822,'_group_bll1v31dtnw9rl6_content_area_padding_top','group_bll1v31dtnw9rl6_field_5923225383902'),(38998,822,'group_bll1v31dtnw9rl6_content_area_padding_bottom','20'),(38999,822,'_group_bll1v31dtnw9rl6_content_area_padding_bottom','group_bll1v31dtnw9rl6_field_5923225383903'),(39000,822,'group_bll1v31dtnw9rl6_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39001,822,'_group_bll1v31dtnw9rl6_content_area_background','group_bll1v31dtnw9rl6_field_5923225383818'),(39002,822,'group_bll1v31dtnw9rl6_content_area_animations_enabled','0'),(39003,822,'_group_bll1v31dtnw9rl6_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39004,822,'group_bll1v31dtnw9rl6_content_area_animations',''),(39005,822,'_group_bll1v31dtnw9rl6_content_area_animations','group_bll1v31dtnw9rl6_field_5b7ece258e4e8'),(39006,822,'group_5zwsdbbzhgq9b3k_content_area_columns','image-left'),(39007,822,'_group_5zwsdbbzhgq9b3k_content_area_columns','group_5zwsdbbzhgq9b3k_field_5923225383814'),(39008,822,'group_5zwsdbbzhgq9b3k_content_area_content_lead',''),(39009,822,'_group_5zwsdbbzhgq9b3k_content_area_content_lead','group_5zwsdbbzhgq9b3k_field_0079736876206'),(39010,822,'group_5zwsdbbzhgq9b3k_content_area_content','<h3>Services for Residential &amp; Commercial Customers</h3>\r\nIf you have a project that involves new construction, work on an existing structure, or inspection of a home or building’s sewer and drain lines, Mann Plumbing &amp; Heating can help. Our team of talented professionals offers a variety of excavation services to provide solutions for residential and commercial projects.'),(39011,822,'_group_5zwsdbbzhgq9b3k_content_area_content','group_5zwsdbbzhgq9b3k_field_5923228483815'),(39012,822,'group_5zwsdbbzhgq9b3k_content_area_image','741'),(39013,822,'_group_5zwsdbbzhgq9b3k_content_area_image','group_5zwsdbbzhgq9b3k_field_5923229983816'),(39014,822,'group_5zwsdbbzhgq9b3k_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39015,822,'_group_5zwsdbbzhgq9b3k_content_area_button','group_5zwsdbbzhgq9b3k_field_5923225383819'),(39016,822,'group_5zwsdbbzhgq9b3k_content_area_css_classes',''),(39017,822,'_group_5zwsdbbzhgq9b3k_content_area_css_classes','group_5zwsdbbzhgq9b3k_field_4554768684187'),(39018,822,'group_5zwsdbbzhgq9b3k_content_area_align','left'),(39019,822,'_group_5zwsdbbzhgq9b3k_content_area_align','group_5zwsdbbzhgq9b3k_field_5923225383899'),(39020,822,'group_5zwsdbbzhgq9b3k_content_area_image_sizing','center'),(39021,822,'_group_5zwsdbbzhgq9b3k_content_area_image_sizing','group_5zwsdbbzhgq9b3k_field_5923225386557'),(39022,822,'group_5zwsdbbzhgq9b3k_content_area_image_width','full-width'),(39023,822,'_group_5zwsdbbzhgq9b3k_content_area_image_width','group_5zwsdbbzhgq9b3k_field_5923225381234'),(39024,822,'group_5zwsdbbzhgq9b3k_content_area_enable_padding','1'),(39025,822,'_group_5zwsdbbzhgq9b3k_content_area_enable_padding','group_5zwsdbbzhgq9b3k_field_5923225383901'),(39026,822,'group_5zwsdbbzhgq9b3k_content_area_padding_top','0'),(39027,822,'_group_5zwsdbbzhgq9b3k_content_area_padding_top','group_5zwsdbbzhgq9b3k_field_5923225383902'),(39028,822,'group_5zwsdbbzhgq9b3k_content_area_padding_bottom','0'),(39029,822,'_group_5zwsdbbzhgq9b3k_content_area_padding_bottom','group_5zwsdbbzhgq9b3k_field_5923225383903'),(39030,822,'group_5zwsdbbzhgq9b3k_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39031,822,'_group_5zwsdbbzhgq9b3k_content_area_background','group_5zwsdbbzhgq9b3k_field_5923225383818'),(39032,822,'group_5zwsdbbzhgq9b3k_content_area_animations_enabled','0'),(39033,822,'_group_5zwsdbbzhgq9b3k_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39034,822,'group_5zwsdbbzhgq9b3k_content_area_animations',''),(39035,822,'_group_5zwsdbbzhgq9b3k_content_area_animations','group_5zwsdbbzhgq9b3k_field_5b7ece258e4e8'),(39036,822,'group_6tb9wboffn47hyy_content_area_columns','two-column'),(39037,822,'_group_6tb9wboffn47hyy_content_area_columns','group_6tb9wboffn47hyy_field_5923225383814'),(39038,822,'group_6tb9wboffn47hyy_content_area_width','medium'),(39039,822,'_group_6tb9wboffn47hyy_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(39040,822,'group_6tb9wboffn47hyy_content_area_content_lead',''),(39041,822,'_group_6tb9wboffn47hyy_content_area_content_lead','group_6tb9wboffn47hyy_field_0079736876206'),(39042,822,'group_6tb9wboffn47hyy_content_area_content','<h5>Horizontal Directional Drilling</h5>\r\nThis form of drilling allows contractors to install power lines, sewer and water mains, and pipelines without digging trenches into the property. We take care to keep all drilling as efficient as possible with minimal disturbance to any surface structures or utility lines and pipes already in place.\r\n<h5>Sewer Scopes</h5>\r\nA sewer scope is a video inspection of your sewer line. It leads from the house or building to the connection to the septic tank or HOA tap. The information that sewer scopes collect is highly beneficial to home and property buyers, which is why many inspections include a sewer scope as part of their property assessment.'),(39043,822,'_group_6tb9wboffn47hyy_content_area_content','group_6tb9wboffn47hyy_field_5923228483815'),(39044,822,'group_6tb9wboffn47hyy_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39045,822,'_group_6tb9wboffn47hyy_content_area_button','group_6tb9wboffn47hyy_field_5923225383819'),(39046,822,'group_6tb9wboffn47hyy_content_area_css_classes','padding-fix'),(39047,822,'_group_6tb9wboffn47hyy_content_area_css_classes','group_6tb9wboffn47hyy_field_4554768684187'),(39048,822,'group_6tb9wboffn47hyy_content_area_align','left'),(39049,822,'_group_6tb9wboffn47hyy_content_area_align','group_6tb9wboffn47hyy_field_5923225383899'),(39050,822,'group_6tb9wboffn47hyy_content_area_enable_padding','1'),(39051,822,'_group_6tb9wboffn47hyy_content_area_enable_padding','group_6tb9wboffn47hyy_field_5923225383901'),(39052,822,'group_6tb9wboffn47hyy_content_area_padding_top','20'),(39053,822,'_group_6tb9wboffn47hyy_content_area_padding_top','group_6tb9wboffn47hyy_field_5923225383902'),(39054,822,'group_6tb9wboffn47hyy_content_area_padding_bottom','20'),(39055,822,'_group_6tb9wboffn47hyy_content_area_padding_bottom','group_6tb9wboffn47hyy_field_5923225383903'),(39056,822,'group_6tb9wboffn47hyy_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39057,822,'_group_6tb9wboffn47hyy_content_area_background','group_6tb9wboffn47hyy_field_5923225383818'),(39058,822,'group_6tb9wboffn47hyy_content_area_animations_enabled','0'),(39059,822,'_group_6tb9wboffn47hyy_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39060,822,'group_6tb9wboffn47hyy_content_area_animations',''),(39061,822,'_group_6tb9wboffn47hyy_content_area_animations','group_6tb9wboffn47hyy_field_5b7ece258e4e8'),(39062,822,'group_57f36i17ugcs5l4_ctas_ctas','489'),(39063,822,'_group_57f36i17ugcs5l4_ctas_ctas','group_57f36i17ugcs5l4_field_5620077701227'),(39064,822,'group_57f36i17ugcs5l4_ctas_css_classes','cta'),(39065,822,'_group_57f36i17ugcs5l4_ctas_css_classes','group_57f36i17ugcs5l4_field_8795774705172'),(39066,822,'group_57f36i17ugcs5l4_ctas_animations_enabled','0'),(39067,822,'_group_57f36i17ugcs5l4_ctas_animations_enabled','field_5b7ece2e8e4e9'),(39068,822,'group_57f36i17ugcs5l4_ctas_animations',''),(39069,822,'_group_57f36i17ugcs5l4_ctas_animations','group_57f36i17ugcs5l4_field_5b7ece258e4e8'),(39070,822,'group_br5n2isiewhel27_content_area_columns','single'),(39071,822,'_group_br5n2isiewhel27_content_area_columns','group_br5n2isiewhel27_field_5923225383814'),(39072,822,'group_br5n2isiewhel27_content_area_width','medium'),(39073,822,'_group_br5n2isiewhel27_content_area_width','group_br5n2isiewhel27_field_5923225383891'),(39074,822,'group_br5n2isiewhel27_content_area_content_lead',''),(39075,822,'_group_br5n2isiewhel27_content_area_content_lead','group_br5n2isiewhel27_field_0079736876206'),(39076,822,'group_br5n2isiewhel27_content_area_content','<h3>Call Us for Projects in Shippensburg, PA</h3>\r\nIf your project calls for excavation services to complete the necessary utility line installations or inspections of sewer and drain lines, we’re happy to help you. Mann Plumbing &amp; Heating, LLC. services residential and commercial customers throughout South-Central Pennsylvania, including near Chambersburg, Greencastle, Waynesboro, Shippensburg, Gettysburg, and St. Thomas. If you’re in one of the towns in between these locations, we also provide professional service for you. Our team is ready to handle your excavation needs, so <a href=\"/contact-us/\">give us a call today</a> with any questions or to schedule service for your project.'),(39077,822,'_group_br5n2isiewhel27_content_area_content','group_br5n2isiewhel27_field_5923228483815'),(39078,822,'group_br5n2isiewhel27_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39079,822,'_group_br5n2isiewhel27_content_area_button','group_br5n2isiewhel27_field_5923225383819'),(39080,822,'group_br5n2isiewhel27_content_area_css_classes',''),(39081,822,'_group_br5n2isiewhel27_content_area_css_classes','group_br5n2isiewhel27_field_4554768684187'),(39082,822,'group_br5n2isiewhel27_content_area_align','centered'),(39083,822,'_group_br5n2isiewhel27_content_area_align','group_br5n2isiewhel27_field_5923225383899'),(39084,822,'group_br5n2isiewhel27_content_area_enable_padding','1'),(39085,822,'_group_br5n2isiewhel27_content_area_enable_padding','group_br5n2isiewhel27_field_5923225383901'),(39086,822,'group_br5n2isiewhel27_content_area_padding_top','20'),(39087,822,'_group_br5n2isiewhel27_content_area_padding_top','group_br5n2isiewhel27_field_5923225383902'),(39088,822,'group_br5n2isiewhel27_content_area_padding_bottom','20'),(39089,822,'_group_br5n2isiewhel27_content_area_padding_bottom','group_br5n2isiewhel27_field_5923225383903'),(39090,822,'group_br5n2isiewhel27_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39091,822,'_group_br5n2isiewhel27_content_area_background','group_br5n2isiewhel27_field_5923225383818'),(39092,822,'group_br5n2isiewhel27_content_area_animations_enabled','0'),(39093,822,'_group_br5n2isiewhel27_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39094,822,'group_br5n2isiewhel27_content_area_animations',''),(39095,822,'_group_br5n2isiewhel27_content_area_animations','group_br5n2isiewhel27_field_5b7ece258e4e8'),(39096,822,'group_6tb9wboffn47hyy_content_area_content_two','<h5>Party Sewer Line Separation</h5>\r\nCreating horizontal and vertical separations for multiple sewer lines may be necessary for your property, especially when the area has existing utilities already in place. We handle sewer line separations with the utmost consideration for the existing standards for waterworks.\r\n<h5>Video Inspections</h5>\r\nUsing video inspection, we can more easily identify any current or potential issues with a sewer or drain line. Pipelines are susceptible to many problems, including corrosion, grease buildup, damage from roots, and obstructions such as paper towels and baby wipes. Once we identify the issue, our team can formulate the best solution.'),(39097,822,'_group_6tb9wboffn47hyy_content_area_content_two','group_6tb9wboffn47hyy_field_9871214998600'),(39098,823,'group_0yx3acydmccnw9z_hero_panel','1'),(39099,823,'_group_0yx3acydmccnw9z_hero_panel','group_0yx3acydmccnw9z_field_591dea5128ac1'),(39100,823,'group_0yx3acydmccnw9z_hero_height','0'),(39101,823,'_group_0yx3acydmccnw9z_hero_height','group_0yx3acydmccnw9z_field_591dea5128ac0'),(39102,823,'group_0yx3acydmccnw9z_hero_autoplay','off'),(39103,823,'_group_0yx3acydmccnw9z_hero_autoplay','group_0yx3acydmccnw9z_field_591dea5128ac2'),(39104,823,'group_jay33uzo882n74g_gallery_content','<h3 style=\"text-align: center;\">Call Us for Exceptional Plumbing &amp; HVAC Service</h3>\r\n<p style=\"text-align: center;\">Our team is available to provide service throughout South-Central Pennsylvania, including near Chambersburg, Greencastle, Waynesboro, Shippensburg, Gettysburg, St. Thomas, and all the small towns in between. Our extensive training and experience ensure your home or building’s plumbing and heating issues get rectified with the utmost consideration for the best possible long-term results. If you have questions or need plumbing, HVAC, or excavation repairs or replacement for air conditioning, give us a call today to schedule service.</p>'),(39105,823,'_group_jay33uzo882n74g_gallery_content','group_jay33uzo882n74g_field_591ca1f42e821'),(39106,823,'group_jay33uzo882n74g_gallery_images','a:4:{i:0;s:3:\"561\";i:1;s:3:\"563\";i:2;s:3:\"560\";i:3;s:3:\"562\";}'),(39107,823,'_group_jay33uzo882n74g_gallery_images','group_jay33uzo882n74g_field_591ca1f42e820'),(39108,823,'group_jay33uzo882n74g_gallery_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#ffffff\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39109,823,'_group_jay33uzo882n74g_gallery_background','group_jay33uzo882n74g_field_591ca1f42e829'),(39110,823,'group_zi794n2mdkggmlv_services_content','<h3 style=\"text-align: center;\">Our Versatile Services for Your Home or Business</h3>\r\n<p style=\"text-align: center;\">Mann Plumbing &amp; Heating, LLC. has ample experience helping residential and commercial customers like you with a wide array of issues with your plumbing, HVAC, and excavation needs. Our specialties include the following:</p>'),(39111,823,'_group_zi794n2mdkggmlv_services_content','group_zi794n2mdkggmlv_field_35a935e59d870'),(39112,823,'group_zi794n2mdkggmlv_services_services','4'),(39113,823,'_group_zi794n2mdkggmlv_services_services','group_zi794n2mdkggmlv_field_35a935e59d871'),(39114,823,'group_zi794n2mdkggmlv_services_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39115,823,'_group_zi794n2mdkggmlv_services_button','group_zi794n2mdkggmlv_field_35a935e59da88'),(39116,823,'group_zi794n2mdkggmlv_services_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:6:\"repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:4:\"auto\";}'),(39117,823,'_group_zi794n2mdkggmlv_services_background','group_zi794n2mdkggmlv_field_35a935e59da75'),(39118,823,'group_7omya7l9yrr0mu0_testimonials_content','<h3 style=\"text-align: center;\">Reviews</h3>'),(39119,823,'_group_7omya7l9yrr0mu0_testimonials_content','group_7omya7l9yrr0mu0_field_59232e687d160'),(39120,823,'group_7omya7l9yrr0mu0_testimonials_testimonials','5'),(39121,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials','group_7omya7l9yrr0mu0_field_59232e6d7d161'),(39122,823,'group_7omya7l9yrr0mu0_testimonials_background','a:6:{s:5:\"image\";s:3:\"532\";s:16:\"background_color\";s:7:\"#252525\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39123,823,'_group_7omya7l9yrr0mu0_testimonials_background','group_7omya7l9yrr0mu0_field_59232e687d167'),(39124,823,'group_7omya7l9yrr0mu0_testimonials_autoplay','off'),(39125,823,'_group_7omya7l9yrr0mu0_testimonials_autoplay','group_7omya7l9yrr0mu0_field_59232e687d168'),(39126,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_name','Stephen C'),(39127,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_name','field_59232e937d163'),(39128,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_date',''),(39129,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_date','field_59232e967d164'),(39130,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_content','Amber is amazing. They do great work for a reasonable price with awesome customer service.'),(39131,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_content','field_59232e817d162'),(39132,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_star_rating','5'),(39133,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_star_rating','field_59232e817d166'),(39134,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_avatar',''),(39135,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_avatar','field_59232e817d165'),(39136,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_name','James Foltz'),(39137,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_name','field_59232e937d163'),(39138,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_date',''),(39139,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_date','field_59232e967d164'),(39140,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_content','Timely, professional, and reasonable cost. After hours emergency service is excellent.'),(39141,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_content','field_59232e817d162'),(39142,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_star_rating','5'),(39143,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_star_rating','field_59232e817d166'),(39144,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_avatar',''),(39145,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_avatar','field_59232e817d165'),(39146,823,'group_0yx3acydmccnw9z_hero_panel_0_content','<h1>Peace of Mind for Your Plumbing &amp; Heating</h1>'),(39147,823,'_group_0yx3acydmccnw9z_hero_panel_0_content','field_591dea5128ac6'),(39148,823,'group_0yx3acydmccnw9z_hero_panel_0_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39149,823,'_group_0yx3acydmccnw9z_hero_panel_0_button','field_591dea5128ac7'),(39150,823,'group_0yx3acydmccnw9z_hero_panel_0_align','center'),(39151,823,'_group_0yx3acydmccnw9z_hero_panel_0_align','field_591dea5128ac8'),(39152,823,'group_0yx3acydmccnw9z_hero_panel_0_background','a:9:{s:5:\"image\";s:3:\"537\";s:12:\"mobile_image\";s:3:\"536\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:8:\"parallax\";}'),(39153,823,'_group_0yx3acydmccnw9z_hero_panel_0_background','field_591dea5128ac9'),(39154,823,'group_7omya7l9yrr0mu0_testimonials_slides_to_show','2'),(39155,823,'_group_7omya7l9yrr0mu0_testimonials_slides_to_show','group_7omya7l9yrr0mu0_field_8401674674123'),(39156,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_name','W T'),(39157,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_name','field_59232e937d163'),(39158,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_date',''),(39159,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_date','field_59232e967d164'),(39160,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_content','Great service! Spoke to Chandler who was able to answer all of my questions and truly seemed to care!'),(39161,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_content','field_59232e817d162'),(39162,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_star_rating','5'),(39163,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_star_rating','field_59232e817d166'),(39164,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_avatar',''),(39165,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_avatar','field_59232e817d165'),(39166,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_name','Robbie Cameron'),(39167,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_name','field_59232e937d163'),(39168,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_date',''),(39169,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_date','field_59232e967d164'),(39170,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_content','Very professional.  Get jobs done quick. Customer service is outstanding. Would recomend these guys to anyone.'),(39171,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_content','field_59232e817d162'),(39172,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_star_rating','5'),(39173,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_star_rating','field_59232e817d166'),(39174,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_avatar',''),(39175,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_avatar','field_59232e817d165'),(39176,823,'group_zi794n2mdkggmlv_services_services_0_image','555'),(39177,823,'_group_zi794n2mdkggmlv_services_services_0_image','field_35a935e59da73'),(39178,823,'group_zi794n2mdkggmlv_services_services_0_name','HVAC'),(39179,823,'_group_zi794n2mdkggmlv_services_services_0_name','field_35a935e59da72'),(39180,823,'group_zi794n2mdkggmlv_services_services_0_content','Our dependable HVAC services apply to your heating and air conditioning systems, including heat pumps, electric and gas furnaces, and hot water heaters. We’ll repair or replace your system so that you stay comfortable year-round.'),(39181,823,'_group_zi794n2mdkggmlv_services_services_0_content','field_35a935e59da74'),(39182,823,'group_zi794n2mdkggmlv_services_services_0_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39183,823,'_group_zi794n2mdkggmlv_services_services_0_button','field_35a935e59da76'),(39184,823,'group_zi794n2mdkggmlv_services_services_1_image','554'),(39185,823,'_group_zi794n2mdkggmlv_services_services_1_image','field_35a935e59da73'),(39186,823,'group_zi794n2mdkggmlv_services_services_1_name','Design / Build'),(39187,823,'_group_zi794n2mdkggmlv_services_services_1_name','field_35a935e59da72'),(39188,823,'group_zi794n2mdkggmlv_services_services_1_content','We plan out and design heating and air conditioning systems, as well as ductwork. When you have undersized or leaky ducts, or it\'s no longer cost-effective to repair your heating or cooling system, we’ll build and install systems for your long-term comfort.'),(39189,823,'_group_zi794n2mdkggmlv_services_services_1_content','field_35a935e59da74'),(39190,823,'group_zi794n2mdkggmlv_services_services_1_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39191,823,'_group_zi794n2mdkggmlv_services_services_1_button','field_35a935e59da76'),(39192,823,'group_zi794n2mdkggmlv_services_services_2_image','556'),(39193,823,'_group_zi794n2mdkggmlv_services_services_2_image','field_35a935e59da73'),(39194,823,'group_zi794n2mdkggmlv_services_services_2_name','Plumbing'),(39195,823,'_group_zi794n2mdkggmlv_services_services_2_name','field_35a935e59da72'),(39196,823,'group_zi794n2mdkggmlv_services_services_2_content','Whether you need simple repairs to your faucets or toilets, or you need to install water or gas lines, we’re certified and trained to handle your plumbing needs. Our comprehensive knowledge and skills ensure better performance and energy savings.'),(39197,823,'_group_zi794n2mdkggmlv_services_services_2_content','field_35a935e59da74'),(39198,823,'group_zi794n2mdkggmlv_services_services_2_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39199,823,'_group_zi794n2mdkggmlv_services_services_2_button','field_35a935e59da76'),(39200,823,'group_chcf29yih8zz3j3_content_area_columns','single'),(39201,823,'_group_chcf29yih8zz3j3_content_area_columns','group_chcf29yih8zz3j3_field_5923225383814'),(39202,823,'group_chcf29yih8zz3j3_content_area_width','medium'),(39203,823,'_group_chcf29yih8zz3j3_content_area_width','group_chcf29yih8zz3j3_field_5923225383891'),(39204,823,'group_chcf29yih8zz3j3_content_area_content','<h2>Plumbing &amp; Heating Experts for Chambersburg, PA &amp; Beyond</h2>\r\nWhy do more home and business owners in South Central Pennsylvania choose Mann Plumbing & Heating, LLC.? We’re a trustworthy company that provides solid ground for customers to enjoy comfort, system performance, and savings in Chambersburg, PA and beyond. Our highly skilled technicians maintain a track record of consistent quality for heating, cooling, and plumbing solutions. Residents and businesses can count on us for Trane® heating and air conditioning products and their reliable quality and optimal performance. Trane® products also ensure you get value for your money and peace of mind that your home or building stays comfortable. We have more than 30 years of expertise in plumbing that’s unmatched in the area. Our mission is to earn your trust and loyalty by giving you honest answers, friendly and personal service, and lasting results on every project. Bring your plumbing and HVAC needs to Mann Plumbing & Heating, LLC. to raise your comfort and convenience and lower your costs.'),(39205,823,'_group_chcf29yih8zz3j3_content_area_content','group_chcf29yih8zz3j3_field_5923228483815'),(39206,823,'group_chcf29yih8zz3j3_content_area_button','a:3:{s:4:\"text\";s:8:\"About Us\";s:3:\"url\";s:10:\"/about-us/\";s:8:\"external\";s:1:\"0\";}'),(39207,823,'_group_chcf29yih8zz3j3_content_area_button','group_chcf29yih8zz3j3_field_5923225383819'),(39208,823,'group_chcf29yih8zz3j3_content_area_align','centered'),(39209,823,'_group_chcf29yih8zz3j3_content_area_align','group_chcf29yih8zz3j3_field_5923225383899'),(39210,823,'group_chcf29yih8zz3j3_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:6:\"repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:4:\"auto\";}'),(39211,823,'_group_chcf29yih8zz3j3_content_area_background','group_chcf29yih8zz3j3_field_5923225383818'),(39212,823,'group_285xgh2d32ffzt8_special_offers_content','Mann Plumbing & Heating, LLC.: Serving Chambersburg,&nbsp;PA'),(39213,823,'_group_285xgh2d32ffzt8_special_offers_content','group_285xgh2d32ffzt8_field_5648912548761'),(39214,823,'group_285xgh2d32ffzt8_special_offers_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(39215,823,'_group_285xgh2d32ffzt8_special_offers_button','group_285xgh2d32ffzt8_field_5648912548762'),(39216,823,'group_285xgh2d32ffzt8_special_offers_background','a:6:{s:5:\"image\";s:3:\"538\";s:16:\"background_color\";s:7:\"#d51d25\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39217,823,'_group_285xgh2d32ffzt8_special_offers_background','group_285xgh2d32ffzt8_field_5648912548765'),(39218,823,'group_zi794n2mdkggmlv_services_services_0_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39219,823,'_group_zi794n2mdkggmlv_services_services_0_background','field_35a935e59da75'),(39220,823,'group_zi794n2mdkggmlv_services_services_1_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39221,823,'_group_zi794n2mdkggmlv_services_services_1_background','field_35a935e59da75'),(39222,823,'group_zi794n2mdkggmlv_services_services_2_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39223,823,'_group_zi794n2mdkggmlv_services_services_2_background','field_35a935e59da75'),(39224,823,'group_jay33uzo882n74g_gallery_slides_to_show','4'),(39225,823,'_group_jay33uzo882n74g_gallery_slides_to_show','group_jay33uzo882n74g_field_71810a8701e99'),(39226,823,'group_7omya7l9yrr0mu0_testimonials_button','a:3:{s:4:\"text\";s:9:\"Read More\";s:3:\"url\";s:14:\"/testimonials/\";s:8:\"external\";s:1:\"0\";}'),(39227,823,'_group_7omya7l9yrr0mu0_testimonials_button','group_7omya7l9yrr0mu0_field_59232e687d123'),(39228,823,'group_zi794n2mdkggmlv_services_columns','single'),(39229,823,'_group_zi794n2mdkggmlv_services_columns','group_zi794n2mdkggmlv_field_1875124714003'),(39230,823,'group_jay33uzo882n74g_gallery_button','a:3:{s:4:\"text\";s:13:\"View Our Work\";s:3:\"url\";s:10:\"/our-work/\";s:8:\"external\";s:1:\"0\";}'),(39231,823,'_group_jay33uzo882n74g_gallery_button','group_jay33uzo882n74g_field_35a591ca6da88'),(39232,823,'group_7omya7l9yrr0mu0_testimonials_arrow_placement','sides'),(39233,823,'_group_7omya7l9yrr0mu0_testimonials_arrow_placement','group_7omya7l9yrr0mu0_field_124793247623'),(39234,823,'group_285xgh2d32ffzt8_special_offers_enable_padding','0'),(39235,823,'_group_285xgh2d32ffzt8_special_offers_enable_padding','group_285xgh2d32ffzt8_field_56489125487801'),(39236,823,'group_285xgh2d32ffzt8_special_offers_padding_top','0'),(39237,823,'_group_285xgh2d32ffzt8_special_offers_padding_top','group_285xgh2d32ffzt8_field_56489125487802'),(39238,823,'group_285xgh2d32ffzt8_special_offers_padding_bottom','0'),(39239,823,'_group_285xgh2d32ffzt8_special_offers_padding_bottom','group_285xgh2d32ffzt8_field_56489125487803'),(39240,823,'group_chcf29yih8zz3j3_content_area_enable_padding','1'),(39241,823,'_group_chcf29yih8zz3j3_content_area_enable_padding','group_chcf29yih8zz3j3_field_5923225383901'),(39242,823,'group_chcf29yih8zz3j3_content_area_padding_top','20'),(39243,823,'_group_chcf29yih8zz3j3_content_area_padding_top','group_chcf29yih8zz3j3_field_5923225383902'),(39244,823,'group_chcf29yih8zz3j3_content_area_padding_bottom','20'),(39245,823,'_group_chcf29yih8zz3j3_content_area_padding_bottom','group_chcf29yih8zz3j3_field_5923225383903'),(39246,823,'group_zi794n2mdkggmlv_services_services_0_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:15:\"/services/hvac/\";s:6:\"target\";s:0:\"\";}'),(39247,823,'_group_zi794n2mdkggmlv_services_services_0_item_link','field_35a935e59da79'),(39248,823,'group_zi794n2mdkggmlv_services_services_1_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/services/design-build/\";s:6:\"target\";s:0:\"\";}'),(39249,823,'_group_zi794n2mdkggmlv_services_services_1_item_link','field_35a935e59da79'),(39250,823,'group_zi794n2mdkggmlv_services_services_2_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:19:\"/services/plumbing/\";s:6:\"target\";s:0:\"\";}'),(39251,823,'_group_zi794n2mdkggmlv_services_services_2_item_link','field_35a935e59da79'),(39252,823,'group_zi794n2mdkggmlv_services_enable_padding','0'),(39253,823,'_group_zi794n2mdkggmlv_services_enable_padding','group_zi794n2mdkggmlv_field_35a935e59da91'),(39254,823,'group_zi794n2mdkggmlv_services_padding_top','0'),(39255,823,'_group_zi794n2mdkggmlv_services_padding_top','group_zi794n2mdkggmlv_field_35a935e59da92'),(39256,823,'group_zi794n2mdkggmlv_services_padding_bottom','0'),(39257,823,'_group_zi794n2mdkggmlv_services_padding_bottom','group_zi794n2mdkggmlv_field_35a935e59da93'),(39258,823,'group_jay33uzo882n74g_gallery_enable_padding','1'),(39259,823,'_group_jay33uzo882n74g_gallery_enable_padding','group_jay33uzo882n74g_field_591ca1f42e82901'),(39260,823,'group_jay33uzo882n74g_gallery_padding_top','0'),(39261,823,'_group_jay33uzo882n74g_gallery_padding_top','group_jay33uzo882n74g_field_591ca1f42e82902'),(39262,823,'group_jay33uzo882n74g_gallery_padding_bottom','0'),(39263,823,'_group_jay33uzo882n74g_gallery_padding_bottom','group_jay33uzo882n74g_field_591ca1f42e82903'),(39264,823,'group_7omya7l9yrr0mu0_testimonials_enable_padding','1'),(39265,823,'_group_7omya7l9yrr0mu0_testimonials_enable_padding','group_7omya7l9yrr0mu0_field_59232e687d188'),(39266,823,'group_7omya7l9yrr0mu0_testimonials_padding_top','60'),(39267,823,'_group_7omya7l9yrr0mu0_testimonials_padding_top','group_7omya7l9yrr0mu0_field_59232e687d189'),(39268,823,'group_7omya7l9yrr0mu0_testimonials_padding_bottom','60'),(39269,823,'_group_7omya7l9yrr0mu0_testimonials_padding_bottom','group_7omya7l9yrr0mu0_field_59232e687d187'),(39270,823,'group_0yx3acydmccnw9z_hero_css_classes',''),(39271,823,'_group_0yx3acydmccnw9z_hero_css_classes','group_0yx3acydmccnw9z_field_9877065828823'),(39272,823,'group_285xgh2d32ffzt8_special_offers_css_classes',''),(39273,823,'_group_285xgh2d32ffzt8_special_offers_css_classes','group_285xgh2d32ffzt8_field_9147022838688'),(39274,823,'group_chcf29yih8zz3j3_content_area_css_classes',''),(39275,823,'_group_chcf29yih8zz3j3_content_area_css_classes','group_chcf29yih8zz3j3_field_4554768684187'),(39276,823,'group_zi794n2mdkggmlv_services_css_classes',''),(39277,823,'_group_zi794n2mdkggmlv_services_css_classes','group_zi794n2mdkggmlv_field_8577178443184'),(39278,823,'group_jay33uzo882n74g_gallery_css_classes',''),(39279,823,'_group_jay33uzo882n74g_gallery_css_classes','group_jay33uzo882n74g_field_8987622106215'),(39280,823,'group_7omya7l9yrr0mu0_testimonials_css_classes',''),(39281,823,'_group_7omya7l9yrr0mu0_testimonials_css_classes','group_7omya7l9yrr0mu0_field_4310619693162'),(39282,823,'group_chcf29yih8zz3j3_content_area_content_lead',''),(39283,823,'_group_chcf29yih8zz3j3_content_area_content_lead','group_chcf29yih8zz3j3_field_0079736876206'),(39284,823,'group_0yx3acydmccnw9z_hero_animations_enabled','1'),(39285,823,'_group_0yx3acydmccnw9z_hero_animations_enabled','field_5b7ece2e8e4e9'),(39286,823,'group_0yx3acydmccnw9z_hero_animations',''),(39287,823,'_group_0yx3acydmccnw9z_hero_animations','group_0yx3acydmccnw9z_field_5b7ece258e4e8'),(39288,823,'group_285xgh2d32ffzt8_special_offers_animations_enabled','1'),(39289,823,'_group_285xgh2d32ffzt8_special_offers_animations_enabled','field_5b7ece2e8e4e9'),(39290,823,'group_285xgh2d32ffzt8_special_offers_animations',''),(39291,823,'_group_285xgh2d32ffzt8_special_offers_animations','group_285xgh2d32ffzt8_field_5b7ece258e4e8'),(39292,823,'group_chcf29yih8zz3j3_content_area_animations_enabled','1'),(39293,823,'_group_chcf29yih8zz3j3_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39294,823,'group_chcf29yih8zz3j3_content_area_animations',''),(39295,823,'_group_chcf29yih8zz3j3_content_area_animations','group_chcf29yih8zz3j3_field_5b7ece258e4e8'),(39296,823,'group_zi794n2mdkggmlv_services_button_alignment',''),(39297,823,'_group_zi794n2mdkggmlv_services_button_alignment','group_zi794n2mdkggmlv_field_8591648772677'),(39298,823,'group_zi794n2mdkggmlv_services_animations_enabled','0'),(39299,823,'_group_zi794n2mdkggmlv_services_animations_enabled','field_5b7ece2e8e4e9'),(39300,823,'group_zi794n2mdkggmlv_services_animations',''),(39301,823,'_group_zi794n2mdkggmlv_services_animations','group_zi794n2mdkggmlv_field_5b7ece258e4e8'),(39302,823,'group_jay33uzo882n74g_gallery_layout','non-bleeding'),(39303,823,'_group_jay33uzo882n74g_gallery_layout','group_jay33uzo882n74g_field_8973h3489324h324'),(39304,823,'group_jay33uzo882n74g_gallery_width','md'),(39305,823,'_group_jay33uzo882n74g_gallery_width','group_jay33uzo882n74g_field_8973h3489324a002'),(39306,823,'group_jay33uzo882n74g_gallery_enable_captions','0'),(39307,823,'_group_jay33uzo882n74g_gallery_enable_captions','group_jay33uzo882n74g_field_h29be82vf92b9ad3'),(39308,823,'group_jay33uzo882n74g_gallery_button_alignment','center'),(39309,823,'_group_jay33uzo882n74g_gallery_button_alignment','group_jay33uzo882n74g_field_8591648772866'),(39310,823,'group_jay33uzo882n74g_gallery_animations_enabled','0'),(39311,823,'_group_jay33uzo882n74g_gallery_animations_enabled','field_5b7ece2e8e4e9'),(39312,823,'group_jay33uzo882n74g_gallery_animations',''),(39313,823,'_group_jay33uzo882n74g_gallery_animations','group_jay33uzo882n74g_field_5b7ece258e4e8'),(39314,823,'group_7omya7l9yrr0mu0_testimonials_enable_content_limit','0'),(39315,823,'_group_7omya7l9yrr0mu0_testimonials_enable_content_limit','group_7omya7l9yrr0mu0_field_34r5654rfg45'),(39316,823,'group_7omya7l9yrr0mu0_testimonials_content_limit_range','120'),(39317,823,'_group_7omya7l9yrr0mu0_testimonials_content_limit_range','group_7omya7l9yrr0mu0_field_847h9938h3k39'),(39318,823,'group_7omya7l9yrr0mu0_testimonials_arrow_color','default'),(39319,823,'_group_7omya7l9yrr0mu0_testimonials_arrow_color','group_7omya7l9yrr0mu0_field_654793247766'),(39320,823,'group_7omya7l9yrr0mu0_testimonials_enable_arrow_background','default'),(39321,823,'_group_7omya7l9yrr0mu0_testimonials_enable_arrow_background','group_7omya7l9yrr0mu0_field_60232e6872399'),(39322,823,'group_7omya7l9yrr0mu0_testimonials_arrow_background_color',''),(39323,823,'_group_7omya7l9yrr0mu0_testimonials_arrow_background_color','group_7omya7l9yrr0mu0_field_591b6d8fe1000'),(39324,823,'group_7omya7l9yrr0mu0_testimonials_button_alignment',''),(39325,823,'_group_7omya7l9yrr0mu0_testimonials_button_alignment','group_7omya7l9yrr0mu0_field_8591648772644'),(39326,823,'group_7omya7l9yrr0mu0_testimonials_animations_enabled','1'),(39327,823,'_group_7omya7l9yrr0mu0_testimonials_animations_enabled','field_5b7ece2e8e4e9'),(39328,823,'group_7omya7l9yrr0mu0_testimonials_animations',''),(39329,823,'_group_7omya7l9yrr0mu0_testimonials_animations','group_7omya7l9yrr0mu0_field_5b7ece258e4e8'),(39330,823,'group_zi794n2mdkggmlv_services_services_3_image','557'),(39331,823,'_group_zi794n2mdkggmlv_services_services_3_image','field_35a935e59da73'),(39332,823,'group_zi794n2mdkggmlv_services_services_3_name','Excavation Services'),(39333,823,'_group_zi794n2mdkggmlv_services_services_3_name','field_35a935e59da72'),(39334,823,'group_zi794n2mdkggmlv_services_services_3_content','Our team offers a variety of solutions for your excavating needs. If you require party sewer line separation, video inspections, or horizontal directional drilling, we can help you. We handle site work or design and consultation.'),(39335,823,'_group_zi794n2mdkggmlv_services_services_3_content','field_35a935e59da74'),(39336,823,'group_zi794n2mdkggmlv_services_services_3_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39337,823,'_group_zi794n2mdkggmlv_services_services_3_button','field_35a935e59da76'),(39338,823,'group_zi794n2mdkggmlv_services_services_3_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:30:\"/services/excavation-services/\";s:6:\"target\";s:0:\"\";}'),(39339,823,'_group_zi794n2mdkggmlv_services_services_3_item_link','field_35a935e59da79'),(39340,823,'group_zi794n2mdkggmlv_services_services_3_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39341,823,'_group_zi794n2mdkggmlv_services_services_3_background','field_35a935e59da75'),(39342,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_name','B H'),(39343,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_name','field_59232e937d163'),(39344,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_date',''),(39345,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_date','field_59232e967d164'),(39346,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_content','Great service. Mann\'s installed Trane Heat Pump. Very professional and courteous. Highly recommend. A+++'),(39347,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_content','field_59232e817d162'),(39348,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_star_rating','5'),(39349,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_star_rating','field_59232e817d166'),(39350,823,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_avatar',''),(39351,823,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_avatar','field_59232e817d165'),(39352,823,'group_0yx3acydmccnw9z_hero_animations_type','slide'),(39353,823,'_group_0yx3acydmccnw9z_hero_animations_type','field_5b7ece638e4ea'),(39354,823,'group_0yx3acydmccnw9z_hero_animations_direction','top'),(39355,823,'_group_0yx3acydmccnw9z_hero_animations_direction','field_5b7ed4a96a49b'),(39356,823,'group_0yx3acydmccnw9z_hero_animations_speed','1200'),(39357,823,'_group_0yx3acydmccnw9z_hero_animations_speed','field_5b7ed501a7f4a'),(39358,823,'group_0yx3acydmccnw9z_hero_animations_offset','0'),(39359,823,'_group_0yx3acydmccnw9z_hero_animations_offset','field_5b7ed532a7f4b'),(39360,823,'group_0yx3acydmccnw9z_hero_animations_mobile','1'),(39361,823,'_group_0yx3acydmccnw9z_hero_animations_mobile','field_5b7ed5cf62c6b'),(39362,823,'group_0yx3acydmccnw9z_hero_animations_run_once','1'),(39363,823,'_group_0yx3acydmccnw9z_hero_animations_run_once','field_5b7ed60862c6c'),(39364,823,'group_285xgh2d32ffzt8_special_offers_animations_type','fade'),(39365,823,'_group_285xgh2d32ffzt8_special_offers_animations_type','field_5b7ece638e4ea'),(39366,823,'group_285xgh2d32ffzt8_special_offers_animations_speed','1200'),(39367,823,'_group_285xgh2d32ffzt8_special_offers_animations_speed','field_5b7ed501a7f4a'),(39368,823,'group_285xgh2d32ffzt8_special_offers_animations_offset','-500'),(39369,823,'_group_285xgh2d32ffzt8_special_offers_animations_offset','field_5b7ed532a7f4b'),(39370,823,'group_285xgh2d32ffzt8_special_offers_animations_mobile','1'),(39371,823,'_group_285xgh2d32ffzt8_special_offers_animations_mobile','field_5b7ed5cf62c6b'),(39372,823,'group_285xgh2d32ffzt8_special_offers_animations_run_once','1'),(39373,823,'_group_285xgh2d32ffzt8_special_offers_animations_run_once','field_5b7ed60862c6c'),(39374,823,'group_chcf29yih8zz3j3_content_area_animations_type','slide'),(39375,823,'_group_chcf29yih8zz3j3_content_area_animations_type','field_5b7ece638e4ea'),(39376,823,'group_chcf29yih8zz3j3_content_area_animations_direction','left'),(39377,823,'_group_chcf29yih8zz3j3_content_area_animations_direction','field_5b7ed4a96a49b'),(39378,823,'group_chcf29yih8zz3j3_content_area_animations_speed','1200'),(39379,823,'_group_chcf29yih8zz3j3_content_area_animations_speed','field_5b7ed501a7f4a'),(39380,823,'group_chcf29yih8zz3j3_content_area_animations_offset','-100'),(39381,823,'_group_chcf29yih8zz3j3_content_area_animations_offset','field_5b7ed532a7f4b'),(39382,823,'group_chcf29yih8zz3j3_content_area_animations_mobile','1'),(39383,823,'_group_chcf29yih8zz3j3_content_area_animations_mobile','field_5b7ed5cf62c6b'),(39384,823,'group_chcf29yih8zz3j3_content_area_animations_run_once','1'),(39385,823,'_group_chcf29yih8zz3j3_content_area_animations_run_once','field_5b7ed60862c6c'),(39386,823,'group_7omya7l9yrr0mu0_testimonials_animations_type','fade'),(39387,823,'_group_7omya7l9yrr0mu0_testimonials_animations_type','field_5b7ece638e4ea'),(39388,823,'group_7omya7l9yrr0mu0_testimonials_animations_speed','1200'),(39389,823,'_group_7omya7l9yrr0mu0_testimonials_animations_speed','field_5b7ed501a7f4a'),(39390,823,'group_7omya7l9yrr0mu0_testimonials_animations_offset','-100'),(39391,823,'_group_7omya7l9yrr0mu0_testimonials_animations_offset','field_5b7ed532a7f4b'),(39392,823,'group_7omya7l9yrr0mu0_testimonials_animations_mobile','1'),(39393,823,'_group_7omya7l9yrr0mu0_testimonials_animations_mobile','field_5b7ed5cf62c6b'),(39394,823,'group_7omya7l9yrr0mu0_testimonials_animations_run_once','1'),(39395,823,'_group_7omya7l9yrr0mu0_testimonials_animations_run_once','field_5b7ed60862c6c'),(39396,824,'subheading',''),(39397,824,'_subheading','field_5976417756400'),(39398,824,'group_r9k1mdmqbq8p3mx_content_area_columns','single'),(39399,824,'_group_r9k1mdmqbq8p3mx_content_area_columns','group_r9k1mdmqbq8p3mx_field_5923225383814'),(39400,824,'group_r9k1mdmqbq8p3mx_content_area_width','medium'),(39401,824,'_group_r9k1mdmqbq8p3mx_content_area_width','group_r9k1mdmqbq8p3mx_field_5923225383891'),(39402,824,'group_r9k1mdmqbq8p3mx_content_area_content_lead',''),(39403,824,'_group_r9k1mdmqbq8p3mx_content_area_content_lead','group_r9k1mdmqbq8p3mx_field_0079736876206'),(39404,824,'group_r9k1mdmqbq8p3mx_content_area_content','<h2>About Mann Plumbing &amp; Heating, LLC.</h2>\r\nWhat qualities make a plumbing and HVAC company worthwhile? At Mann Plumbing &amp; Heating, LLC., we believe it comes down to providing solutions that keep you worry-free consistently, no matter what situation we address. Our technicians get the job done right for your peace of mind. Whether you require a new system installation or expert repairs and maintenance, you can count on us to provide service with lasting value at a fair price. Our priority for every job is to offer honest answers and solutions to your plumbing, heating, and cooling issues. We want your systems to be dependable year-round, which is why we perform all repairs, maintenance, and installations to ensure they run efficiently and save you on energy costs. Our technicians will evaluate your plumbing or HVAC equipment and give you a straightforward recommendation of the best action to take. Whether repairs will rectify your system’s issues, or you need to replace it with a newer model, we make our recommendations based on what\'s best for your home or business.'),(39405,824,'_group_r9k1mdmqbq8p3mx_content_area_content','group_r9k1mdmqbq8p3mx_field_5923228483815'),(39406,824,'group_r9k1mdmqbq8p3mx_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(39407,824,'_group_r9k1mdmqbq8p3mx_content_area_button','group_r9k1mdmqbq8p3mx_field_5923225383819'),(39408,824,'group_r9k1mdmqbq8p3mx_content_area_css_classes',''),(39409,824,'_group_r9k1mdmqbq8p3mx_content_area_css_classes','group_r9k1mdmqbq8p3mx_field_4554768684187'),(39410,824,'group_r9k1mdmqbq8p3mx_content_area_align','centered'),(39411,824,'_group_r9k1mdmqbq8p3mx_content_area_align','group_r9k1mdmqbq8p3mx_field_5923225383899'),(39412,824,'group_r9k1mdmqbq8p3mx_content_area_enable_padding','1'),(39413,824,'_group_r9k1mdmqbq8p3mx_content_area_enable_padding','group_r9k1mdmqbq8p3mx_field_5923225383901'),(39414,824,'group_r9k1mdmqbq8p3mx_content_area_padding_top','20'),(39415,824,'_group_r9k1mdmqbq8p3mx_content_area_padding_top','group_r9k1mdmqbq8p3mx_field_5923225383902'),(39416,824,'group_r9k1mdmqbq8p3mx_content_area_padding_bottom','20'),(39417,824,'_group_r9k1mdmqbq8p3mx_content_area_padding_bottom','group_r9k1mdmqbq8p3mx_field_5923225383903'),(39418,824,'group_r9k1mdmqbq8p3mx_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39419,824,'_group_r9k1mdmqbq8p3mx_content_area_background','group_r9k1mdmqbq8p3mx_field_5923225383818'),(39420,824,'group_r9k1mdmqbq8p3mx_content_area_animations_enabled','1'),(39421,824,'_group_r9k1mdmqbq8p3mx_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39422,824,'group_r9k1mdmqbq8p3mx_content_area_animations',''),(39423,824,'_group_r9k1mdmqbq8p3mx_content_area_animations','group_r9k1mdmqbq8p3mx_field_5b7ece258e4e8'),(39424,824,'group_o94sm7iw1sypujx_content_area_columns','image-left'),(39425,824,'_group_o94sm7iw1sypujx_content_area_columns','group_o94sm7iw1sypujx_field_5923225383814'),(39426,824,'group_o94sm7iw1sypujx_content_area_content_lead',''),(39427,824,'_group_o94sm7iw1sypujx_content_area_content_lead','group_o94sm7iw1sypujx_field_0079736876206'),(39428,824,'group_o94sm7iw1sypujx_content_area_content','<h3>Putting Quality in Every Service We Provide</h3>\r\nOur team of talented professionals puts in the extra attention to detail your project deserves. We always strive to achieve exceptional results on jobs large and small. A point of pride for our company is being recognized as a Trane<sup>®</sup> Comfort Specialist™ dealer. Only a select group that meets the stringent standards of Trane<sup>®</sup> earns this honor for technical expertise and customer service. For all projects, we provide quality support and service for your home or business in South-Central Pennsylvania. We have many specialties, including the following:\r\n<ul>\r\n 	<li>Plumbing Installation and Repairs</li>\r\n 	<li>Heating and Air Conditioning Installation and Repairs</li>\r\n 	<li>Service for All Makes and Models of Boilers, Furnaces, and Air Conditioners</li>\r\n 	<li>Preventative Maintenance Agreements</li>\r\n 	<li>Complete Duct System Cleaning, Repair, and Design</li>\r\n 	<li>Electronic Air Cleaners</li>\r\n 	<li>Excavation Services</li>\r\n</ul>'),(39429,824,'_group_o94sm7iw1sypujx_content_area_content','group_o94sm7iw1sypujx_field_5923228483815'),(39430,824,'group_o94sm7iw1sypujx_content_area_image','748'),(39431,824,'_group_o94sm7iw1sypujx_content_area_image','group_o94sm7iw1sypujx_field_5923229983816'),(39432,824,'group_o94sm7iw1sypujx_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39433,824,'_group_o94sm7iw1sypujx_content_area_button','group_o94sm7iw1sypujx_field_5923225383819'),(39434,824,'group_o94sm7iw1sypujx_content_area_css_classes',''),(39435,824,'_group_o94sm7iw1sypujx_content_area_css_classes','group_o94sm7iw1sypujx_field_4554768684187'),(39436,824,'group_o94sm7iw1sypujx_content_area_align','left'),(39437,824,'_group_o94sm7iw1sypujx_content_area_align','group_o94sm7iw1sypujx_field_5923225383899'),(39438,824,'group_o94sm7iw1sypujx_content_area_image_sizing','center'),(39439,824,'_group_o94sm7iw1sypujx_content_area_image_sizing','group_o94sm7iw1sypujx_field_5923225386557'),(39440,824,'group_o94sm7iw1sypujx_content_area_image_width','full-width'),(39441,824,'_group_o94sm7iw1sypujx_content_area_image_width','group_o94sm7iw1sypujx_field_5923225381234'),(39442,824,'group_o94sm7iw1sypujx_content_area_enable_padding','1'),(39443,824,'_group_o94sm7iw1sypujx_content_area_enable_padding','group_o94sm7iw1sypujx_field_5923225383901'),(39444,824,'group_o94sm7iw1sypujx_content_area_padding_top','0'),(39445,824,'_group_o94sm7iw1sypujx_content_area_padding_top','group_o94sm7iw1sypujx_field_5923225383902'),(39446,824,'group_o94sm7iw1sypujx_content_area_padding_bottom','0'),(39447,824,'_group_o94sm7iw1sypujx_content_area_padding_bottom','group_o94sm7iw1sypujx_field_5923225383903'),(39448,824,'group_o94sm7iw1sypujx_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39449,824,'_group_o94sm7iw1sypujx_content_area_background','group_o94sm7iw1sypujx_field_5923225383818'),(39450,824,'group_o94sm7iw1sypujx_content_area_animations_enabled','1'),(39451,824,'_group_o94sm7iw1sypujx_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39452,824,'group_o94sm7iw1sypujx_content_area_animations',''),(39453,824,'_group_o94sm7iw1sypujx_content_area_animations','group_o94sm7iw1sypujx_field_5b7ece258e4e8'),(39454,824,'group_4trfhcisy1rje8c_content_area_columns','single'),(39455,824,'_group_4trfhcisy1rje8c_content_area_columns','group_4trfhcisy1rje8c_field_5923225383814'),(39456,824,'group_4trfhcisy1rje8c_content_area_width','medium'),(39457,824,'_group_4trfhcisy1rje8c_content_area_width','group_4trfhcisy1rje8c_field_5923225383891'),(39458,824,'group_4trfhcisy1rje8c_content_area_content_lead',''),(39459,824,'_group_4trfhcisy1rje8c_content_area_content_lead','group_4trfhcisy1rje8c_field_0079736876206'),(39460,824,'group_4trfhcisy1rje8c_content_area_content','<h3>Your Satisfaction is Our Priority</h3>\r\nWe make sure that whenever you call Mann Plumbing &amp; Heating, LLC. for a repair, installation, or maintenance, you can expect reliable, high-quality service. Our technicians work hard to earn your trust and build a long-lasting relationship as we perform service for long-lasting system efficiency. You put your faith in us for your home or business\'s plumbing and HVAC systems, and we believe in living up to that faith. Whenever we visit your residence or building, we’re not done with the job until we’ve achieved your complete satisfaction. The next time you have issues with your plumbing, heating, or cooling system, <a href=\"/contact-us/\">give us a call</a> to schedule quick and effective service with long-term results. Let us show you what you’ve been missing by bringing in Mann Plumbing &amp; Heating, LLC. for your residential or commercial projects.'),(39461,824,'_group_4trfhcisy1rje8c_content_area_content','group_4trfhcisy1rje8c_field_5923228483815'),(39462,824,'group_4trfhcisy1rje8c_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39463,824,'_group_4trfhcisy1rje8c_content_area_button','group_4trfhcisy1rje8c_field_5923225383819'),(39464,824,'group_4trfhcisy1rje8c_content_area_css_classes',''),(39465,824,'_group_4trfhcisy1rje8c_content_area_css_classes','group_4trfhcisy1rje8c_field_4554768684187'),(39466,824,'group_4trfhcisy1rje8c_content_area_align','centered'),(39467,824,'_group_4trfhcisy1rje8c_content_area_align','group_4trfhcisy1rje8c_field_5923225383899'),(39468,824,'group_4trfhcisy1rje8c_content_area_enable_padding','1'),(39469,824,'_group_4trfhcisy1rje8c_content_area_enable_padding','group_4trfhcisy1rje8c_field_5923225383901'),(39470,824,'group_4trfhcisy1rje8c_content_area_padding_top','20'),(39471,824,'_group_4trfhcisy1rje8c_content_area_padding_top','group_4trfhcisy1rje8c_field_5923225383902'),(39472,824,'group_4trfhcisy1rje8c_content_area_padding_bottom','20'),(39473,824,'_group_4trfhcisy1rje8c_content_area_padding_bottom','group_4trfhcisy1rje8c_field_5923225383903'),(39474,824,'group_4trfhcisy1rje8c_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39475,824,'_group_4trfhcisy1rje8c_content_area_background','group_4trfhcisy1rje8c_field_5923225383818'),(39476,824,'group_4trfhcisy1rje8c_content_area_animations_enabled','1'),(39477,824,'_group_4trfhcisy1rje8c_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39478,824,'group_4trfhcisy1rje8c_content_area_animations',''),(39479,824,'_group_4trfhcisy1rje8c_content_area_animations','group_4trfhcisy1rje8c_field_5b7ece258e4e8'),(39480,824,'group_jgklj4r4l3wngs8_ctas_ctas','489'),(39481,824,'_group_jgklj4r4l3wngs8_ctas_ctas','group_jgklj4r4l3wngs8_field_5620077701227'),(39482,824,'group_jgklj4r4l3wngs8_ctas_css_classes','cta'),(39483,824,'_group_jgklj4r4l3wngs8_ctas_css_classes','group_jgklj4r4l3wngs8_field_8795774705172'),(39484,824,'group_jgklj4r4l3wngs8_ctas_animations_enabled','0'),(39485,824,'_group_jgklj4r4l3wngs8_ctas_animations_enabled','field_5b7ece2e8e4e9'),(39486,824,'group_jgklj4r4l3wngs8_ctas_animations',''),(39487,824,'_group_jgklj4r4l3wngs8_ctas_animations','group_jgklj4r4l3wngs8_field_5b7ece258e4e8'),(39488,824,'group_r9k1mdmqbq8p3mx_content_area_animations_type','fade'),(39489,824,'_group_r9k1mdmqbq8p3mx_content_area_animations_type','field_5b7ece638e4ea'),(39490,824,'group_r9k1mdmqbq8p3mx_content_area_animations_speed','1200'),(39491,824,'_group_r9k1mdmqbq8p3mx_content_area_animations_speed','field_5b7ed501a7f4a'),(39492,824,'group_r9k1mdmqbq8p3mx_content_area_animations_offset','-100'),(39493,824,'_group_r9k1mdmqbq8p3mx_content_area_animations_offset','field_5b7ed532a7f4b'),(39494,824,'group_r9k1mdmqbq8p3mx_content_area_animations_mobile','1'),(39495,824,'_group_r9k1mdmqbq8p3mx_content_area_animations_mobile','field_5b7ed5cf62c6b'),(39496,824,'group_r9k1mdmqbq8p3mx_content_area_animations_run_once','1'),(39497,824,'_group_r9k1mdmqbq8p3mx_content_area_animations_run_once','field_5b7ed60862c6c'),(39498,824,'group_o94sm7iw1sypujx_content_area_animations_type','slide'),(39499,824,'_group_o94sm7iw1sypujx_content_area_animations_type','field_5b7ece638e4ea'),(39500,824,'group_o94sm7iw1sypujx_content_area_animations_direction','right'),(39501,824,'_group_o94sm7iw1sypujx_content_area_animations_direction','field_5b7ed4a96a49b'),(39502,824,'group_o94sm7iw1sypujx_content_area_animations_speed','1200'),(39503,824,'_group_o94sm7iw1sypujx_content_area_animations_speed','field_5b7ed501a7f4a'),(39504,824,'group_o94sm7iw1sypujx_content_area_animations_offset','-100'),(39505,824,'_group_o94sm7iw1sypujx_content_area_animations_offset','field_5b7ed532a7f4b'),(39506,824,'group_o94sm7iw1sypujx_content_area_animations_mobile','1'),(39507,824,'_group_o94sm7iw1sypujx_content_area_animations_mobile','field_5b7ed5cf62c6b'),(39508,824,'group_o94sm7iw1sypujx_content_area_animations_run_once','1'),(39509,824,'_group_o94sm7iw1sypujx_content_area_animations_run_once','field_5b7ed60862c6c'),(39510,824,'group_4trfhcisy1rje8c_content_area_animations_type','fade'),(39511,824,'_group_4trfhcisy1rje8c_content_area_animations_type','field_5b7ece638e4ea'),(39512,824,'group_4trfhcisy1rje8c_content_area_animations_speed','1200'),(39513,824,'_group_4trfhcisy1rje8c_content_area_animations_speed','field_5b7ed501a7f4a'),(39514,824,'group_4trfhcisy1rje8c_content_area_animations_offset','-100'),(39515,824,'_group_4trfhcisy1rje8c_content_area_animations_offset','field_5b7ed532a7f4b'),(39516,824,'group_4trfhcisy1rje8c_content_area_animations_mobile','1'),(39517,824,'_group_4trfhcisy1rje8c_content_area_animations_mobile','field_5b7ed5cf62c6b'),(39518,824,'group_4trfhcisy1rje8c_content_area_animations_run_once','1'),(39519,824,'_group_4trfhcisy1rje8c_content_area_animations_run_once','field_5b7ed60862c6c'),(39520,825,'subheading',''),(39521,825,'_subheading','field_5976417756400'),(39522,825,'group_gtf9qg87luu5eqi_content_area_columns','single'),(39523,825,'_group_gtf9qg87luu5eqi_content_area_columns','group_gtf9qg87luu5eqi_field_5923225383814'),(39524,825,'group_gtf9qg87luu5eqi_content_area_width','medium'),(39525,825,'_group_gtf9qg87luu5eqi_content_area_width','group_gtf9qg87luu5eqi_field_5923225383891'),(39526,825,'group_gtf9qg87luu5eqi_content_area_content_lead',''),(39527,825,'_group_gtf9qg87luu5eqi_content_area_content_lead','group_gtf9qg87luu5eqi_field_0079736876206'),(39528,825,'group_gtf9qg87luu5eqi_content_area_content','<h2>Franklin County\'s Outstanding HVAC Services</h2>\r\nYour home or business’s HVAC system is a primary source of comfort for your building throughout the year. During the hot summers, you can stay cool, thanks to a fully functional air conditioning system. When the cold winter weather hits, your interior space keeps warm and cozy through the consistent performance of your heating system. Mann Plumbing &amp; Heating, LLC. provides thorough and honest HVAC services to ensure that your system runs at its best. Every HVAC system has maintenance and repair concerns, as well as a limited lifespan. Our technicians will evaluate your system’s condition and give you a straightforward assessment of the best actions to take. If you need repairs or new parts, we’ll execute them to get your system running again. If a replacement is necessary, our team will present you with your options, including Trane<sup>®</sup> heating and air conditioning products. We’ve assisted many residents with their environmental comfort, and Trane<sup>®</sup> is well-known for its reliability and outstanding performance.'),(39529,825,'_group_gtf9qg87luu5eqi_content_area_content','group_gtf9qg87luu5eqi_field_5923228483815'),(39530,825,'group_gtf9qg87luu5eqi_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(39531,825,'_group_gtf9qg87luu5eqi_content_area_button','group_gtf9qg87luu5eqi_field_5923225383819'),(39532,825,'group_gtf9qg87luu5eqi_content_area_css_classes',''),(39533,825,'_group_gtf9qg87luu5eqi_content_area_css_classes','group_gtf9qg87luu5eqi_field_4554768684187'),(39534,825,'group_gtf9qg87luu5eqi_content_area_align','centered'),(39535,825,'_group_gtf9qg87luu5eqi_content_area_align','group_gtf9qg87luu5eqi_field_5923225383899'),(39536,825,'group_gtf9qg87luu5eqi_content_area_enable_padding','1'),(39537,825,'_group_gtf9qg87luu5eqi_content_area_enable_padding','group_gtf9qg87luu5eqi_field_5923225383901'),(39538,825,'group_gtf9qg87luu5eqi_content_area_padding_top','20'),(39539,825,'_group_gtf9qg87luu5eqi_content_area_padding_top','group_gtf9qg87luu5eqi_field_5923225383902'),(39540,825,'group_gtf9qg87luu5eqi_content_area_padding_bottom','20'),(39541,825,'_group_gtf9qg87luu5eqi_content_area_padding_bottom','group_gtf9qg87luu5eqi_field_5923225383903'),(39542,825,'group_gtf9qg87luu5eqi_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39543,825,'_group_gtf9qg87luu5eqi_content_area_background','group_gtf9qg87luu5eqi_field_5923225383818'),(39544,825,'group_gtf9qg87luu5eqi_content_area_animations_enabled','0'),(39545,825,'_group_gtf9qg87luu5eqi_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39546,825,'group_gtf9qg87luu5eqi_content_area_animations',''),(39547,825,'_group_gtf9qg87luu5eqi_content_area_animations','group_gtf9qg87luu5eqi_field_5b7ece258e4e8'),(39548,825,'group_5ceuunsp1agbemn_content_area_columns','image-left'),(39549,825,'_group_5ceuunsp1agbemn_content_area_columns','group_5ceuunsp1agbemn_field_5923225383814'),(39550,825,'group_5ceuunsp1agbemn_content_area_content_lead',''),(39551,825,'_group_5ceuunsp1agbemn_content_area_content_lead','group_5ceuunsp1agbemn_field_0079736876206'),(39552,825,'group_5ceuunsp1agbemn_content_area_content','<h3>Heating &amp; Air Conditioning Repairs</h3>\r\nCustomers near Greencastle, Waynesboro, and many other South-Central Pennsylvania cities and towns can trust Mann Plumbing &amp; Heating, LLC. to repair and replace all types of heating systems. Our training and expertise include working on gas and electric furnaces, as well as heat pumps and hot water heaters. We’ll make recommendations on excellent choices for your lifestyle and home environmental comfort, and we offer humidifiers that enhance the comfort of your home. If your air conditioning system isn’t functioning at its best, we service and repair those systems with expert know-how while keeping any disruption to your daily life to a minimum. Our comfort consultants share a dedication to your comfort, and we’ll assess your system to determine if a replacement is the best option. If it is, we\'ll design an air conditioning system that fits your budget and situation.'),(39553,825,'_group_5ceuunsp1agbemn_content_area_content','group_5ceuunsp1agbemn_field_5923228483815'),(39554,825,'group_5ceuunsp1agbemn_content_area_image','739'),(39555,825,'_group_5ceuunsp1agbemn_content_area_image','group_5ceuunsp1agbemn_field_5923229983816'),(39556,825,'group_5ceuunsp1agbemn_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39557,825,'_group_5ceuunsp1agbemn_content_area_button','group_5ceuunsp1agbemn_field_5923225383819'),(39558,825,'group_5ceuunsp1agbemn_content_area_css_classes',''),(39559,825,'_group_5ceuunsp1agbemn_content_area_css_classes','group_5ceuunsp1agbemn_field_4554768684187'),(39560,825,'group_5ceuunsp1agbemn_content_area_align','left'),(39561,825,'_group_5ceuunsp1agbemn_content_area_align','group_5ceuunsp1agbemn_field_5923225383899'),(39562,825,'group_5ceuunsp1agbemn_content_area_image_sizing','center'),(39563,825,'_group_5ceuunsp1agbemn_content_area_image_sizing','group_5ceuunsp1agbemn_field_5923225386557'),(39564,825,'group_5ceuunsp1agbemn_content_area_image_width','full-width'),(39565,825,'_group_5ceuunsp1agbemn_content_area_image_width','group_5ceuunsp1agbemn_field_5923225381234'),(39566,825,'group_5ceuunsp1agbemn_content_area_enable_padding','1'),(39567,825,'_group_5ceuunsp1agbemn_content_area_enable_padding','group_5ceuunsp1agbemn_field_5923225383901'),(39568,825,'group_5ceuunsp1agbemn_content_area_padding_top','0'),(39569,825,'_group_5ceuunsp1agbemn_content_area_padding_top','group_5ceuunsp1agbemn_field_5923225383902'),(39570,825,'group_5ceuunsp1agbemn_content_area_padding_bottom','0'),(39571,825,'_group_5ceuunsp1agbemn_content_area_padding_bottom','group_5ceuunsp1agbemn_field_5923225383903'),(39572,825,'group_5ceuunsp1agbemn_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39573,825,'_group_5ceuunsp1agbemn_content_area_background','group_5ceuunsp1agbemn_field_5923225383818'),(39574,825,'group_5ceuunsp1agbemn_content_area_animations_enabled','0'),(39575,825,'_group_5ceuunsp1agbemn_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39576,825,'group_5ceuunsp1agbemn_content_area_animations',''),(39577,825,'_group_5ceuunsp1agbemn_content_area_animations','group_5ceuunsp1agbemn_field_5b7ece258e4e8'),(39578,825,'group_zznmx4e2lzf8s9h_content_area_columns','single'),(39579,825,'_group_zznmx4e2lzf8s9h_content_area_columns','group_zznmx4e2lzf8s9h_field_5923225383814'),(39580,825,'group_zznmx4e2lzf8s9h_content_area_width','medium'),(39581,825,'_group_zznmx4e2lzf8s9h_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(39582,825,'group_zznmx4e2lzf8s9h_content_area_content_lead',''),(39583,825,'_group_zznmx4e2lzf8s9h_content_area_content_lead','group_zznmx4e2lzf8s9h_field_0079736876206'),(39584,825,'group_zznmx4e2lzf8s9h_content_area_content','<h3>Service is Just a Phone Call Away</h3>\r\nMann Plumbing &amp; Heating, LLC. is happy to help residential and commercial customers keep their spaces comfortable during any season with our comprehensive knowledge and training of HVAC systems. If your system isn’t keeping your winter home warm, we offer free consultations. Our technicians will examine your unit and determine the cause of your system’s lagging or failure. We might recommend repairs to your existing unit, or we might advise you to get a new system. Whatever assessment we present, you can rest assured our motivation for any action is to provide you with the best long-term solution. <a href=\"/contact-us/\">Give us a call</a> today to schedule professional care for your HVAC system. We’ll make sure you enjoy your time inside during the stifling summers and frigid winters.'),(39585,825,'_group_zznmx4e2lzf8s9h_content_area_content','group_zznmx4e2lzf8s9h_field_5923228483815'),(39586,825,'group_zznmx4e2lzf8s9h_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39587,825,'_group_zznmx4e2lzf8s9h_content_area_button','group_zznmx4e2lzf8s9h_field_5923225383819'),(39588,825,'group_zznmx4e2lzf8s9h_content_area_css_classes',''),(39589,825,'_group_zznmx4e2lzf8s9h_content_area_css_classes','group_zznmx4e2lzf8s9h_field_4554768684187'),(39590,825,'group_zznmx4e2lzf8s9h_content_area_align','centered'),(39591,825,'_group_zznmx4e2lzf8s9h_content_area_align','group_zznmx4e2lzf8s9h_field_5923225383899'),(39592,825,'group_zznmx4e2lzf8s9h_content_area_enable_padding','1'),(39593,825,'_group_zznmx4e2lzf8s9h_content_area_enable_padding','group_zznmx4e2lzf8s9h_field_5923225383901'),(39594,825,'group_zznmx4e2lzf8s9h_content_area_padding_top','20'),(39595,825,'_group_zznmx4e2lzf8s9h_content_area_padding_top','group_zznmx4e2lzf8s9h_field_5923225383902'),(39596,825,'group_zznmx4e2lzf8s9h_content_area_padding_bottom','20'),(39597,825,'_group_zznmx4e2lzf8s9h_content_area_padding_bottom','group_zznmx4e2lzf8s9h_field_5923225383903'),(39598,825,'group_zznmx4e2lzf8s9h_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39599,825,'_group_zznmx4e2lzf8s9h_content_area_background','group_zznmx4e2lzf8s9h_field_5923225383818'),(39600,825,'group_zznmx4e2lzf8s9h_content_area_animations_enabled','0'),(39601,825,'_group_zznmx4e2lzf8s9h_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39602,825,'group_zznmx4e2lzf8s9h_content_area_animations',''),(39603,825,'_group_zznmx4e2lzf8s9h_content_area_animations','group_zznmx4e2lzf8s9h_field_5b7ece258e4e8'),(39604,825,'group_tzgv8v1sbieylt0_ctas_ctas','489'),(39605,825,'_group_tzgv8v1sbieylt0_ctas_ctas','group_tzgv8v1sbieylt0_field_5620077701227'),(39606,825,'group_tzgv8v1sbieylt0_ctas_css_classes','cta'),(39607,825,'_group_tzgv8v1sbieylt0_ctas_css_classes','group_tzgv8v1sbieylt0_field_8795774705172'),(39608,825,'group_tzgv8v1sbieylt0_ctas_animations_enabled','0'),(39609,825,'_group_tzgv8v1sbieylt0_ctas_animations_enabled','field_5b7ece2e8e4e9'),(39610,825,'group_tzgv8v1sbieylt0_ctas_animations',''),(39611,825,'_group_tzgv8v1sbieylt0_ctas_animations','group_tzgv8v1sbieylt0_field_5b7ece258e4e8'),(39612,826,'subheading',''),(39613,826,'_subheading','field_5976417756400'),(39614,826,'group_0j287z8smusg8ro_content_area_columns','single'),(39615,826,'_group_0j287z8smusg8ro_content_area_columns','group_0j287z8smusg8ro_field_5923225383814'),(39616,826,'group_0j287z8smusg8ro_content_area_width','medium'),(39617,826,'_group_0j287z8smusg8ro_content_area_width','group_0j287z8smusg8ro_field_5923225383891'),(39618,826,'group_0j287z8smusg8ro_content_area_content_lead',''),(39619,826,'_group_0j287z8smusg8ro_content_area_content_lead','group_0j287z8smusg8ro_field_0079736876206'),(39620,826,'group_0j287z8smusg8ro_content_area_content','<h2>Custom HVAC Design &amp; Build Services for Customers</h2>\r\nThe talented team at Mann Plumbing & Heating, LLC. plans and installs heating and air conditioning systems that ensure long-term efficiency and comfort for new buildings. We design and build HVAC systems for customers throughout cities and towns in South-Central Pennsylvania, such as Waynesboro, Greencastle, Gettysburg, and Chambersburg. Other areas in which we excel include gas installation, plumbing and excavating. Whatever project we’re working on, we always ensure your water pipes, gas line, and HVAC system operate as efficiently as possible. Our clients include a wide variety of businesses and institutions, including nursing homes, restaurants, schools, and other large commercial establishments. After 30 years of serving commercial and residential clients, we’ve built our expertise and skillset to make sure we can handle any type of HVAC project. Don’t leave your business’s heating and cooling systems in the hands of an inexperienced contractor with limited knowledge. Our seasoned professionals will create and install a system that suits your space for long-term performance.'),(39621,826,'_group_0j287z8smusg8ro_content_area_content','group_0j287z8smusg8ro_field_5923228483815'),(39622,826,'group_0j287z8smusg8ro_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(39623,826,'_group_0j287z8smusg8ro_content_area_button','group_0j287z8smusg8ro_field_5923225383819'),(39624,826,'group_0j287z8smusg8ro_content_area_css_classes',''),(39625,826,'_group_0j287z8smusg8ro_content_area_css_classes','group_0j287z8smusg8ro_field_4554768684187'),(39626,826,'group_0j287z8smusg8ro_content_area_align','centered'),(39627,826,'_group_0j287z8smusg8ro_content_area_align','group_0j287z8smusg8ro_field_5923225383899'),(39628,826,'group_0j287z8smusg8ro_content_area_enable_padding','1'),(39629,826,'_group_0j287z8smusg8ro_content_area_enable_padding','group_0j287z8smusg8ro_field_5923225383901'),(39630,826,'group_0j287z8smusg8ro_content_area_padding_top','20'),(39631,826,'_group_0j287z8smusg8ro_content_area_padding_top','group_0j287z8smusg8ro_field_5923225383902'),(39632,826,'group_0j287z8smusg8ro_content_area_padding_bottom','20'),(39633,826,'_group_0j287z8smusg8ro_content_area_padding_bottom','group_0j287z8smusg8ro_field_5923225383903'),(39634,826,'group_0j287z8smusg8ro_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39635,826,'_group_0j287z8smusg8ro_content_area_background','group_0j287z8smusg8ro_field_5923225383818'),(39636,826,'group_0j287z8smusg8ro_content_area_animations_enabled','0'),(39637,826,'_group_0j287z8smusg8ro_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39638,826,'group_0j287z8smusg8ro_content_area_animations',''),(39639,826,'_group_0j287z8smusg8ro_content_area_animations','group_0j287z8smusg8ro_field_5b7ece258e4e8'),(39640,826,'group_glogz5elw7g3d94_content_area_columns','image-left'),(39641,826,'_group_glogz5elw7g3d94_content_area_columns','group_glogz5elw7g3d94_field_5923225383814'),(39642,826,'group_glogz5elw7g3d94_content_area_content_lead',''),(39643,826,'_group_glogz5elw7g3d94_content_area_content_lead','group_glogz5elw7g3d94_field_0079736876206'),(39644,826,'group_glogz5elw7g3d94_content_area_content','<h3>Designing Your Heating &amp; Air Conditioning Systems</h3>\r\nWhen it’s no longer cost-effective to repair your heating or cooling system due to its age or lack of efficiency, we’ll help you find a solution that fits your space and budget needs. Let our comfort consultants evaluate the comfort needs of your home or business and recommend equipment options to replace your system. The reason your heating and cooling system isn’t providing comfortable temperatures adequately is sometimes because the unit isn’t the right size for the space. When an AC (air conditioning) or heating unit isn’t big enough to handle the needed capacity, then keeping your home or building comfortable will be impossible. Our team will design a custom system that we engineer with load calculations for your space specifically, which will provide maximum comfort and save you energy over time.'),(39645,826,'_group_glogz5elw7g3d94_content_area_content','group_glogz5elw7g3d94_field_5923228483815'),(39646,826,'group_glogz5elw7g3d94_content_area_image','740'),(39647,826,'_group_glogz5elw7g3d94_content_area_image','group_glogz5elw7g3d94_field_5923229983816'),(39648,826,'group_glogz5elw7g3d94_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39649,826,'_group_glogz5elw7g3d94_content_area_button','group_glogz5elw7g3d94_field_5923225383819'),(39650,826,'group_glogz5elw7g3d94_content_area_css_classes',''),(39651,826,'_group_glogz5elw7g3d94_content_area_css_classes','group_glogz5elw7g3d94_field_4554768684187'),(39652,826,'group_glogz5elw7g3d94_content_area_align','left'),(39653,826,'_group_glogz5elw7g3d94_content_area_align','group_glogz5elw7g3d94_field_5923225383899'),(39654,826,'group_glogz5elw7g3d94_content_area_image_sizing','center'),(39655,826,'_group_glogz5elw7g3d94_content_area_image_sizing','group_glogz5elw7g3d94_field_5923225386557'),(39656,826,'group_glogz5elw7g3d94_content_area_image_width','full-width'),(39657,826,'_group_glogz5elw7g3d94_content_area_image_width','group_glogz5elw7g3d94_field_5923225381234'),(39658,826,'group_glogz5elw7g3d94_content_area_enable_padding','1'),(39659,826,'_group_glogz5elw7g3d94_content_area_enable_padding','group_glogz5elw7g3d94_field_5923225383901'),(39660,826,'group_glogz5elw7g3d94_content_area_padding_top','0'),(39661,826,'_group_glogz5elw7g3d94_content_area_padding_top','group_glogz5elw7g3d94_field_5923225383902'),(39662,826,'group_glogz5elw7g3d94_content_area_padding_bottom','0'),(39663,826,'_group_glogz5elw7g3d94_content_area_padding_bottom','group_glogz5elw7g3d94_field_5923225383903'),(39664,826,'group_glogz5elw7g3d94_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39665,826,'_group_glogz5elw7g3d94_content_area_background','group_glogz5elw7g3d94_field_5923225383818'),(39666,826,'group_glogz5elw7g3d94_content_area_animations_enabled','0'),(39667,826,'_group_glogz5elw7g3d94_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39668,826,'group_glogz5elw7g3d94_content_area_animations',''),(39669,826,'_group_glogz5elw7g3d94_content_area_animations','group_glogz5elw7g3d94_field_5b7ece258e4e8'),(39670,826,'group_lt793odq0j0s3qx_content_area_columns','single'),(39671,826,'_group_lt793odq0j0s3qx_content_area_columns','group_lt793odq0j0s3qx_field_5923225383814'),(39672,826,'group_lt793odq0j0s3qx_content_area_width','medium'),(39673,826,'_group_lt793odq0j0s3qx_content_area_width','group_lt793odq0j0s3qx_field_5923225383891'),(39674,826,'group_lt793odq0j0s3qx_content_area_content_lead',''),(39675,826,'_group_lt793odq0j0s3qx_content_area_content_lead','group_lt793odq0j0s3qx_field_0079736876206'),(39676,826,'group_lt793odq0j0s3qx_content_area_content','<h3>Solutions for Your Duct Work</h3>\r\nIf you have undersized or leaky ducts, then your heating and air conditioning bills can increase significantly. Your HVAC equipment’s capacity will also reduce dramatically, and you’ll end up having problems with your indoor air quality. Our technicians perform thorough repairs to resolve your ductwork, or we can redesign it to optimize your airflow and ensure you won’t have any issues in the future. We’re the team you can count on in South-Central Pennsylvania for new ductwork to support your heating and air conditioning systems. We\'ve spent decades installing air conditioning ductwork in homes and businesses, and we welcome the opportunity to do the same for you. <a href=\"/contact-us/\">Give us a call today</a> to schedule a consultation. We\'ll examine your system and ductwork and recommend the solution that suits your budget and comfort needs.'),(39677,826,'_group_lt793odq0j0s3qx_content_area_content','group_lt793odq0j0s3qx_field_5923228483815'),(39678,826,'group_lt793odq0j0s3qx_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39679,826,'_group_lt793odq0j0s3qx_content_area_button','group_lt793odq0j0s3qx_field_5923225383819'),(39680,826,'group_lt793odq0j0s3qx_content_area_css_classes',''),(39681,826,'_group_lt793odq0j0s3qx_content_area_css_classes','group_lt793odq0j0s3qx_field_4554768684187'),(39682,826,'group_lt793odq0j0s3qx_content_area_align','centered'),(39683,826,'_group_lt793odq0j0s3qx_content_area_align','group_lt793odq0j0s3qx_field_5923225383899'),(39684,826,'group_lt793odq0j0s3qx_content_area_enable_padding','1'),(39685,826,'_group_lt793odq0j0s3qx_content_area_enable_padding','group_lt793odq0j0s3qx_field_5923225383901'),(39686,826,'group_lt793odq0j0s3qx_content_area_padding_top','20'),(39687,826,'_group_lt793odq0j0s3qx_content_area_padding_top','group_lt793odq0j0s3qx_field_5923225383902'),(39688,826,'group_lt793odq0j0s3qx_content_area_padding_bottom','20'),(39689,826,'_group_lt793odq0j0s3qx_content_area_padding_bottom','group_lt793odq0j0s3qx_field_5923225383903'),(39690,826,'group_lt793odq0j0s3qx_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39691,826,'_group_lt793odq0j0s3qx_content_area_background','group_lt793odq0j0s3qx_field_5923225383818'),(39692,826,'group_lt793odq0j0s3qx_content_area_animations_enabled','0'),(39693,826,'_group_lt793odq0j0s3qx_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39694,826,'group_lt793odq0j0s3qx_content_area_animations',''),(39695,826,'_group_lt793odq0j0s3qx_content_area_animations','group_lt793odq0j0s3qx_field_5b7ece258e4e8'),(39696,826,'group_7hpz2gts0xxjbk1_ctas_ctas','489'),(39697,826,'_group_7hpz2gts0xxjbk1_ctas_ctas','group_7hpz2gts0xxjbk1_field_5620077701227'),(39698,826,'group_7hpz2gts0xxjbk1_ctas_css_classes','cta'),(39699,826,'_group_7hpz2gts0xxjbk1_ctas_css_classes','group_7hpz2gts0xxjbk1_field_8795774705172'),(39700,826,'group_7hpz2gts0xxjbk1_ctas_animations_enabled','0'),(39701,826,'_group_7hpz2gts0xxjbk1_ctas_animations_enabled','field_5b7ece2e8e4e9'),(39702,826,'group_7hpz2gts0xxjbk1_ctas_animations',''),(39703,826,'_group_7hpz2gts0xxjbk1_ctas_animations','group_7hpz2gts0xxjbk1_field_5b7ece258e4e8'),(39704,827,'subheading',''),(39705,827,'_subheading','field_5976417756400'),(39706,827,'group_qo98bywf16e4f60_content_area_columns','single'),(39707,827,'_group_qo98bywf16e4f60_content_area_columns','group_qo98bywf16e4f60_field_5923225383814'),(39708,827,'group_qo98bywf16e4f60_content_area_width','medium'),(39709,827,'_group_qo98bywf16e4f60_content_area_width','group_qo98bywf16e4f60_field_5923225383891'),(39710,827,'group_qo98bywf16e4f60_content_area_content_lead',''),(39711,827,'_group_qo98bywf16e4f60_content_area_content_lead','group_qo98bywf16e4f60_field_0079736876206'),(39712,827,'group_qo98bywf16e4f60_content_area_content','<h2>Plumbing Solutions for Clients in South-Central PA</h2>\r\nMann Plumbing &amp; Heating, LLC. is a full-service plumbing contractor for your entire plumbing system. We offer a comprehensive list of plumbing services for homes and businesses in Gettysburg, PA, as well as near Shippensburg, Chambersburg, and beyond. Whether you need to replace or repair your toilet or faucet, or you have a water heater that needs installation, we’ll make sure you get the service you need for a complete working system in your building. On top of our hands-on plumbing services, our experts are happy to consult with you regarding improvements to your existing system. This collaboration can lead to better performance and save you energy costs. For the past 30 years, Mann Plumbing &amp; Heating, LLC. has upheld a reputation of quality in every job we perform in South-Central Pennsylvania. Let our team of skilled professionals show you the difference our exceptional expertise makes in maintaining an efficient plumbing system.'),(39713,827,'_group_qo98bywf16e4f60_content_area_content','group_qo98bywf16e4f60_field_5923228483815'),(39714,827,'group_qo98bywf16e4f60_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(39715,827,'_group_qo98bywf16e4f60_content_area_button','group_qo98bywf16e4f60_field_5923225383819'),(39716,827,'group_qo98bywf16e4f60_content_area_css_classes',''),(39717,827,'_group_qo98bywf16e4f60_content_area_css_classes','group_qo98bywf16e4f60_field_4554768684187'),(39718,827,'group_qo98bywf16e4f60_content_area_align','centered'),(39719,827,'_group_qo98bywf16e4f60_content_area_align','group_qo98bywf16e4f60_field_5923225383899'),(39720,827,'group_qo98bywf16e4f60_content_area_enable_padding','1'),(39721,827,'_group_qo98bywf16e4f60_content_area_enable_padding','group_qo98bywf16e4f60_field_5923225383901'),(39722,827,'group_qo98bywf16e4f60_content_area_padding_top','20'),(39723,827,'_group_qo98bywf16e4f60_content_area_padding_top','group_qo98bywf16e4f60_field_5923225383902'),(39724,827,'group_qo98bywf16e4f60_content_area_padding_bottom','20'),(39725,827,'_group_qo98bywf16e4f60_content_area_padding_bottom','group_qo98bywf16e4f60_field_5923225383903'),(39726,827,'group_qo98bywf16e4f60_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39727,827,'_group_qo98bywf16e4f60_content_area_background','group_qo98bywf16e4f60_field_5923225383818'),(39728,827,'group_qo98bywf16e4f60_content_area_animations_enabled','0'),(39729,827,'_group_qo98bywf16e4f60_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39730,827,'group_qo98bywf16e4f60_content_area_animations',''),(39731,827,'_group_qo98bywf16e4f60_content_area_animations','group_qo98bywf16e4f60_field_5b7ece258e4e8'),(39732,827,'group_sfvs9xaj2olhh3a_content_area_columns','image-left'),(39733,827,'_group_sfvs9xaj2olhh3a_content_area_columns','group_sfvs9xaj2olhh3a_field_5923225383814'),(39734,827,'group_sfvs9xaj2olhh3a_content_area_content_lead',''),(39735,827,'_group_sfvs9xaj2olhh3a_content_area_content_lead','group_sfvs9xaj2olhh3a_field_0079736876206'),(39736,827,'group_sfvs9xaj2olhh3a_content_area_content','<h3>Types of Plumbing Services We Offer</h3>\r\nFor any plumbing repair and installation we perform, you can count on the team at Mann Plumbing & Heating, LLC. for thorough work with sharp attention to detail. We make sure your water and sanitary lines run without any issues, and you should depend on a hot shower in the morning and a steady stream from the faucet when you’re washing dishes. Our versatile expertise in plumbing makes us the prime company to call when you have a clog, leak, or new major component for your building. We ensure your newly installed water heater supplies hot water for your home, restaurant, or office. Reach out to us for high-quality plumbing services for your new or existing home or building.'),(39737,827,'_group_sfvs9xaj2olhh3a_content_area_content','group_sfvs9xaj2olhh3a_field_5923228483815'),(39738,827,'group_sfvs9xaj2olhh3a_content_area_image','738'),(39739,827,'_group_sfvs9xaj2olhh3a_content_area_image','group_sfvs9xaj2olhh3a_field_5923229983816'),(39740,827,'group_sfvs9xaj2olhh3a_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39741,827,'_group_sfvs9xaj2olhh3a_content_area_button','group_sfvs9xaj2olhh3a_field_5923225383819'),(39742,827,'group_sfvs9xaj2olhh3a_content_area_css_classes',''),(39743,827,'_group_sfvs9xaj2olhh3a_content_area_css_classes','group_sfvs9xaj2olhh3a_field_4554768684187'),(39744,827,'group_sfvs9xaj2olhh3a_content_area_align','left'),(39745,827,'_group_sfvs9xaj2olhh3a_content_area_align','group_sfvs9xaj2olhh3a_field_5923225383899'),(39746,827,'group_sfvs9xaj2olhh3a_content_area_image_sizing','center'),(39747,827,'_group_sfvs9xaj2olhh3a_content_area_image_sizing','group_sfvs9xaj2olhh3a_field_5923225386557'),(39748,827,'group_sfvs9xaj2olhh3a_content_area_image_width','full-width'),(39749,827,'_group_sfvs9xaj2olhh3a_content_area_image_width','group_sfvs9xaj2olhh3a_field_5923225381234'),(39750,827,'group_sfvs9xaj2olhh3a_content_area_enable_padding','1'),(39751,827,'_group_sfvs9xaj2olhh3a_content_area_enable_padding','group_sfvs9xaj2olhh3a_field_5923225383901'),(39752,827,'group_sfvs9xaj2olhh3a_content_area_padding_top','0'),(39753,827,'_group_sfvs9xaj2olhh3a_content_area_padding_top','group_sfvs9xaj2olhh3a_field_5923225383902'),(39754,827,'group_sfvs9xaj2olhh3a_content_area_padding_bottom','0'),(39755,827,'_group_sfvs9xaj2olhh3a_content_area_padding_bottom','group_sfvs9xaj2olhh3a_field_5923225383903'),(39756,827,'group_sfvs9xaj2olhh3a_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39757,827,'_group_sfvs9xaj2olhh3a_content_area_background','group_sfvs9xaj2olhh3a_field_5923225383818'),(39758,827,'group_sfvs9xaj2olhh3a_content_area_animations_enabled','0'),(39759,827,'_group_sfvs9xaj2olhh3a_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39760,827,'group_sfvs9xaj2olhh3a_content_area_animations',''),(39761,827,'_group_sfvs9xaj2olhh3a_content_area_animations','group_sfvs9xaj2olhh3a_field_5b7ece258e4e8'),(39762,827,'group_xd5cu11k7q2944x_content_area_columns','two-column'),(39763,827,'_group_xd5cu11k7q2944x_content_area_columns','group_xd5cu11k7q2944x_field_5923225383814'),(39764,827,'group_xd5cu11k7q2944x_content_area_width','medium'),(39765,827,'_group_xd5cu11k7q2944x_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(39766,827,'group_xd5cu11k7q2944x_content_area_content_lead','<h5>We provide all of the following services:</h5>'),(39767,827,'_group_xd5cu11k7q2944x_content_area_content_lead','group_xd5cu11k7q2944x_field_0079736876206'),(39768,827,'group_xd5cu11k7q2944x_content_area_content','<ul>\r\n 	<li>Residential and Commercial New Construction</li>\r\n 	<li>Service and Repair of All Makes and Models</li>\r\n 	<li>Remodeling Projects (Include Free Estimates)</li>\r\n 	<li>Sewer Drain Cleaning and Repair</li>\r\n 	<li>Residential and Commerical Excavation</li>\r\n</ul>'),(39769,827,'_group_xd5cu11k7q2944x_content_area_content','group_xd5cu11k7q2944x_field_5923228483815'),(39770,827,'group_xd5cu11k7q2944x_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39771,827,'_group_xd5cu11k7q2944x_content_area_button','group_xd5cu11k7q2944x_field_5923225383819'),(39772,827,'group_xd5cu11k7q2944x_content_area_css_classes',''),(39773,827,'_group_xd5cu11k7q2944x_content_area_css_classes','group_xd5cu11k7q2944x_field_4554768684187'),(39774,827,'group_xd5cu11k7q2944x_content_area_align','left'),(39775,827,'_group_xd5cu11k7q2944x_content_area_align','group_xd5cu11k7q2944x_field_5923225383899'),(39776,827,'group_xd5cu11k7q2944x_content_area_enable_padding','1'),(39777,827,'_group_xd5cu11k7q2944x_content_area_enable_padding','group_xd5cu11k7q2944x_field_5923225383901'),(39778,827,'group_xd5cu11k7q2944x_content_area_padding_top','20'),(39779,827,'_group_xd5cu11k7q2944x_content_area_padding_top','group_xd5cu11k7q2944x_field_5923225383902'),(39780,827,'group_xd5cu11k7q2944x_content_area_padding_bottom','20'),(39781,827,'_group_xd5cu11k7q2944x_content_area_padding_bottom','group_xd5cu11k7q2944x_field_5923225383903'),(39782,827,'group_xd5cu11k7q2944x_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39783,827,'_group_xd5cu11k7q2944x_content_area_background','group_xd5cu11k7q2944x_field_5923225383818'),(39784,827,'group_xd5cu11k7q2944x_content_area_animations_enabled','0'),(39785,827,'_group_xd5cu11k7q2944x_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39786,827,'group_xd5cu11k7q2944x_content_area_animations',''),(39787,827,'_group_xd5cu11k7q2944x_content_area_animations','group_xd5cu11k7q2944x_field_5b7ece258e4e8'),(39788,827,'group_ud1z6cp3we1stc6_ctas_ctas','489'),(39789,827,'_group_ud1z6cp3we1stc6_ctas_ctas','group_ud1z6cp3we1stc6_field_5620077701227'),(39790,827,'group_ud1z6cp3we1stc6_ctas_css_classes','cta'),(39791,827,'_group_ud1z6cp3we1stc6_ctas_css_classes','group_ud1z6cp3we1stc6_field_8795774705172'),(39792,827,'group_ud1z6cp3we1stc6_ctas_animations_enabled','0'),(39793,827,'_group_ud1z6cp3we1stc6_ctas_animations_enabled','field_5b7ece2e8e4e9'),(39794,827,'group_ud1z6cp3we1stc6_ctas_animations',''),(39795,827,'_group_ud1z6cp3we1stc6_ctas_animations','group_ud1z6cp3we1stc6_field_5b7ece258e4e8'),(39796,827,'group_xd5cu11k7q2944x_content_area_content_two','<ul>\r\n 	<li>Faucet, Toilet, and Fixture Repairs</li>\r\n 	<li>Water Heater Installation</li>\r\n 	<li>Gas Installation (Certified Columbia Gas Installer)</li>\r\n 	<li>Water and Sanitation Line Repair and Installation</li>\r\n</ul>'),(39797,827,'_group_xd5cu11k7q2944x_content_area_content_two','group_xd5cu11k7q2944x_field_9871214998600'),(39798,827,'group_rcq58c1snwtp4dg_content_area_columns','single'),(39799,827,'_group_rcq58c1snwtp4dg_content_area_columns','group_rcq58c1snwtp4dg_field_5923225383814'),(39800,827,'group_rcq58c1snwtp4dg_content_area_width','medium'),(39801,827,'_group_rcq58c1snwtp4dg_content_area_width','group_rcq58c1snwtp4dg_field_5923225383891'),(39802,827,'group_rcq58c1snwtp4dg_content_area_content_lead',''),(39803,827,'_group_rcq58c1snwtp4dg_content_area_content_lead','group_rcq58c1snwtp4dg_field_0079736876206'),(39804,827,'group_rcq58c1snwtp4dg_content_area_content','<h3>Get Efficient Plumbing Service for Your Building</h3>\r\nWe’re dedicated to serving residential and commercial customers like you with five-star service and honest answers to your plumbing issues. Anything we repair or install is handled to ensure long-term efficiency with a minimal chance of problems in the future. When your plumbing system and fixtures function properly, you’ll save on headaches from cold showers and overflowing toilets, as well as lower utility bills. Mann Plumbing &amp; Heating, LLC. is ready to help you get the best performance out of your home or building’s plumbing system. <a href=\"/contact-us/\">Give us a call today</a> to schedule service or a consultation for your residential or commercial structure. We look forward to working with you and earning a long-term relationship.'),(39805,827,'_group_rcq58c1snwtp4dg_content_area_content','group_rcq58c1snwtp4dg_field_5923228483815'),(39806,827,'group_rcq58c1snwtp4dg_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39807,827,'_group_rcq58c1snwtp4dg_content_area_button','group_rcq58c1snwtp4dg_field_5923225383819'),(39808,827,'group_rcq58c1snwtp4dg_content_area_css_classes',''),(39809,827,'_group_rcq58c1snwtp4dg_content_area_css_classes','group_rcq58c1snwtp4dg_field_4554768684187'),(39810,827,'group_rcq58c1snwtp4dg_content_area_align','centered'),(39811,827,'_group_rcq58c1snwtp4dg_content_area_align','group_rcq58c1snwtp4dg_field_5923225383899'),(39812,827,'group_rcq58c1snwtp4dg_content_area_enable_padding','1'),(39813,827,'_group_rcq58c1snwtp4dg_content_area_enable_padding','group_rcq58c1snwtp4dg_field_5923225383901'),(39814,827,'group_rcq58c1snwtp4dg_content_area_padding_top','20'),(39815,827,'_group_rcq58c1snwtp4dg_content_area_padding_top','group_rcq58c1snwtp4dg_field_5923225383902'),(39816,827,'group_rcq58c1snwtp4dg_content_area_padding_bottom','20'),(39817,827,'_group_rcq58c1snwtp4dg_content_area_padding_bottom','group_rcq58c1snwtp4dg_field_5923225383903'),(39818,827,'group_rcq58c1snwtp4dg_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39819,827,'_group_rcq58c1snwtp4dg_content_area_background','group_rcq58c1snwtp4dg_field_5923225383818'),(39820,827,'group_rcq58c1snwtp4dg_content_area_animations_enabled','0'),(39821,827,'_group_rcq58c1snwtp4dg_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39822,827,'group_rcq58c1snwtp4dg_content_area_animations',''),(39823,827,'_group_rcq58c1snwtp4dg_content_area_animations','group_rcq58c1snwtp4dg_field_5b7ece258e4e8'),(39824,828,'subheading',''),(39825,828,'_subheading','field_5976417756400'),(39826,828,'group_bll1v31dtnw9rl6_content_area_columns','single'),(39827,828,'_group_bll1v31dtnw9rl6_content_area_columns','group_bll1v31dtnw9rl6_field_5923225383814'),(39828,828,'group_bll1v31dtnw9rl6_content_area_width','medium'),(39829,828,'_group_bll1v31dtnw9rl6_content_area_width','group_bll1v31dtnw9rl6_field_5923225383891'),(39830,828,'group_bll1v31dtnw9rl6_content_area_content_lead',''),(39831,828,'_group_bll1v31dtnw9rl6_content_area_content_lead','group_bll1v31dtnw9rl6_field_0079736876206'),(39832,828,'group_bll1v31dtnw9rl6_content_area_content','<h2>Your Local Professionals for Excavation Services</h2>\r\nMann Plumbing &amp; Heating, LLC. offers customers near Shippensburg, Gettysburg, Waynesboro, Chambersburg, and beyond a wide array of solutions for their excavating needs. Home and business owners, buyers, and developers in Franklin County can get the drilling, separation, and inspection services they require from our team of seasoned experts in property excavation. Our services cover all sectors that customers need, spanning from commercial and residential to industrial and municipal. We’re ready to put our site work, design, and consultation services to work for you to find an efficient plan for your project. You can trust our 30 years of experience in plumbing, HVAC, and excavation.'),(39833,828,'_group_bll1v31dtnw9rl6_content_area_content','group_bll1v31dtnw9rl6_field_5923228483815'),(39834,828,'group_bll1v31dtnw9rl6_content_area_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(39835,828,'_group_bll1v31dtnw9rl6_content_area_button','group_bll1v31dtnw9rl6_field_5923225383819'),(39836,828,'group_bll1v31dtnw9rl6_content_area_css_classes',''),(39837,828,'_group_bll1v31dtnw9rl6_content_area_css_classes','group_bll1v31dtnw9rl6_field_4554768684187'),(39838,828,'group_bll1v31dtnw9rl6_content_area_align','centered'),(39839,828,'_group_bll1v31dtnw9rl6_content_area_align','group_bll1v31dtnw9rl6_field_5923225383899'),(39840,828,'group_bll1v31dtnw9rl6_content_area_enable_padding','1'),(39841,828,'_group_bll1v31dtnw9rl6_content_area_enable_padding','group_bll1v31dtnw9rl6_field_5923225383901'),(39842,828,'group_bll1v31dtnw9rl6_content_area_padding_top','20'),(39843,828,'_group_bll1v31dtnw9rl6_content_area_padding_top','group_bll1v31dtnw9rl6_field_5923225383902'),(39844,828,'group_bll1v31dtnw9rl6_content_area_padding_bottom','20'),(39845,828,'_group_bll1v31dtnw9rl6_content_area_padding_bottom','group_bll1v31dtnw9rl6_field_5923225383903'),(39846,828,'group_bll1v31dtnw9rl6_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39847,828,'_group_bll1v31dtnw9rl6_content_area_background','group_bll1v31dtnw9rl6_field_5923225383818'),(39848,828,'group_bll1v31dtnw9rl6_content_area_animations_enabled','0'),(39849,828,'_group_bll1v31dtnw9rl6_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39850,828,'group_bll1v31dtnw9rl6_content_area_animations',''),(39851,828,'_group_bll1v31dtnw9rl6_content_area_animations','group_bll1v31dtnw9rl6_field_5b7ece258e4e8'),(39852,828,'group_5zwsdbbzhgq9b3k_content_area_columns','image-left'),(39853,828,'_group_5zwsdbbzhgq9b3k_content_area_columns','group_5zwsdbbzhgq9b3k_field_5923225383814'),(39854,828,'group_5zwsdbbzhgq9b3k_content_area_content_lead',''),(39855,828,'_group_5zwsdbbzhgq9b3k_content_area_content_lead','group_5zwsdbbzhgq9b3k_field_0079736876206'),(39856,828,'group_5zwsdbbzhgq9b3k_content_area_content','<h3>Services for Residential &amp; Commercial Customers</h3>\r\nIf you have a project that involves new construction, work on an existing structure, or inspection of a home or building’s sewer and drain lines, Mann Plumbing &amp; Heating can help. Our team of talented professionals offers a variety of excavation services to provide solutions for residential and commercial projects.'),(39857,828,'_group_5zwsdbbzhgq9b3k_content_area_content','group_5zwsdbbzhgq9b3k_field_5923228483815'),(39858,828,'group_5zwsdbbzhgq9b3k_content_area_image','741'),(39859,828,'_group_5zwsdbbzhgq9b3k_content_area_image','group_5zwsdbbzhgq9b3k_field_5923229983816'),(39860,828,'group_5zwsdbbzhgq9b3k_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39861,828,'_group_5zwsdbbzhgq9b3k_content_area_button','group_5zwsdbbzhgq9b3k_field_5923225383819'),(39862,828,'group_5zwsdbbzhgq9b3k_content_area_css_classes',''),(39863,828,'_group_5zwsdbbzhgq9b3k_content_area_css_classes','group_5zwsdbbzhgq9b3k_field_4554768684187'),(39864,828,'group_5zwsdbbzhgq9b3k_content_area_align','left'),(39865,828,'_group_5zwsdbbzhgq9b3k_content_area_align','group_5zwsdbbzhgq9b3k_field_5923225383899'),(39866,828,'group_5zwsdbbzhgq9b3k_content_area_image_sizing','center'),(39867,828,'_group_5zwsdbbzhgq9b3k_content_area_image_sizing','group_5zwsdbbzhgq9b3k_field_5923225386557'),(39868,828,'group_5zwsdbbzhgq9b3k_content_area_image_width','full-width'),(39869,828,'_group_5zwsdbbzhgq9b3k_content_area_image_width','group_5zwsdbbzhgq9b3k_field_5923225381234'),(39870,828,'group_5zwsdbbzhgq9b3k_content_area_enable_padding','1'),(39871,828,'_group_5zwsdbbzhgq9b3k_content_area_enable_padding','group_5zwsdbbzhgq9b3k_field_5923225383901'),(39872,828,'group_5zwsdbbzhgq9b3k_content_area_padding_top','0'),(39873,828,'_group_5zwsdbbzhgq9b3k_content_area_padding_top','group_5zwsdbbzhgq9b3k_field_5923225383902'),(39874,828,'group_5zwsdbbzhgq9b3k_content_area_padding_bottom','0'),(39875,828,'_group_5zwsdbbzhgq9b3k_content_area_padding_bottom','group_5zwsdbbzhgq9b3k_field_5923225383903'),(39876,828,'group_5zwsdbbzhgq9b3k_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39877,828,'_group_5zwsdbbzhgq9b3k_content_area_background','group_5zwsdbbzhgq9b3k_field_5923225383818'),(39878,828,'group_5zwsdbbzhgq9b3k_content_area_animations_enabled','0'),(39879,828,'_group_5zwsdbbzhgq9b3k_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39880,828,'group_5zwsdbbzhgq9b3k_content_area_animations',''),(39881,828,'_group_5zwsdbbzhgq9b3k_content_area_animations','group_5zwsdbbzhgq9b3k_field_5b7ece258e4e8'),(39882,828,'group_6tb9wboffn47hyy_content_area_columns','two-column'),(39883,828,'_group_6tb9wboffn47hyy_content_area_columns','group_6tb9wboffn47hyy_field_5923225383814'),(39884,828,'group_6tb9wboffn47hyy_content_area_width','medium'),(39885,828,'_group_6tb9wboffn47hyy_content_area_width','group_zznmx4e2lzf8s9h_field_5923225383891'),(39886,828,'group_6tb9wboffn47hyy_content_area_content_lead',''),(39887,828,'_group_6tb9wboffn47hyy_content_area_content_lead','group_6tb9wboffn47hyy_field_0079736876206'),(39888,828,'group_6tb9wboffn47hyy_content_area_content','<h5>Horizontal Directional Drilling</h5>\r\nThis form of drilling allows contractors to install power lines, sewer and water mains, and pipelines without digging trenches into the property. We take care to keep all drilling as efficient as possible with minimal disturbance to any surface structures or utility lines and pipes already in place.\r\n<h5>Sewer Scopes</h5>\r\nA sewer scope is a video inspection of your sewer line. It leads from the house or building to the connection to the septic tank or HOA tap. The information that sewer scopes collect is highly beneficial to home and property buyers, which is why many inspections include a sewer scope as part of their property assessment.'),(39889,828,'_group_6tb9wboffn47hyy_content_area_content','group_6tb9wboffn47hyy_field_5923228483815'),(39890,828,'group_6tb9wboffn47hyy_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39891,828,'_group_6tb9wboffn47hyy_content_area_button','group_6tb9wboffn47hyy_field_5923225383819'),(39892,828,'group_6tb9wboffn47hyy_content_area_css_classes','padding-fix'),(39893,828,'_group_6tb9wboffn47hyy_content_area_css_classes','group_6tb9wboffn47hyy_field_4554768684187'),(39894,828,'group_6tb9wboffn47hyy_content_area_align','left'),(39895,828,'_group_6tb9wboffn47hyy_content_area_align','group_6tb9wboffn47hyy_field_5923225383899'),(39896,828,'group_6tb9wboffn47hyy_content_area_enable_padding','1'),(39897,828,'_group_6tb9wboffn47hyy_content_area_enable_padding','group_6tb9wboffn47hyy_field_5923225383901'),(39898,828,'group_6tb9wboffn47hyy_content_area_padding_top','20'),(39899,828,'_group_6tb9wboffn47hyy_content_area_padding_top','group_6tb9wboffn47hyy_field_5923225383902'),(39900,828,'group_6tb9wboffn47hyy_content_area_padding_bottom','20'),(39901,828,'_group_6tb9wboffn47hyy_content_area_padding_bottom','group_6tb9wboffn47hyy_field_5923225383903'),(39902,828,'group_6tb9wboffn47hyy_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39903,828,'_group_6tb9wboffn47hyy_content_area_background','group_6tb9wboffn47hyy_field_5923225383818'),(39904,828,'group_6tb9wboffn47hyy_content_area_animations_enabled','0'),(39905,828,'_group_6tb9wboffn47hyy_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39906,828,'group_6tb9wboffn47hyy_content_area_animations',''),(39907,828,'_group_6tb9wboffn47hyy_content_area_animations','group_6tb9wboffn47hyy_field_5b7ece258e4e8'),(39908,828,'group_57f36i17ugcs5l4_ctas_ctas','489'),(39909,828,'_group_57f36i17ugcs5l4_ctas_ctas','group_57f36i17ugcs5l4_field_5620077701227'),(39910,828,'group_57f36i17ugcs5l4_ctas_css_classes','cta'),(39911,828,'_group_57f36i17ugcs5l4_ctas_css_classes','group_57f36i17ugcs5l4_field_8795774705172'),(39912,828,'group_57f36i17ugcs5l4_ctas_animations_enabled','0'),(39913,828,'_group_57f36i17ugcs5l4_ctas_animations_enabled','field_5b7ece2e8e4e9'),(39914,828,'group_57f36i17ugcs5l4_ctas_animations',''),(39915,828,'_group_57f36i17ugcs5l4_ctas_animations','group_57f36i17ugcs5l4_field_5b7ece258e4e8'),(39916,828,'group_br5n2isiewhel27_content_area_columns','single'),(39917,828,'_group_br5n2isiewhel27_content_area_columns','group_br5n2isiewhel27_field_5923225383814'),(39918,828,'group_br5n2isiewhel27_content_area_width','medium'),(39919,828,'_group_br5n2isiewhel27_content_area_width','group_br5n2isiewhel27_field_5923225383891'),(39920,828,'group_br5n2isiewhel27_content_area_content_lead',''),(39921,828,'_group_br5n2isiewhel27_content_area_content_lead','group_br5n2isiewhel27_field_0079736876206'),(39922,828,'group_br5n2isiewhel27_content_area_content','<h3>Call Us for Projects Near You</h3>\r\nIf your project calls for excavation services to complete the necessary utility line installations or inspections of sewer and drain lines, we’re happy to help you. Mann Plumbing &amp; Heating, LLC. services residential and commercial customers throughout South-Central Pennsylvania, including near Chambersburg, Greencastle, Waynesboro, Shippensburg, Gettysburg, and St. Thomas. If you’re in one of the towns in between these locations, we also provide professional service for you. Our team is ready to handle your excavation needs, so <a href=\"/contact-us/\">give us a call today</a> with any questions or to schedule service for your project.'),(39923,828,'_group_br5n2isiewhel27_content_area_content','group_br5n2isiewhel27_field_5923228483815'),(39924,828,'group_br5n2isiewhel27_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(39925,828,'_group_br5n2isiewhel27_content_area_button','group_br5n2isiewhel27_field_5923225383819'),(39926,828,'group_br5n2isiewhel27_content_area_css_classes',''),(39927,828,'_group_br5n2isiewhel27_content_area_css_classes','group_br5n2isiewhel27_field_4554768684187'),(39928,828,'group_br5n2isiewhel27_content_area_align','centered'),(39929,828,'_group_br5n2isiewhel27_content_area_align','group_br5n2isiewhel27_field_5923225383899'),(39930,828,'group_br5n2isiewhel27_content_area_enable_padding','1'),(39931,828,'_group_br5n2isiewhel27_content_area_enable_padding','group_br5n2isiewhel27_field_5923225383901'),(39932,828,'group_br5n2isiewhel27_content_area_padding_top','20'),(39933,828,'_group_br5n2isiewhel27_content_area_padding_top','group_br5n2isiewhel27_field_5923225383902'),(39934,828,'group_br5n2isiewhel27_content_area_padding_bottom','20'),(39935,828,'_group_br5n2isiewhel27_content_area_padding_bottom','group_br5n2isiewhel27_field_5923225383903'),(39936,828,'group_br5n2isiewhel27_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#f7f7f7\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(39937,828,'_group_br5n2isiewhel27_content_area_background','group_br5n2isiewhel27_field_5923225383818'),(39938,828,'group_br5n2isiewhel27_content_area_animations_enabled','0'),(39939,828,'_group_br5n2isiewhel27_content_area_animations_enabled','field_5b7ece2e8e4e9'),(39940,828,'group_br5n2isiewhel27_content_area_animations',''),(39941,828,'_group_br5n2isiewhel27_content_area_animations','group_br5n2isiewhel27_field_5b7ece258e4e8'),(39942,828,'group_6tb9wboffn47hyy_content_area_content_two','<h5>Party Sewer Line Separation</h5>\r\nCreating horizontal and vertical separations for multiple sewer lines may be necessary for your property, especially when the area has existing utilities already in place. We handle sewer line separations with the utmost consideration for the existing standards for waterworks.\r\n<h5>Video Inspections</h5>\r\nUsing video inspection, we can more easily identify any current or potential issues with a sewer or drain line. Pipelines are susceptible to many problems, including corrosion, grease buildup, damage from roots, and obstructions such as paper towels and baby wipes. Once we identify the issue, our team can formulate the best solution.'),(39943,828,'_group_6tb9wboffn47hyy_content_area_content_two','group_6tb9wboffn47hyy_field_9871214998600'),(39944,829,'subheading',''),(39945,829,'_subheading','field_5976417756400'),(39946,829,'group_yzfih4f7wihjncf_testimonials_content','<h2>Customer Reviews</h2>'),(39947,829,'_group_yzfih4f7wihjncf_testimonials_content','group_yzfih4f7wihjncf_field_59232e687d160'),(39948,829,'group_yzfih4f7wihjncf_testimonials_testimonials_0_name','Katherine Simpson'),(39949,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_name','field_59232e937d163'),(39950,829,'group_yzfih4f7wihjncf_testimonials_testimonials_0_date',''),(39951,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_date','field_59232e967d164'),(39952,829,'group_yzfih4f7wihjncf_testimonials_testimonials_0_content','Had a new HVAC system installed since the system installed was inadequate. Sales service was excellent and installation was top notch. Now that I can test the efficiency of the heating system it is a vast improvement over the contractor-grade equipment that was existent.'),(39953,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_content','field_59232e817d162'),(39954,829,'group_yzfih4f7wihjncf_testimonials_testimonials_0_star_rating','5'),(39955,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_star_rating','field_59232e817d166'),(39956,829,'group_yzfih4f7wihjncf_testimonials_testimonials_0_avatar',''),(39957,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_0_avatar','field_59232e817d165'),(39958,829,'group_yzfih4f7wihjncf_testimonials_testimonials_1_name','Nancy Strite'),(39959,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_name','field_59232e937d163'),(39960,829,'group_yzfih4f7wihjncf_testimonials_testimonials_1_date',''),(39961,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_date','field_59232e967d164'),(39962,829,'group_yzfih4f7wihjncf_testimonials_testimonials_1_content','I\'ve used Mann for several years now.  They had my business when my furnace failed on a frigid Sunday and Brad came out in about half an hour and helped me. I\'ve had them for regular maintenance on my system since then, and they recently installed a new system after I relocated.  Their promptness and professionalism is not always found in some other businesses these days, so it\'s good to find people like this.'),(39963,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_content','field_59232e817d162'),(39964,829,'group_yzfih4f7wihjncf_testimonials_testimonials_1_star_rating','5'),(39965,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_star_rating','field_59232e817d166'),(39966,829,'group_yzfih4f7wihjncf_testimonials_testimonials_1_avatar',''),(39967,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_1_avatar','field_59232e817d165'),(39968,829,'group_yzfih4f7wihjncf_testimonials_testimonials_2_name','Stephen C'),(39969,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_name','field_59232e937d163'),(39970,829,'group_yzfih4f7wihjncf_testimonials_testimonials_2_date',''),(39971,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_date','field_59232e967d164'),(39972,829,'group_yzfih4f7wihjncf_testimonials_testimonials_2_content','Amber is amazing. They do great work for a reasonable price with awesome customer service.\r\n'),(39973,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_content','field_59232e817d162'),(39974,829,'group_yzfih4f7wihjncf_testimonials_testimonials_2_star_rating','5'),(39975,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_star_rating','field_59232e817d166'),(39976,829,'group_yzfih4f7wihjncf_testimonials_testimonials_2_avatar',''),(39977,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_2_avatar','field_59232e817d165'),(39978,829,'group_yzfih4f7wihjncf_testimonials_testimonials_3_name','W T'),(39979,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_name','field_59232e937d163'),(39980,829,'group_yzfih4f7wihjncf_testimonials_testimonials_3_date',''),(39981,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_date','field_59232e967d164'),(39982,829,'group_yzfih4f7wihjncf_testimonials_testimonials_3_content','Great service! Spoke to Chandler who was able to answer all of my questions and truly seemed to care!'),(39983,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_content','field_59232e817d162'),(39984,829,'group_yzfih4f7wihjncf_testimonials_testimonials_3_star_rating','5'),(39985,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_star_rating','field_59232e817d166'),(39986,829,'group_yzfih4f7wihjncf_testimonials_testimonials_3_avatar',''),(39987,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_3_avatar','field_59232e817d165'),(39988,829,'group_yzfih4f7wihjncf_testimonials_testimonials_4_name','Thomas Wood'),(39989,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_name','field_59232e937d163'),(39990,829,'group_yzfih4f7wihjncf_testimonials_testimonials_4_date',''),(39991,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_date','field_59232e967d164'),(39992,829,'group_yzfih4f7wihjncf_testimonials_testimonials_4_content','I\'ve had Jeff come out twice now. Once for a repair and once for maintenance. He is prompt, knowledgeable, and very personable. I would highly recommend Jeff and Mann Heating and Plumbing to anyone in need of service or maintenance of their heating and cooling systems.'),(39993,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_content','field_59232e817d162'),(39994,829,'group_yzfih4f7wihjncf_testimonials_testimonials_4_star_rating','5'),(39995,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_star_rating','field_59232e817d166'),(39996,829,'group_yzfih4f7wihjncf_testimonials_testimonials_4_avatar',''),(39997,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_4_avatar','field_59232e817d165'),(39998,829,'group_yzfih4f7wihjncf_testimonials_testimonials_5_name','James M. Thomas'),(39999,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_name','field_59232e937d163'),(40000,829,'group_yzfih4f7wihjncf_testimonials_testimonials_5_date',''),(40001,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_date','field_59232e967d164'),(40002,829,'group_yzfih4f7wihjncf_testimonials_testimonials_5_content','Chandler at Mann Plumbing reached out to us regarding an issue that came from a sewer line repair.  He quickly addressed and corrected the issue and provided more help with a new problem.  Customer service!'),(40003,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_content','field_59232e817d162'),(40004,829,'group_yzfih4f7wihjncf_testimonials_testimonials_5_star_rating','5'),(40005,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_star_rating','field_59232e817d166'),(40006,829,'group_yzfih4f7wihjncf_testimonials_testimonials_5_avatar',''),(40007,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_5_avatar','field_59232e817d165'),(40008,829,'group_yzfih4f7wihjncf_testimonials_testimonials_6_name','Stephen Lepak'),(40009,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_name','field_59232e937d163'),(40010,829,'group_yzfih4f7wihjncf_testimonials_testimonials_6_date',''),(40011,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_date','field_59232e967d164'),(40012,829,'group_yzfih4f7wihjncf_testimonials_testimonials_6_content','They came back and fixed an issue with my strainer basket leaking. They originally fixed it 9 months ago. They came out with no questions asked and took care of the problem in less than 10 mins. They will forever have my business because they have an excellent business model.'),(40013,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_content','field_59232e817d162'),(40014,829,'group_yzfih4f7wihjncf_testimonials_testimonials_6_star_rating','5'),(40015,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_star_rating','field_59232e817d166'),(40016,829,'group_yzfih4f7wihjncf_testimonials_testimonials_6_avatar',''),(40017,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_6_avatar','field_59232e817d165'),(40018,829,'group_yzfih4f7wihjncf_testimonials_testimonials_7_name','Alexzandra Ash'),(40019,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_name','field_59232e937d163'),(40020,829,'group_yzfih4f7wihjncf_testimonials_testimonials_7_date',''),(40021,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_date','field_59232e967d164'),(40022,829,'group_yzfih4f7wihjncf_testimonials_testimonials_7_content','I started using Mann Plumbing 2 years ago when my central air stopped running on a very hot 4th of July.  A service tech came to my home immediately, and had my air fixed the same day.  Since then,  I have used them several times for plumbing problems and for yearly maintenance on my heating unit.  Every issue I\'ve had, they\'ve fixed at a reasonable cost and in a short amount of time.   Also, I can\'t say enough good things about two of Mann\'s Service Techs, Jeff and Shane.  Both men are prompt, professional, knowledgeable, courteous and tidy.  As long as Mann Plumbing and Heating is around, I can\'t imagine using any other company.'),(40023,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_content','field_59232e817d162'),(40024,829,'group_yzfih4f7wihjncf_testimonials_testimonials_7_star_rating','5'),(40025,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_star_rating','field_59232e817d166'),(40026,829,'group_yzfih4f7wihjncf_testimonials_testimonials_7_avatar',''),(40027,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_7_avatar','field_59232e817d165'),(40028,829,'group_yzfih4f7wihjncf_testimonials_testimonials_8_name','Chris Cassner'),(40029,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_name','field_59232e937d163'),(40030,829,'group_yzfih4f7wihjncf_testimonials_testimonials_8_date',''),(40031,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_date','field_59232e967d164'),(40032,829,'group_yzfih4f7wihjncf_testimonials_testimonials_8_content','Always professional, and the work is excellent.  When it\'s an emergency they are always quick to respond.  I have used them for my rental properties for years and I\'ve never been disappointed.'),(40033,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_content','field_59232e817d162'),(40034,829,'group_yzfih4f7wihjncf_testimonials_testimonials_8_star_rating',''),(40035,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_star_rating','field_59232e817d166'),(40036,829,'group_yzfih4f7wihjncf_testimonials_testimonials_8_avatar',''),(40037,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_8_avatar','field_59232e817d165'),(40038,829,'group_yzfih4f7wihjncf_testimonials_testimonials_9_name','Bernard McClure'),(40039,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_name','field_59232e937d163'),(40040,829,'group_yzfih4f7wihjncf_testimonials_testimonials_9_date',''),(40041,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_date','field_59232e967d164'),(40042,829,'group_yzfih4f7wihjncf_testimonials_testimonials_9_content','Integrity, the most important word I can say. Very few companies work this way anymore. It\'s all about up-selling their products and not about doing the job right. Mann came in after dealing with Sandwell HVAC and provided us with excellent service. They were very professional and courteous. The team replaced our whole heating and cooling system in 3 days. First night the performance was noticeably improved. If you are looking for a company you can trust go no further. They have our vote.'),(40043,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_content','field_59232e817d162'),(40044,829,'group_yzfih4f7wihjncf_testimonials_testimonials_9_star_rating','5'),(40045,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_star_rating','field_59232e817d166'),(40046,829,'group_yzfih4f7wihjncf_testimonials_testimonials_9_avatar',''),(40047,829,'_group_yzfih4f7wihjncf_testimonials_testimonials_9_avatar','field_59232e817d165'),(40048,829,'group_yzfih4f7wihjncf_testimonials_testimonials','10'),(40049,829,'_group_yzfih4f7wihjncf_testimonials_testimonials','group_yzfih4f7wihjncf_field_59232e6d7d161'),(40050,829,'group_yzfih4f7wihjncf_testimonials_button','a:3:{s:4:\"text\";s:12:\"More Reviews\";s:3:\"url\";s:214:\"https://www.google.com/search?q=Mann+Plumbing+and+Heating%2C+LLC&oq=Mann+Plumbing+and+Heating%2C+LLC&aqs=chrome..69i57j69i59j0j69i60l3.477j0j4&sourceid=chrome&ie=UTF-8#lrd=0x89c9a1bbae80bfbd:0x3850750a850579f0,1,,,\";s:8:\"external\";s:1:\"1\";}'),(40051,829,'_group_yzfih4f7wihjncf_testimonials_button','group_yzfih4f7wihjncf_field_59232e687d123'),(40052,829,'group_yzfih4f7wihjncf_testimonials_css_classes',''),(40053,829,'_group_yzfih4f7wihjncf_testimonials_css_classes','group_yzfih4f7wihjncf_field_4310619693162'),(40054,829,'group_yzfih4f7wihjncf_testimonials_enable_content_limit','0'),(40055,829,'_group_yzfih4f7wihjncf_testimonials_enable_content_limit','group_yzfih4f7wihjncf_field_34r5654rfg45'),(40056,829,'group_yzfih4f7wihjncf_testimonials_content_limit_range','120'),(40057,829,'_group_yzfih4f7wihjncf_testimonials_content_limit_range','group_yzfih4f7wihjncf_field_847h9938h3k39'),(40058,829,'group_yzfih4f7wihjncf_testimonials_slides_to_show','0'),(40059,829,'_group_yzfih4f7wihjncf_testimonials_slides_to_show','group_yzfih4f7wihjncf_field_8401674674123'),(40060,829,'group_yzfih4f7wihjncf_testimonials_arrow_placement','sides'),(40061,829,'_group_yzfih4f7wihjncf_testimonials_arrow_placement','group_yzfih4f7wihjncf_field_124793247623'),(40062,829,'group_yzfih4f7wihjncf_testimonials_arrow_color','default'),(40063,829,'_group_yzfih4f7wihjncf_testimonials_arrow_color','group_yzfih4f7wihjncf_field_654793247766'),(40064,829,'group_yzfih4f7wihjncf_testimonials_enable_arrow_background','default'),(40065,829,'_group_yzfih4f7wihjncf_testimonials_enable_arrow_background','group_yzfih4f7wihjncf_field_60232e6872399'),(40066,829,'group_yzfih4f7wihjncf_testimonials_arrow_background_color',''),(40067,829,'_group_yzfih4f7wihjncf_testimonials_arrow_background_color','group_yzfih4f7wihjncf_field_591b6d8fe1000'),(40068,829,'group_yzfih4f7wihjncf_testimonials_enable_padding','1'),(40069,829,'_group_yzfih4f7wihjncf_testimonials_enable_padding','group_yzfih4f7wihjncf_field_59232e687d188'),(40070,829,'group_yzfih4f7wihjncf_testimonials_padding_top','50'),(40071,829,'_group_yzfih4f7wihjncf_testimonials_padding_top','group_yzfih4f7wihjncf_field_59232e687d189'),(40072,829,'group_yzfih4f7wihjncf_testimonials_padding_bottom','50'),(40073,829,'_group_yzfih4f7wihjncf_testimonials_padding_bottom','group_yzfih4f7wihjncf_field_59232e687d187'),(40074,829,'group_yzfih4f7wihjncf_testimonials_button_alignment','left'),(40075,829,'_group_yzfih4f7wihjncf_testimonials_button_alignment','group_yzfih4f7wihjncf_field_8591648772644'),(40076,829,'group_yzfih4f7wihjncf_testimonials_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(40077,829,'_group_yzfih4f7wihjncf_testimonials_background','group_yzfih4f7wihjncf_field_59232e687d167'),(40078,829,'group_yzfih4f7wihjncf_testimonials_animations_enabled','1'),(40079,829,'_group_yzfih4f7wihjncf_testimonials_animations_enabled','field_5b7ece2e8e4e9'),(40080,829,'group_yzfih4f7wihjncf_testimonials_animations',''),(40081,829,'_group_yzfih4f7wihjncf_testimonials_animations','group_yzfih4f7wihjncf_field_5b7ece258e4e8'),(40082,829,'group_uxoj4z6axzyhvze_ctas_ctas','489'),(40083,829,'_group_uxoj4z6axzyhvze_ctas_ctas','group_uxoj4z6axzyhvze_field_5620077701227'),(40084,829,'group_uxoj4z6axzyhvze_ctas_css_classes','cta'),(40085,829,'_group_uxoj4z6axzyhvze_ctas_css_classes','group_uxoj4z6axzyhvze_field_8795774705172'),(40086,829,'group_uxoj4z6axzyhvze_ctas_animations_enabled','0'),(40087,829,'_group_uxoj4z6axzyhvze_ctas_animations_enabled','field_5b7ece2e8e4e9'),(40088,829,'group_uxoj4z6axzyhvze_ctas_animations',''),(40089,829,'_group_uxoj4z6axzyhvze_ctas_animations','group_uxoj4z6axzyhvze_field_5b7ece258e4e8'),(40090,829,'group_yzfih4f7wihjncf_testimonials_animations_type','fade'),(40091,829,'_group_yzfih4f7wihjncf_testimonials_animations_type','field_5b7ece638e4ea'),(40092,829,'group_yzfih4f7wihjncf_testimonials_animations_speed','1200'),(40093,829,'_group_yzfih4f7wihjncf_testimonials_animations_speed','field_5b7ed501a7f4a'),(40094,829,'group_yzfih4f7wihjncf_testimonials_animations_offset','-100'),(40095,829,'_group_yzfih4f7wihjncf_testimonials_animations_offset','field_5b7ed532a7f4b'),(40096,829,'group_yzfih4f7wihjncf_testimonials_animations_mobile','1'),(40097,829,'_group_yzfih4f7wihjncf_testimonials_animations_mobile','field_5b7ed5cf62c6b'),(40098,829,'group_yzfih4f7wihjncf_testimonials_animations_run_once','1'),(40099,829,'_group_yzfih4f7wihjncf_testimonials_animations_run_once','field_5b7ed60862c6c'),(40100,830,'group_0yx3acydmccnw9z_hero_panel','1'),(40101,830,'_group_0yx3acydmccnw9z_hero_panel','group_0yx3acydmccnw9z_field_591dea5128ac1'),(40102,830,'group_0yx3acydmccnw9z_hero_height','0'),(40103,830,'_group_0yx3acydmccnw9z_hero_height','group_0yx3acydmccnw9z_field_591dea5128ac0'),(40104,830,'group_0yx3acydmccnw9z_hero_autoplay','off'),(40105,830,'_group_0yx3acydmccnw9z_hero_autoplay','group_0yx3acydmccnw9z_field_591dea5128ac2'),(40106,830,'group_jay33uzo882n74g_gallery_content','<h3 style=\"text-align: center;\">Call Us for Exceptional Plumbing &amp; HVAC Service</h3>\r\n<p style=\"text-align: center;\">Our team is available to provide service throughout South-Central Pennsylvania, including near Chambersburg, Greencastle, Waynesboro, Shippensburg, Gettysburg, St. Thomas, and all the small towns in between. Our extensive training and experience ensure your home or building’s plumbing and heating issues get rectified with the utmost consideration for the best possible long-term results. If you have questions or need plumbing, HVAC, or excavation repairs or replacement for air conditioning, give us a call today to schedule service.</p>'),(40107,830,'_group_jay33uzo882n74g_gallery_content','group_jay33uzo882n74g_field_591ca1f42e821'),(40108,830,'group_jay33uzo882n74g_gallery_images','a:4:{i:0;s:3:\"561\";i:1;s:3:\"563\";i:2;s:3:\"560\";i:3;s:3:\"562\";}'),(40109,830,'_group_jay33uzo882n74g_gallery_images','group_jay33uzo882n74g_field_591ca1f42e820'),(40110,830,'group_jay33uzo882n74g_gallery_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#ffffff\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(40111,830,'_group_jay33uzo882n74g_gallery_background','group_jay33uzo882n74g_field_591ca1f42e829'),(40112,830,'group_zi794n2mdkggmlv_services_content','<h3 style=\"text-align: center;\">Our Versatile Services for Your Home or Business</h3>\r\n<p style=\"text-align: center;\">Mann Plumbing &amp; Heating, LLC. has ample experience helping residential and commercial customers like you with a wide array of issues with your plumbing, HVAC, and excavation needs. Our specialties include the following:</p>'),(40113,830,'_group_zi794n2mdkggmlv_services_content','group_zi794n2mdkggmlv_field_35a935e59d870'),(40114,830,'group_zi794n2mdkggmlv_services_services','4'),(40115,830,'_group_zi794n2mdkggmlv_services_services','group_zi794n2mdkggmlv_field_35a935e59d871'),(40116,830,'group_zi794n2mdkggmlv_services_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(40117,830,'_group_zi794n2mdkggmlv_services_button','group_zi794n2mdkggmlv_field_35a935e59da88'),(40118,830,'group_zi794n2mdkggmlv_services_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#f1f1f1\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:6:\"repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:4:\"auto\";}'),(40119,830,'_group_zi794n2mdkggmlv_services_background','group_zi794n2mdkggmlv_field_35a935e59da75'),(40120,830,'group_7omya7l9yrr0mu0_testimonials_content','<h3 style=\"text-align: center;\">Reviews</h3>'),(40121,830,'_group_7omya7l9yrr0mu0_testimonials_content','group_7omya7l9yrr0mu0_field_59232e687d160'),(40122,830,'group_7omya7l9yrr0mu0_testimonials_testimonials','5'),(40123,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials','group_7omya7l9yrr0mu0_field_59232e6d7d161'),(40124,830,'group_7omya7l9yrr0mu0_testimonials_background','a:6:{s:5:\"image\";s:3:\"532\";s:16:\"background_color\";s:7:\"#252525\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(40125,830,'_group_7omya7l9yrr0mu0_testimonials_background','group_7omya7l9yrr0mu0_field_59232e687d167'),(40126,830,'group_7omya7l9yrr0mu0_testimonials_autoplay','off'),(40127,830,'_group_7omya7l9yrr0mu0_testimonials_autoplay','group_7omya7l9yrr0mu0_field_59232e687d168'),(40128,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_name','Stephen C'),(40129,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_name','field_59232e937d163'),(40130,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_date',''),(40131,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_date','field_59232e967d164'),(40132,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_content','Amber is amazing. They do great work for a reasonable price with awesome customer service.'),(40133,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_content','field_59232e817d162'),(40134,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_star_rating','5'),(40135,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_star_rating','field_59232e817d166'),(40136,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_0_avatar',''),(40137,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_0_avatar','field_59232e817d165'),(40138,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_name','James Foltz'),(40139,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_name','field_59232e937d163'),(40140,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_date',''),(40141,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_date','field_59232e967d164'),(40142,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_content','Timely, professional, and reasonable cost. After hours emergency service is excellent.'),(40143,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_content','field_59232e817d162'),(40144,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_star_rating','5'),(40145,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_star_rating','field_59232e817d166'),(40146,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_1_avatar',''),(40147,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_1_avatar','field_59232e817d165'),(40148,830,'group_0yx3acydmccnw9z_hero_panel_0_content','<h1>Peace of Mind for Your Plumbing &amp; Heating</h1>'),(40149,830,'_group_0yx3acydmccnw9z_hero_panel_0_content','field_591dea5128ac6'),(40150,830,'group_0yx3acydmccnw9z_hero_panel_0_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(40151,830,'_group_0yx3acydmccnw9z_hero_panel_0_button','field_591dea5128ac7'),(40152,830,'group_0yx3acydmccnw9z_hero_panel_0_align','center'),(40153,830,'_group_0yx3acydmccnw9z_hero_panel_0_align','field_591dea5128ac8'),(40154,830,'group_0yx3acydmccnw9z_hero_panel_0_background','a:9:{s:5:\"image\";s:3:\"537\";s:12:\"mobile_image\";s:3:\"536\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:8:\"parallax\";}'),(40155,830,'_group_0yx3acydmccnw9z_hero_panel_0_background','field_591dea5128ac9'),(40156,830,'group_7omya7l9yrr0mu0_testimonials_slides_to_show','2'),(40157,830,'_group_7omya7l9yrr0mu0_testimonials_slides_to_show','group_7omya7l9yrr0mu0_field_8401674674123'),(40158,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_name','W T'),(40159,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_name','field_59232e937d163'),(40160,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_date',''),(40161,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_date','field_59232e967d164'),(40162,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_content','Great service! Spoke to Chandler who was able to answer all of my questions and truly seemed to care!'),(40163,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_content','field_59232e817d162'),(40164,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_star_rating','5'),(40165,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_star_rating','field_59232e817d166'),(40166,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_2_avatar',''),(40167,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_2_avatar','field_59232e817d165'),(40168,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_name','Robbie Cameron'),(40169,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_name','field_59232e937d163'),(40170,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_date',''),(40171,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_date','field_59232e967d164'),(40172,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_content','Very professional.  Get jobs done quick. Customer service is outstanding. Would recomend these guys to anyone.'),(40173,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_content','field_59232e817d162'),(40174,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_star_rating','5'),(40175,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_star_rating','field_59232e817d166'),(40176,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_3_avatar',''),(40177,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_3_avatar','field_59232e817d165'),(40178,830,'group_zi794n2mdkggmlv_services_services_0_image','555'),(40179,830,'_group_zi794n2mdkggmlv_services_services_0_image','field_35a935e59da73'),(40180,830,'group_zi794n2mdkggmlv_services_services_0_name','HVAC'),(40181,830,'_group_zi794n2mdkggmlv_services_services_0_name','field_35a935e59da72'),(40182,830,'group_zi794n2mdkggmlv_services_services_0_content','Our dependable HVAC services apply to your heating and air conditioning systems, including heat pumps, electric and gas furnaces, and hot water heaters. We’ll repair or replace your system so that you stay comfortable year-round.'),(40183,830,'_group_zi794n2mdkggmlv_services_services_0_content','field_35a935e59da74'),(40184,830,'group_zi794n2mdkggmlv_services_services_0_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(40185,830,'_group_zi794n2mdkggmlv_services_services_0_button','field_35a935e59da76'),(40186,830,'group_zi794n2mdkggmlv_services_services_1_image','554'),(40187,830,'_group_zi794n2mdkggmlv_services_services_1_image','field_35a935e59da73'),(40188,830,'group_zi794n2mdkggmlv_services_services_1_name','Design / Build'),(40189,830,'_group_zi794n2mdkggmlv_services_services_1_name','field_35a935e59da72'),(40190,830,'group_zi794n2mdkggmlv_services_services_1_content','We plan out and design heating and air conditioning systems, as well as ductwork. When you have undersized or leaky ducts, or it\'s no longer cost-effective to repair your heating or cooling system, we’ll build and install systems for your long-term comfort.'),(40191,830,'_group_zi794n2mdkggmlv_services_services_1_content','field_35a935e59da74'),(40192,830,'group_zi794n2mdkggmlv_services_services_1_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(40193,830,'_group_zi794n2mdkggmlv_services_services_1_button','field_35a935e59da76'),(40194,830,'group_zi794n2mdkggmlv_services_services_2_image','556'),(40195,830,'_group_zi794n2mdkggmlv_services_services_2_image','field_35a935e59da73'),(40196,830,'group_zi794n2mdkggmlv_services_services_2_name','Plumbing'),(40197,830,'_group_zi794n2mdkggmlv_services_services_2_name','field_35a935e59da72'),(40198,830,'group_zi794n2mdkggmlv_services_services_2_content','Whether you need simple repairs to your faucets or toilets, or you need to install water or gas lines, we’re certified and trained to handle your plumbing needs. Our comprehensive knowledge and skills ensure better performance and energy savings.'),(40199,830,'_group_zi794n2mdkggmlv_services_services_2_content','field_35a935e59da74'),(40200,830,'group_zi794n2mdkggmlv_services_services_2_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(40201,830,'_group_zi794n2mdkggmlv_services_services_2_button','field_35a935e59da76'),(40202,830,'group_chcf29yih8zz3j3_content_area_columns','single'),(40203,830,'_group_chcf29yih8zz3j3_content_area_columns','group_chcf29yih8zz3j3_field_5923225383814'),(40204,830,'group_chcf29yih8zz3j3_content_area_width','medium'),(40205,830,'_group_chcf29yih8zz3j3_content_area_width','group_chcf29yih8zz3j3_field_5923225383891'),(40206,830,'group_chcf29yih8zz3j3_content_area_content','<h2>Plumbing &amp; Heating Experts for Chambersburg, PA &amp; Beyond</h2>\r\nWhy do more home and business owners in South Central Pennsylvania choose Mann Plumbing & Heating, LLC.? We’re a trustworthy company that provides solid ground for customers to enjoy comfort, system performance, and savings in Chambersburg, PA and beyond. Our highly skilled technicians maintain a track record of consistent quality for heating, cooling, and plumbing solutions. Residents and businesses can count on us for Trane<sup>®</sup> heating and air conditioning products and their reliable quality and optimal performance. Trane<sup>®</sup> products also ensure you get value for your money and peace of mind that your home or building stays comfortable. We have more than 30 years of expertise in plumbing that’s unmatched in the area. Our mission is to earn your trust and loyalty by giving you honest answers, friendly and personal service, and lasting results on every project. Bring your plumbing and HVAC needs to Mann Plumbing & Heating, LLC. to raise your comfort and convenience and lower your costs.'),(40207,830,'_group_chcf29yih8zz3j3_content_area_content','group_chcf29yih8zz3j3_field_5923228483815'),(40208,830,'group_chcf29yih8zz3j3_content_area_button','a:3:{s:4:\"text\";s:8:\"About Us\";s:3:\"url\";s:10:\"/about-us/\";s:8:\"external\";s:1:\"0\";}'),(40209,830,'_group_chcf29yih8zz3j3_content_area_button','group_chcf29yih8zz3j3_field_5923225383819'),(40210,830,'group_chcf29yih8zz3j3_content_area_align','centered'),(40211,830,'_group_chcf29yih8zz3j3_content_area_align','group_chcf29yih8zz3j3_field_5923225383899'),(40212,830,'group_chcf29yih8zz3j3_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:6:\"repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:4:\"auto\";}'),(40213,830,'_group_chcf29yih8zz3j3_content_area_background','group_chcf29yih8zz3j3_field_5923225383818'),(40214,830,'group_285xgh2d32ffzt8_special_offers_content','Mann Plumbing & Heating, LLC.: Serving Chambersburg,&nbsp;PA'),(40215,830,'_group_285xgh2d32ffzt8_special_offers_content','group_285xgh2d32ffzt8_field_5648912548761'),(40216,830,'group_285xgh2d32ffzt8_special_offers_button','a:3:{s:4:\"text\";s:10:\"Contact Us\";s:3:\"url\";s:12:\"/contact-us/\";s:8:\"external\";s:1:\"0\";}'),(40217,830,'_group_285xgh2d32ffzt8_special_offers_button','group_285xgh2d32ffzt8_field_5648912548762'),(40218,830,'group_285xgh2d32ffzt8_special_offers_background','a:6:{s:5:\"image\";s:3:\"538\";s:16:\"background_color\";s:7:\"#d51d25\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(40219,830,'_group_285xgh2d32ffzt8_special_offers_background','group_285xgh2d32ffzt8_field_5648912548765'),(40220,830,'group_zi794n2mdkggmlv_services_services_0_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(40221,830,'_group_zi794n2mdkggmlv_services_services_0_background','field_35a935e59da75'),(40222,830,'group_zi794n2mdkggmlv_services_services_1_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(40223,830,'_group_zi794n2mdkggmlv_services_services_1_background','field_35a935e59da75'),(40224,830,'group_zi794n2mdkggmlv_services_services_2_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(40225,830,'_group_zi794n2mdkggmlv_services_services_2_background','field_35a935e59da75'),(40226,830,'group_jay33uzo882n74g_gallery_slides_to_show','4'),(40227,830,'_group_jay33uzo882n74g_gallery_slides_to_show','group_jay33uzo882n74g_field_71810a8701e99'),(40228,830,'group_7omya7l9yrr0mu0_testimonials_button','a:3:{s:4:\"text\";s:9:\"Read More\";s:3:\"url\";s:14:\"/testimonials/\";s:8:\"external\";s:1:\"0\";}'),(40229,830,'_group_7omya7l9yrr0mu0_testimonials_button','group_7omya7l9yrr0mu0_field_59232e687d123'),(40230,830,'group_zi794n2mdkggmlv_services_columns','single'),(40231,830,'_group_zi794n2mdkggmlv_services_columns','group_zi794n2mdkggmlv_field_1875124714003'),(40232,830,'group_jay33uzo882n74g_gallery_button','a:3:{s:4:\"text\";s:13:\"View Our Work\";s:3:\"url\";s:10:\"/our-work/\";s:8:\"external\";s:1:\"0\";}'),(40233,830,'_group_jay33uzo882n74g_gallery_button','group_jay33uzo882n74g_field_35a591ca6da88'),(40234,830,'group_7omya7l9yrr0mu0_testimonials_arrow_placement','sides'),(40235,830,'_group_7omya7l9yrr0mu0_testimonials_arrow_placement','group_7omya7l9yrr0mu0_field_124793247623'),(40236,830,'group_285xgh2d32ffzt8_special_offers_enable_padding','0'),(40237,830,'_group_285xgh2d32ffzt8_special_offers_enable_padding','group_285xgh2d32ffzt8_field_56489125487801'),(40238,830,'group_285xgh2d32ffzt8_special_offers_padding_top','0'),(40239,830,'_group_285xgh2d32ffzt8_special_offers_padding_top','group_285xgh2d32ffzt8_field_56489125487802'),(40240,830,'group_285xgh2d32ffzt8_special_offers_padding_bottom','0'),(40241,830,'_group_285xgh2d32ffzt8_special_offers_padding_bottom','group_285xgh2d32ffzt8_field_56489125487803'),(40242,830,'group_chcf29yih8zz3j3_content_area_enable_padding','1'),(40243,830,'_group_chcf29yih8zz3j3_content_area_enable_padding','group_chcf29yih8zz3j3_field_5923225383901'),(40244,830,'group_chcf29yih8zz3j3_content_area_padding_top','20'),(40245,830,'_group_chcf29yih8zz3j3_content_area_padding_top','group_chcf29yih8zz3j3_field_5923225383902'),(40246,830,'group_chcf29yih8zz3j3_content_area_padding_bottom','20'),(40247,830,'_group_chcf29yih8zz3j3_content_area_padding_bottom','group_chcf29yih8zz3j3_field_5923225383903'),(40248,830,'group_zi794n2mdkggmlv_services_services_0_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:15:\"/services/hvac/\";s:6:\"target\";s:0:\"\";}'),(40249,830,'_group_zi794n2mdkggmlv_services_services_0_item_link','field_35a935e59da79'),(40250,830,'group_zi794n2mdkggmlv_services_services_1_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"/services/design-build/\";s:6:\"target\";s:0:\"\";}'),(40251,830,'_group_zi794n2mdkggmlv_services_services_1_item_link','field_35a935e59da79'),(40252,830,'group_zi794n2mdkggmlv_services_services_2_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:19:\"/services/plumbing/\";s:6:\"target\";s:0:\"\";}'),(40253,830,'_group_zi794n2mdkggmlv_services_services_2_item_link','field_35a935e59da79'),(40254,830,'group_zi794n2mdkggmlv_services_enable_padding','0'),(40255,830,'_group_zi794n2mdkggmlv_services_enable_padding','group_zi794n2mdkggmlv_field_35a935e59da91'),(40256,830,'group_zi794n2mdkggmlv_services_padding_top','0'),(40257,830,'_group_zi794n2mdkggmlv_services_padding_top','group_zi794n2mdkggmlv_field_35a935e59da92'),(40258,830,'group_zi794n2mdkggmlv_services_padding_bottom','0'),(40259,830,'_group_zi794n2mdkggmlv_services_padding_bottom','group_zi794n2mdkggmlv_field_35a935e59da93'),(40260,830,'group_jay33uzo882n74g_gallery_enable_padding','1'),(40261,830,'_group_jay33uzo882n74g_gallery_enable_padding','group_jay33uzo882n74g_field_591ca1f42e82901'),(40262,830,'group_jay33uzo882n74g_gallery_padding_top','0'),(40263,830,'_group_jay33uzo882n74g_gallery_padding_top','group_jay33uzo882n74g_field_591ca1f42e82902'),(40264,830,'group_jay33uzo882n74g_gallery_padding_bottom','0'),(40265,830,'_group_jay33uzo882n74g_gallery_padding_bottom','group_jay33uzo882n74g_field_591ca1f42e82903'),(40266,830,'group_7omya7l9yrr0mu0_testimonials_enable_padding','1'),(40267,830,'_group_7omya7l9yrr0mu0_testimonials_enable_padding','group_7omya7l9yrr0mu0_field_59232e687d188'),(40268,830,'group_7omya7l9yrr0mu0_testimonials_padding_top','60'),(40269,830,'_group_7omya7l9yrr0mu0_testimonials_padding_top','group_7omya7l9yrr0mu0_field_59232e687d189'),(40270,830,'group_7omya7l9yrr0mu0_testimonials_padding_bottom','60'),(40271,830,'_group_7omya7l9yrr0mu0_testimonials_padding_bottom','group_7omya7l9yrr0mu0_field_59232e687d187'),(40272,830,'group_0yx3acydmccnw9z_hero_css_classes',''),(40273,830,'_group_0yx3acydmccnw9z_hero_css_classes','group_0yx3acydmccnw9z_field_9877065828823'),(40274,830,'group_285xgh2d32ffzt8_special_offers_css_classes',''),(40275,830,'_group_285xgh2d32ffzt8_special_offers_css_classes','group_285xgh2d32ffzt8_field_9147022838688'),(40276,830,'group_chcf29yih8zz3j3_content_area_css_classes',''),(40277,830,'_group_chcf29yih8zz3j3_content_area_css_classes','group_chcf29yih8zz3j3_field_4554768684187'),(40278,830,'group_zi794n2mdkggmlv_services_css_classes',''),(40279,830,'_group_zi794n2mdkggmlv_services_css_classes','group_zi794n2mdkggmlv_field_8577178443184'),(40280,830,'group_jay33uzo882n74g_gallery_css_classes',''),(40281,830,'_group_jay33uzo882n74g_gallery_css_classes','group_jay33uzo882n74g_field_8987622106215'),(40282,830,'group_7omya7l9yrr0mu0_testimonials_css_classes',''),(40283,830,'_group_7omya7l9yrr0mu0_testimonials_css_classes','group_7omya7l9yrr0mu0_field_4310619693162'),(40284,830,'group_chcf29yih8zz3j3_content_area_content_lead',''),(40285,830,'_group_chcf29yih8zz3j3_content_area_content_lead','group_chcf29yih8zz3j3_field_0079736876206'),(40286,830,'group_0yx3acydmccnw9z_hero_animations_enabled','1'),(40287,830,'_group_0yx3acydmccnw9z_hero_animations_enabled','field_5b7ece2e8e4e9'),(40288,830,'group_0yx3acydmccnw9z_hero_animations',''),(40289,830,'_group_0yx3acydmccnw9z_hero_animations','group_0yx3acydmccnw9z_field_5b7ece258e4e8'),(40290,830,'group_285xgh2d32ffzt8_special_offers_animations_enabled','1'),(40291,830,'_group_285xgh2d32ffzt8_special_offers_animations_enabled','field_5b7ece2e8e4e9'),(40292,830,'group_285xgh2d32ffzt8_special_offers_animations',''),(40293,830,'_group_285xgh2d32ffzt8_special_offers_animations','group_285xgh2d32ffzt8_field_5b7ece258e4e8'),(40294,830,'group_chcf29yih8zz3j3_content_area_animations_enabled','1'),(40295,830,'_group_chcf29yih8zz3j3_content_area_animations_enabled','field_5b7ece2e8e4e9'),(40296,830,'group_chcf29yih8zz3j3_content_area_animations',''),(40297,830,'_group_chcf29yih8zz3j3_content_area_animations','group_chcf29yih8zz3j3_field_5b7ece258e4e8'),(40298,830,'group_zi794n2mdkggmlv_services_button_alignment',''),(40299,830,'_group_zi794n2mdkggmlv_services_button_alignment','group_zi794n2mdkggmlv_field_8591648772677'),(40300,830,'group_zi794n2mdkggmlv_services_animations_enabled','0'),(40301,830,'_group_zi794n2mdkggmlv_services_animations_enabled','field_5b7ece2e8e4e9'),(40302,830,'group_zi794n2mdkggmlv_services_animations',''),(40303,830,'_group_zi794n2mdkggmlv_services_animations','group_zi794n2mdkggmlv_field_5b7ece258e4e8'),(40304,830,'group_jay33uzo882n74g_gallery_layout','non-bleeding'),(40305,830,'_group_jay33uzo882n74g_gallery_layout','group_jay33uzo882n74g_field_8973h3489324h324'),(40306,830,'group_jay33uzo882n74g_gallery_width','md'),(40307,830,'_group_jay33uzo882n74g_gallery_width','group_jay33uzo882n74g_field_8973h3489324a002'),(40308,830,'group_jay33uzo882n74g_gallery_enable_captions','0'),(40309,830,'_group_jay33uzo882n74g_gallery_enable_captions','group_jay33uzo882n74g_field_h29be82vf92b9ad3'),(40310,830,'group_jay33uzo882n74g_gallery_button_alignment','center'),(40311,830,'_group_jay33uzo882n74g_gallery_button_alignment','group_jay33uzo882n74g_field_8591648772866'),(40312,830,'group_jay33uzo882n74g_gallery_animations_enabled','0'),(40313,830,'_group_jay33uzo882n74g_gallery_animations_enabled','field_5b7ece2e8e4e9'),(40314,830,'group_jay33uzo882n74g_gallery_animations',''),(40315,830,'_group_jay33uzo882n74g_gallery_animations','group_jay33uzo882n74g_field_5b7ece258e4e8'),(40316,830,'group_7omya7l9yrr0mu0_testimonials_enable_content_limit','0'),(40317,830,'_group_7omya7l9yrr0mu0_testimonials_enable_content_limit','group_7omya7l9yrr0mu0_field_34r5654rfg45'),(40318,830,'group_7omya7l9yrr0mu0_testimonials_content_limit_range','120'),(40319,830,'_group_7omya7l9yrr0mu0_testimonials_content_limit_range','group_7omya7l9yrr0mu0_field_847h9938h3k39'),(40320,830,'group_7omya7l9yrr0mu0_testimonials_arrow_color','default'),(40321,830,'_group_7omya7l9yrr0mu0_testimonials_arrow_color','group_7omya7l9yrr0mu0_field_654793247766'),(40322,830,'group_7omya7l9yrr0mu0_testimonials_enable_arrow_background','default'),(40323,830,'_group_7omya7l9yrr0mu0_testimonials_enable_arrow_background','group_7omya7l9yrr0mu0_field_60232e6872399'),(40324,830,'group_7omya7l9yrr0mu0_testimonials_arrow_background_color',''),(40325,830,'_group_7omya7l9yrr0mu0_testimonials_arrow_background_color','group_7omya7l9yrr0mu0_field_591b6d8fe1000'),(40326,830,'group_7omya7l9yrr0mu0_testimonials_button_alignment',''),(40327,830,'_group_7omya7l9yrr0mu0_testimonials_button_alignment','group_7omya7l9yrr0mu0_field_8591648772644'),(40328,830,'group_7omya7l9yrr0mu0_testimonials_animations_enabled','1'),(40329,830,'_group_7omya7l9yrr0mu0_testimonials_animations_enabled','field_5b7ece2e8e4e9'),(40330,830,'group_7omya7l9yrr0mu0_testimonials_animations',''),(40331,830,'_group_7omya7l9yrr0mu0_testimonials_animations','group_7omya7l9yrr0mu0_field_5b7ece258e4e8'),(40332,830,'group_zi794n2mdkggmlv_services_services_3_image','557'),(40333,830,'_group_zi794n2mdkggmlv_services_services_3_image','field_35a935e59da73'),(40334,830,'group_zi794n2mdkggmlv_services_services_3_name','Excavation Services'),(40335,830,'_group_zi794n2mdkggmlv_services_services_3_name','field_35a935e59da72'),(40336,830,'group_zi794n2mdkggmlv_services_services_3_content','Our team offers a variety of solutions for your excavating needs. If you require party sewer line separation, video inspections, or horizontal directional drilling, we can help you. We handle site work or design and consultation.'),(40337,830,'_group_zi794n2mdkggmlv_services_services_3_content','field_35a935e59da74'),(40338,830,'group_zi794n2mdkggmlv_services_services_3_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(40339,830,'_group_zi794n2mdkggmlv_services_services_3_button','field_35a935e59da76'),(40340,830,'group_zi794n2mdkggmlv_services_services_3_item_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:30:\"/services/excavation-services/\";s:6:\"target\";s:0:\"\";}'),(40341,830,'_group_zi794n2mdkggmlv_services_services_3_item_link','field_35a935e59da79'),(40342,830,'group_zi794n2mdkggmlv_services_services_3_background','a:6:{s:5:\"image\";s:0:\"\";s:16:\"background_color\";s:7:\"#1f1f1f\";s:10:\"text_color\";s:7:\"#ffffff\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(40343,830,'_group_zi794n2mdkggmlv_services_services_3_background','field_35a935e59da75'),(40344,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_name','B H'),(40345,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_name','field_59232e937d163'),(40346,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_date',''),(40347,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_date','field_59232e967d164'),(40348,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_content','Great service. Mann\'s installed Trane Heat Pump. Very professional and courteous. Highly recommend. A+++'),(40349,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_content','field_59232e817d162'),(40350,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_star_rating','5'),(40351,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_star_rating','field_59232e817d166'),(40352,830,'group_7omya7l9yrr0mu0_testimonials_testimonials_4_avatar',''),(40353,830,'_group_7omya7l9yrr0mu0_testimonials_testimonials_4_avatar','field_59232e817d165'),(40354,830,'group_0yx3acydmccnw9z_hero_animations_type','slide'),(40355,830,'_group_0yx3acydmccnw9z_hero_animations_type','field_5b7ece638e4ea'),(40356,830,'group_0yx3acydmccnw9z_hero_animations_direction','top'),(40357,830,'_group_0yx3acydmccnw9z_hero_animations_direction','field_5b7ed4a96a49b'),(40358,830,'group_0yx3acydmccnw9z_hero_animations_speed','1200'),(40359,830,'_group_0yx3acydmccnw9z_hero_animations_speed','field_5b7ed501a7f4a'),(40360,830,'group_0yx3acydmccnw9z_hero_animations_offset','0'),(40361,830,'_group_0yx3acydmccnw9z_hero_animations_offset','field_5b7ed532a7f4b'),(40362,830,'group_0yx3acydmccnw9z_hero_animations_mobile','1'),(40363,830,'_group_0yx3acydmccnw9z_hero_animations_mobile','field_5b7ed5cf62c6b'),(40364,830,'group_0yx3acydmccnw9z_hero_animations_run_once','1'),(40365,830,'_group_0yx3acydmccnw9z_hero_animations_run_once','field_5b7ed60862c6c'),(40366,830,'group_285xgh2d32ffzt8_special_offers_animations_type','fade'),(40367,830,'_group_285xgh2d32ffzt8_special_offers_animations_type','field_5b7ece638e4ea'),(40368,830,'group_285xgh2d32ffzt8_special_offers_animations_speed','1200'),(40369,830,'_group_285xgh2d32ffzt8_special_offers_animations_speed','field_5b7ed501a7f4a'),(40370,830,'group_285xgh2d32ffzt8_special_offers_animations_offset','-500'),(40371,830,'_group_285xgh2d32ffzt8_special_offers_animations_offset','field_5b7ed532a7f4b'),(40372,830,'group_285xgh2d32ffzt8_special_offers_animations_mobile','1'),(40373,830,'_group_285xgh2d32ffzt8_special_offers_animations_mobile','field_5b7ed5cf62c6b'),(40374,830,'group_285xgh2d32ffzt8_special_offers_animations_run_once','1'),(40375,830,'_group_285xgh2d32ffzt8_special_offers_animations_run_once','field_5b7ed60862c6c'),(40376,830,'group_chcf29yih8zz3j3_content_area_animations_type','slide'),(40377,830,'_group_chcf29yih8zz3j3_content_area_animations_type','field_5b7ece638e4ea'),(40378,830,'group_chcf29yih8zz3j3_content_area_animations_direction','left'),(40379,830,'_group_chcf29yih8zz3j3_content_area_animations_direction','field_5b7ed4a96a49b'),(40380,830,'group_chcf29yih8zz3j3_content_area_animations_speed','1200'),(40381,830,'_group_chcf29yih8zz3j3_content_area_animations_speed','field_5b7ed501a7f4a'),(40382,830,'group_chcf29yih8zz3j3_content_area_animations_offset','-100'),(40383,830,'_group_chcf29yih8zz3j3_content_area_animations_offset','field_5b7ed532a7f4b'),(40384,830,'group_chcf29yih8zz3j3_content_area_animations_mobile','1'),(40385,830,'_group_chcf29yih8zz3j3_content_area_animations_mobile','field_5b7ed5cf62c6b'),(40386,830,'group_chcf29yih8zz3j3_content_area_animations_run_once','1'),(40387,830,'_group_chcf29yih8zz3j3_content_area_animations_run_once','field_5b7ed60862c6c'),(40388,830,'group_7omya7l9yrr0mu0_testimonials_animations_type','fade'),(40389,830,'_group_7omya7l9yrr0mu0_testimonials_animations_type','field_5b7ece638e4ea'),(40390,830,'group_7omya7l9yrr0mu0_testimonials_animations_speed','1200'),(40391,830,'_group_7omya7l9yrr0mu0_testimonials_animations_speed','field_5b7ed501a7f4a'),(40392,830,'group_7omya7l9yrr0mu0_testimonials_animations_offset','-100'),(40393,830,'_group_7omya7l9yrr0mu0_testimonials_animations_offset','field_5b7ed532a7f4b'),(40394,830,'group_7omya7l9yrr0mu0_testimonials_animations_mobile','1'),(40395,830,'_group_7omya7l9yrr0mu0_testimonials_animations_mobile','field_5b7ed5cf62c6b'),(40396,830,'group_7omya7l9yrr0mu0_testimonials_animations_run_once','1'),(40397,830,'_group_7omya7l9yrr0mu0_testimonials_animations_run_once','field_5b7ed60862c6c'),(40404,205,'_yoast_wpseo_metadesc','For your plumbing and heating needs in Chambersburg, Greencastle, Waynesboro, and beyond in Pennsylvania, turn to Mann Plumbing & Heating, LLC.'),(40405,585,'_yoast_wpseo_metadesc','For your plumbing and heating needs in Chambersburg, Greencastle, Waynesboro, and beyond in Pennsylvania, turn to Mann Plumbing & Heating, LLC.'),(40406,588,'_yoast_wpseo_metadesc','For your plumbing and heating needs in Chambersburg, Greencastle, Waynesboro, and beyond in Pennsylvania, turn to Mann Plumbing & Heating, LLC.'),(40407,569,'_yoast_wpseo_metadesc','For your plumbing and heating needs in Chambersburg, Greencastle, Waynesboro, and beyond in Pennsylvania, turn to Mann Plumbing & Heating, LLC.'),(40408,580,'_yoast_wpseo_metadesc','For your plumbing and heating needs in Chambersburg, Greencastle, Waynesboro, and beyond in Pennsylvania, turn to Mann Plumbing & Heating, LLC.'),(40409,832,'_wp_attached_file','2020/12/MannWellsFargoFinancingBanner_12.16.2020.jpg'),(40410,832,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.067991385876976;s:5:\"bytes\";i:10706;s:11:\"size_before\";i:106337;s:10:\"size_after\";i:95631;s:4:\"time\";d:0.060000000000000005;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:0.65000000000000002;s:5:\"bytes\";i:72;s:11:\"size_before\";i:11001;s:10:\"size_after\";i:10929;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.15;s:5:\"bytes\";i:10634;s:11:\"size_before\";i:95336;s:10:\"size_after\";i:84702;s:4:\"time\";d:0.050000000000000003;}}}'),(40411,832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:52:\"2020/12/MannWellsFargoFinancingBanner_12.16.2020.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"MannWellsFargoFinancingBanner_12.16.2020-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(40412,832,'_wp_attachment_image_alt','Special Finance for 72 Months'),(40413,833,'subheading',''),(40414,833,'_subheading','field_5976417756400'),(40415,833,'group_9c9flwfx75zpkho_content_area_columns','single'),(40416,833,'_group_9c9flwfx75zpkho_content_area_columns','group_9c9flwfx75zpkho_field_5923225383814'),(40417,833,'group_9c9flwfx75zpkho_content_area_width','medium'),(40418,833,'_group_9c9flwfx75zpkho_content_area_width','group_9c9flwfx75zpkho_field_5923225383891'),(40419,833,'group_9c9flwfx75zpkho_content_area_content_lead',''),(40420,833,'_group_9c9flwfx75zpkho_content_area_content_lead','group_9c9flwfx75zpkho_field_0079736876206'),(40421,833,'group_9c9flwfx75zpkho_content_area_content','<a href=\"https://retailservices.wellsfargo.com/ahapp/init-app?m=0024234437\" target=\"_blank\" rel=\"noopener\"><img class=\"size-full wp-image-714 aligncenter\" src=\"/wp-content/uploads/2020/12/MannWellsFargoFinancingBanner_12.16.2020.jpg\" alt=\"Buy today, pay over time\" width=\"600\" height=\"300\" /></a>\r\n\r\n<img class=\"size-full wp-image-715 aligncenter\" src=\"/wp-content/uploads/2019/12/payments-accepted-1.png\" alt=\"accepted payments\" width=\"212\" height=\"69\" />'),(40422,833,'_group_9c9flwfx75zpkho_content_area_content','group_9c9flwfx75zpkho_field_5923228483815'),(40423,833,'group_9c9flwfx75zpkho_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(40424,833,'_group_9c9flwfx75zpkho_content_area_button','group_9c9flwfx75zpkho_field_5923225383819'),(40425,833,'group_9c9flwfx75zpkho_content_area_css_classes',''),(40426,833,'_group_9c9flwfx75zpkho_content_area_css_classes','group_9c9flwfx75zpkho_field_4554768684187'),(40427,833,'group_9c9flwfx75zpkho_content_area_align','centered'),(40428,833,'_group_9c9flwfx75zpkho_content_area_align','group_9c9flwfx75zpkho_field_5923225383899'),(40429,833,'group_9c9flwfx75zpkho_content_area_enable_padding','1'),(40430,833,'_group_9c9flwfx75zpkho_content_area_enable_padding','group_9c9flwfx75zpkho_field_5923225383901'),(40431,833,'group_9c9flwfx75zpkho_content_area_padding_top','20'),(40432,833,'_group_9c9flwfx75zpkho_content_area_padding_top','group_9c9flwfx75zpkho_field_5923225383902'),(40433,833,'group_9c9flwfx75zpkho_content_area_padding_bottom','20'),(40434,833,'_group_9c9flwfx75zpkho_content_area_padding_bottom','group_9c9flwfx75zpkho_field_5923225383903'),(40435,833,'group_9c9flwfx75zpkho_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(40436,833,'_group_9c9flwfx75zpkho_content_area_background','group_9c9flwfx75zpkho_field_5923225383818'),(40437,833,'group_9c9flwfx75zpkho_content_area_animations_enabled','0'),(40438,833,'_group_9c9flwfx75zpkho_content_area_animations_enabled','field_5b7ece2e8e4e9'),(40439,833,'group_9c9flwfx75zpkho_content_area_animations',''),(40440,833,'_group_9c9flwfx75zpkho_content_area_animations','group_9c9flwfx75zpkho_field_5b7ece258e4e8'),(40441,833,'group_9gwabey53p04ngf_ctas_ctas','489'),(40442,833,'_group_9gwabey53p04ngf_ctas_ctas','group_9gwabey53p04ngf_field_5620077701227'),(40443,833,'group_9gwabey53p04ngf_ctas_css_classes','cta'),(40444,833,'_group_9gwabey53p04ngf_ctas_css_classes','group_9gwabey53p04ngf_field_8795774705172'),(40445,833,'group_9gwabey53p04ngf_ctas_animations_enabled','0'),(40446,833,'_group_9gwabey53p04ngf_ctas_animations_enabled','field_5b7ece2e8e4e9'),(40447,833,'group_9gwabey53p04ngf_ctas_animations',''),(40448,833,'_group_9gwabey53p04ngf_ctas_animations','group_9gwabey53p04ngf_field_5b7ece258e4e8'),(40449,834,'subheading',''),(40450,834,'_subheading','field_5976417756400'),(40451,834,'group_9c9flwfx75zpkho_content_area_columns','single'),(40452,834,'_group_9c9flwfx75zpkho_content_area_columns','group_9c9flwfx75zpkho_field_5923225383814'),(40453,834,'group_9c9flwfx75zpkho_content_area_width','medium'),(40454,834,'_group_9c9flwfx75zpkho_content_area_width','group_9c9flwfx75zpkho_field_5923225383891'),(40455,834,'group_9c9flwfx75zpkho_content_area_content_lead',''),(40456,834,'_group_9c9flwfx75zpkho_content_area_content_lead','group_9c9flwfx75zpkho_field_0079736876206'),(40457,834,'group_9c9flwfx75zpkho_content_area_content','<a href=\"https://retailservices.wellsfargo.com/ahapp/init-app?m=0024234437\" target=\"_blank\" rel=\"noopener\"><img class=\"size-full wp-image-714 aligncenter\" src=\"/wp-content/uploads/2020/12/MannWellsFargoFinancingBanner_12.16.2020.jpg\" alt=\"Special Finance for 72 Months\" width=\"300\" height=\"250\" /></a>\r\n\r\n<img class=\"size-full wp-image-715 aligncenter\" src=\"/wp-content/uploads/2019/12/payments-accepted-1.png\" alt=\"accepted payments\" width=\"212\" height=\"69\" />'),(40458,834,'_group_9c9flwfx75zpkho_content_area_content','group_9c9flwfx75zpkho_field_5923228483815'),(40459,834,'group_9c9flwfx75zpkho_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(40460,834,'_group_9c9flwfx75zpkho_content_area_button','group_9c9flwfx75zpkho_field_5923225383819'),(40461,834,'group_9c9flwfx75zpkho_content_area_css_classes',''),(40462,834,'_group_9c9flwfx75zpkho_content_area_css_classes','group_9c9flwfx75zpkho_field_4554768684187'),(40463,834,'group_9c9flwfx75zpkho_content_area_align','centered'),(40464,834,'_group_9c9flwfx75zpkho_content_area_align','group_9c9flwfx75zpkho_field_5923225383899'),(40465,834,'group_9c9flwfx75zpkho_content_area_enable_padding','1'),(40466,834,'_group_9c9flwfx75zpkho_content_area_enable_padding','group_9c9flwfx75zpkho_field_5923225383901'),(40467,834,'group_9c9flwfx75zpkho_content_area_padding_top','20'),(40468,834,'_group_9c9flwfx75zpkho_content_area_padding_top','group_9c9flwfx75zpkho_field_5923225383902'),(40469,834,'group_9c9flwfx75zpkho_content_area_padding_bottom','20'),(40470,834,'_group_9c9flwfx75zpkho_content_area_padding_bottom','group_9c9flwfx75zpkho_field_5923225383903'),(40471,834,'group_9c9flwfx75zpkho_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(40472,834,'_group_9c9flwfx75zpkho_content_area_background','group_9c9flwfx75zpkho_field_5923225383818'),(40473,834,'group_9c9flwfx75zpkho_content_area_animations_enabled','0'),(40474,834,'_group_9c9flwfx75zpkho_content_area_animations_enabled','field_5b7ece2e8e4e9'),(40475,834,'group_9c9flwfx75zpkho_content_area_animations',''),(40476,834,'_group_9c9flwfx75zpkho_content_area_animations','group_9c9flwfx75zpkho_field_5b7ece258e4e8'),(40477,834,'group_9gwabey53p04ngf_ctas_ctas','489'),(40478,834,'_group_9gwabey53p04ngf_ctas_ctas','group_9gwabey53p04ngf_field_5620077701227'),(40479,834,'group_9gwabey53p04ngf_ctas_css_classes','cta'),(40480,834,'_group_9gwabey53p04ngf_ctas_css_classes','group_9gwabey53p04ngf_field_8795774705172'),(40481,834,'group_9gwabey53p04ngf_ctas_animations_enabled','0'),(40482,834,'_group_9gwabey53p04ngf_ctas_animations_enabled','field_5b7ece2e8e4e9'),(40483,834,'group_9gwabey53p04ngf_ctas_animations',''),(40484,834,'_group_9gwabey53p04ngf_ctas_animations','group_9gwabey53p04ngf_field_5b7ece258e4e8'),(40485,836,'subheading',''),(40486,836,'_subheading','field_5976417756400'),(40487,836,'group_sc8btebc88ptzbl_content_area_columns','single'),(40488,836,'_group_sc8btebc88ptzbl_content_area_columns','group_sc8btebc88ptzbl_field_5923225383814'),(40489,836,'group_sc8btebc88ptzbl_content_area_width','large'),(40490,836,'_group_sc8btebc88ptzbl_content_area_width','group_sc8btebc88ptzbl_field_5923225383891'),(40491,836,'group_sc8btebc88ptzbl_content_area_content_lead',''),(40492,836,'_group_sc8btebc88ptzbl_content_area_content_lead','group_sc8btebc88ptzbl_field_0079736876206'),(40493,836,'group_sc8btebc88ptzbl_content_area_content','<h2>Coming Soon</h2>'),(40494,836,'_group_sc8btebc88ptzbl_content_area_content','group_sc8btebc88ptzbl_field_5923228483815'),(40495,836,'group_sc8btebc88ptzbl_content_area_button','a:3:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:0:\"\";s:8:\"external\";s:1:\"0\";}'),(40496,836,'_group_sc8btebc88ptzbl_content_area_button','group_sc8btebc88ptzbl_field_5923225383819'),(40497,836,'group_sc8btebc88ptzbl_content_area_css_classes',''),(40498,836,'_group_sc8btebc88ptzbl_content_area_css_classes','group_sc8btebc88ptzbl_field_4554768684187'),(40499,836,'group_sc8btebc88ptzbl_content_area_align','centered'),(40500,836,'_group_sc8btebc88ptzbl_content_area_align','group_sc8btebc88ptzbl_field_5923225383899'),(40501,836,'group_sc8btebc88ptzbl_content_area_enable_padding','1'),(40502,836,'_group_sc8btebc88ptzbl_content_area_enable_padding','group_sc8btebc88ptzbl_field_5923225383901'),(40503,836,'group_sc8btebc88ptzbl_content_area_padding_top','20'),(40504,836,'_group_sc8btebc88ptzbl_content_area_padding_top','group_sc8btebc88ptzbl_field_5923225383902'),(40505,836,'group_sc8btebc88ptzbl_content_area_padding_bottom','20'),(40506,836,'_group_sc8btebc88ptzbl_content_area_padding_bottom','group_sc8btebc88ptzbl_field_5923225383903'),(40507,836,'group_sc8btebc88ptzbl_content_area_background','a:9:{s:5:\"image\";s:0:\"\";s:12:\"mobile_image\";s:0:\"\";s:9:\"video_mp4\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:10:\"text_color\";s:7:\"#252525\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:4:\"size\";s:5:\"cover\";}'),(40508,836,'_group_sc8btebc88ptzbl_content_area_background','group_sc8btebc88ptzbl_field_5923225383818'),(40509,836,'group_sc8btebc88ptzbl_content_area_animations_enabled','0'),(40510,836,'_group_sc8btebc88ptzbl_content_area_animations_enabled','field_5b7ece2e8e4e9'),(40511,836,'group_sc8btebc88ptzbl_content_area_animations',''),(40512,836,'_group_sc8btebc88ptzbl_content_area_animations','group_sc8btebc88ptzbl_field_5b7ece258e4e8'),(40513,836,'group_i0o5jwapcpx8ora_ctas_ctas','489'),(40514,836,'_group_i0o5jwapcpx8ora_ctas_ctas','group_i0o5jwapcpx8ora_field_5620077701227'),(40515,836,'group_i0o5jwapcpx8ora_ctas_css_classes','cta'),(40516,836,'_group_i0o5jwapcpx8ora_ctas_css_classes','group_i0o5jwapcpx8ora_field_8795774705172'),(40517,836,'group_i0o5jwapcpx8ora_ctas_animations_enabled','0'),(40518,836,'_group_i0o5jwapcpx8ora_ctas_animations_enabled','field_5b7ece2e8e4e9'),(40519,836,'group_i0o5jwapcpx8ora_ctas_animations',''),(40520,836,'_group_i0o5jwapcpx8ora_ctas_animations','group_i0o5jwapcpx8ora_field_5b7ece258e4e8');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8_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 utf8_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8_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=InnoDB AUTO_INCREMENT=840 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (5,2,'2017-07-17 14:24:15','2017-07-17 14:24:15','','Home','','publish','closed','closed','','home','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',0,'http://dev-general-contractor-demo.pantheonsite.io/?page_id=5',0,'page','',0),(205,2,'2017-08-21 22:45:21','2017-08-21 22:45:21','','Contact','','publish','closed','closed','','contact-us','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',0,'http://dev-rl-emerson.pantheonsites.iodev-general-contractor-demo.pantheonsite.io/?page_id=205',0,'page','',0),(207,2,'2017-08-21 22:45:59','2017-08-21 22:45:59',' ','','','publish','closed','closed','','207','','','2019-12-23 15:14:15','2019-12-23 15:14:15','',0,'http://dev-rl-emerson.pantheonsites.iodev-general-contractor-demo.pantheonsite.io/?p=207',12,'nav_menu_item','',0),(288,2,'2017-08-24 17:57:48','2017-08-24 17:57:48','','Sitemap','','publish','closed','closed','','sitemap','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',0,'http://dev-rl-emerson.pantheonsites.iodev-general-contractor-demo.pantheonsite.io/?page_id=288',0,'page','',0),(289,2,'2017-08-24 17:57:48','2017-08-24 17:57:48','','Sitemap','','inherit','closed','closed','','288-revision-v1','','','2017-08-24 17:57:48','2017-08-24 17:57:48','',288,'http://dev-rl-emerson.pantheonsites.iodev-general-contractor-demo.pantheonsite.io/288-revision-v1/',0,'revision','',0),(326,2,'2017-09-07 18:05:18','2017-09-07 18:05:18',' ','','','publish','closed','closed','','326','','','2019-12-23 15:14:32','2019-12-23 15:14:32','',0,'http://dev-rl-emerson.pantheonsites.iodev-general-contractor-demo.pantheonsite.io/?p=326',6,'nav_menu_item','',0),(426,2,'2018-03-02 00:06:48','2018-03-02 00:06:48',' ','','','publish','closed','closed','','426','','','2019-02-15 18:03:55','2019-02-15 18:03:55','',0,'https://dev-rl-emerson.pantheonsite.io/?p=426',2,'nav_menu_item','',0),(429,2,'2018-03-12 22:05:31','2018-03-12 22:05:31','','Thank You','','publish','closed','closed','','thank-you','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',0,'https://dev-rl-emerson.pantheonsite.io/?page_id=429',0,'page','',0),(430,2,'2018-03-12 22:05:31','2018-03-12 22:05:31','<h5 style=\"text-align: center;\">Thank you for contacting us. We have received your information, and will get back to you shortly</h5>','Thank You','','inherit','closed','closed','','429-revision-v1','','','2018-03-12 22:05:31','2018-03-12 22:05:31','',429,'https://dev-rl-emerson.pantheonsite.io/429-revision-v1/',0,'revision','',0),(431,2,'2018-03-12 23:03:06','2018-03-12 23:03:06','<h5 style=\"text-align: center;\">Thank you for contacting us. We have received your information, and will get back to you shortly.</h5>','Thank You','','inherit','closed','closed','','429-revision-v1','','','2018-03-12 23:03:06','2018-03-12 23:03:06','',429,'https://dev-rl-emerson.pantheonsite.io/429-revision-v1/',0,'revision','',0),(433,2,'2018-03-16 18:02:34','2018-03-16 18:02:34','/* DP12262019 */\n/* Styling */\n::-webkit-input-placeholder { font-family: \'Roboto\'!important; }\n::-moz-placeholder { font-family: \'Roboto\'!important; }\n:-ms-input-placeholder { font-family: \'Roboto\'!important; }\n:-moz-placeholder { font-family: \'Roboto\'!important; }\ntextarea { font-family: Roboto; resize: none; }\n.header__nav li { margin: 0 0 0 12px; }\n.header__utility-flex { justify-content: space-between; }\n.header__utility .menu-item { margin: 0px; }\n.sub-menu--toggle:hover { background-color: #fff!important; }\nheader a { font-size: 14px; transition: none; }\n.header__utility a:hover { color: #000!important; }\n.header__utility a:hover .icon { fill: #000!important; }\n.mobile__nav-close .icon { fill: #d51d25; }\n.mobile__nav-close .icon:hover { fill: #000; }\n.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after { background-color: #d51d25; }\n.hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner::before, .hamburger:hover .hamburger-inner::after { background-color: #000; }\n.mobile__nav a { font-weight: bold; font-size: 16px; text-transform: uppercase; }\n.theme--material .hero__panel { padding: 200px 0; }\n.theme--material h1, .theme--material .hdg--1 { font-style: italic; font-weight: 800!important; }\n.special-offer__content p { font-weight: 800 !important; font-style: italic; }\n.btn, .gform_button { font-size: 16px!important; }\n::after, ::before { box-shadow: none!important; }\nh2, h3, h4, h5, h6 { font-weight: 800!important; font-style: italic; }\n.service__title { font-weight: normal!important; font-style: normal; font-size: 18px; }\n.service__content p { color: #fff!important; padding: 0 15px 15px; }\na.service__item:hover { background-color: #d51d25!important; }\na.service__item img { transition: .3s ease; }\n.theme--material .services .service__item { padding: 0px; height: 100%; }\na.service__item:hover img { opacity: .8; }\n.testimonials .slick-arrow .icon { fill: #d51d25; }\n.testimonials .slick-arrow:hover .icon { fill: #fff; }\nfooter a, footer h5 a, footer .entry__content a:not(.btn) { color: #fff; }\nfooter h5 a { font-style: normal; font-weight: normal; }\nfooter a:hover, footer .current-menu-item > a { color: #d51d25!important; }\nfooter .btn:hover { color: #fff!important; }\n.testimonials--show-multiple .testimonial__icon .icon { fill: #d51d25; }\n.testimonials__button .btn { border: 0px; background-color: #d51d25; }\n.testimonial { padding: 10px; }\n.footer__scroll-top a { color: #d51d25; }\n.page__header .hdg { margin-bottom: 0px; color: #fff!important; }\n.footer__scroll-top a:hover { color: #000; }\n.entry__content a:not(.btn):hover { color: #000; }\n.theme--material .content-area__image { box-shadow: none; }\n.theme--material .form__gform--default input:not([type=\"radio\"]):not([type=\"checkbox\"]):not([type=\"submit\"]):not([type=\"button\"]):not([type=\"image\"]):not([type=\"file\"]), .theme--material .form__gform--default textarea { box-shadow: none; }\n.gform_button { margin-top: 20px; }\n.entry__content p a:hover img { opacity: .8; }\n.services .service { padding: 10px; }\n.testimonials .slick-arrow { top: 35%; }\n.services__content { padding: 15px; }\n@media (min-width: 1200px){\n.theme--material .hero__panel { padding: 275px 0; }\n}\n@media (max-width: 992px){\n.theme--material .hero__panel { padding: 140px 0; }\n}\n@media (min-width: 768px){\n.content-area__content-lead { padding: 20px 0 0; }\n}\n@media (max-width: 768px){\n.content-area__content-lead { padding: 10px 0 0; }\n.service { width: 100%; max-width: 320px; margin: 10px; }\n.header__utility .menu-item { margin: 0 auto; }\n.header__branding-title { width: calc(100% - 66px)!important; }\n.theme--material .hero__panel { padding: 80px 0; }\n.special-offer__content p { text-align: center; }\nfooter * { text-align: center; }\n.content-area--two-column .content-area__content .entry__content:first-child { padding-bottom: 0px; }\n.rl-padding-fix.content-area--two-column .content-area__content .entry__content:first-child { padding-bottom: 25px; }\n}\n@media (max-width: 520px){\n.header__branding .header__branding-logo { height: auto!important; }\n.header__branding-title { width: calc(100% - 36px)!important; }\n}\n/* End */\n\n/* AP 1/23/20 */\n#menu-utility-right a{font-size:1.25em;}\n.header__utility a{text-align:center;}','reach.service-out-slow','','publish','closed','closed','','reach-service-out-slow','','','2020-01-23 21:06:50','2020-01-23 21:06:50','',0,'https://dev-rl-emerson.pantheonsite.io/reach-service-out-slow/',0,'custom_css','',0),(484,2,'2019-01-09 19:06:22','2019-01-09 19:06:22',' ','','','publish','closed','closed','','484','','','2019-12-23 15:14:32','2019-12-23 15:14:32','',0,'https://dev-rl-emerson.pantheonsite.io/484/',1,'nav_menu_item','',0),(488,2,'2019-02-15 17:49:12','2019-02-15 17:49:12','','LocalIQ_Powered_lgt (1)','','inherit','open','closed','','localiq_powered_lgt-1','','','2019-02-15 17:49:19','2019-02-15 17:49:19','',0,'https://dev-rl-emerson.pantheonsite.io/wp-content/uploads/2019/02/LocalIQ_Powered_lgt-1.png',0,'attachment','image/png',0),(489,2,'2019-02-15 17:53:42','2019-02-15 17:53:42','','CTA','','publish','closed','closed','','cta','','','2021-01-04 08:10:39','2021-01-04 08:10:39','',0,'https://dev-rl-emerson.pantheonsite.io/?post_type=ctas&#038;p=489',0,'ctas','',0),(490,2,'2019-02-15 17:53:57','2019-02-15 17:53:57','<em>Last Updated: June 4th, 2018</em>\r\n\r\nThis privacy policy (the \"Policy\") is intended to inform you of the types of information [site-options field=\"privacy_company_name\"] (\"we\" or \"us\") collects, as well as our policies and practices regarding the collection, use, and disclosure of that information through the web pages at [site-options field=\"privacy_company_domain\"] (the \"Site\").\r\n\r\nPlease read this Policy carefully, because by using the Site, you are acknowledging that you understand and agree to the terms of this Policy, and consent to the manner in which we may collect, use and disclose the foregoing information. If you do not agree to the terms of this Policy, please do not use the Site.\r\n\r\nWe reserve the right to change the provisions of this Policy at any time. We will alert you that changes have been made by indicating on the Policy the date it was updated. We encourage you to review this Policy from time to time to make sure that you understand how any Personal Information you provide will be used. Your continued use of the Site following the posting of changes to these terms will mean you accept those changes.\r\n\r\nThis Policy applies solely to information collected by the Site. It will notify you of the following:\r\n\r\n<a href=\"#info\">What Information Do We Collect?</a>\r\n\r\n<a href=\"#use\">How Do We Use Your Information?</a>\r\n\r\n<a href=\"#share\">Do We Share Your Information?</a>\r\n\r\n<a href=\"#rights\">Your Privacy Rights -- Access to and Control Over Information</a>\r\n\r\n<a href=\"#opt-out\">How to Opt-Out of Targeted Advertising</a>\r\n\r\n<a href=\"#other-sites\">Does This Policy Apply to Other Websites Linked To Or From the Site?</a>\r\n\r\n<a href=\"#children\">Do We Collect Information From Children Under the Age of 13?</a>\r\n\r\n<a href=\"#protect\">What Steps Do We Take To Protect Your Information?</a>\r\n<div id=\"info\"></div>\r\n<strong><u>What Information Do We Collect?</u></strong>\r\n<ul>\r\n 	<li><em>Personal Information You Provide to Us - </em>We only have access to and collect personal information (such as your name, date of birth, social security number, credit card number, mailing or billing address, telephone number, or email address, and email preferences (collectively, \"Personal Information\") that you voluntarily give us via email or other direct contact from you. We will not sell or rent your Personal Information to anyone. We are the sole owners of the Personal Information collected on this Site.</li>\r\n 	<li><em>Information Collected by Automated Means - </em>Whenever you use the Site, we, as well as any of our third-party advertisers and/or service providers, may use a variety of technologies that automatically collect information about how the Site is accessed and used (\"Usage Information\"). Usage Information may include, in part, browser type, operating system, the page served, the time, how many users visited the Site, and the website you visited immediately before the Site. This statistical data provides us with information about the use of the Site, such as how many visitors visit a specific page on the Site, how long they stay on that page, and which hyperlinks, if any, they \"click\" on. Usage Information helps us to keep the Site fresh and interesting to our visitors and to tailor content to a visitor\'s interests. Usage Information is generally non-identifying, but if we associate it with you as a specific and identifiable person, we treat it as Personal Information.</li>\r\n 	<li><em>Device Identifiers </em>- In the course of collecting Usage Information we may also collect your IP address, MAC Address or other unique identifier (each a \"Device Identifier\") for the computer, mobile device, Wi-Fi card, or other technology (collectively, \"Device\") you use to access the Site. A Device Identifier is a number that is automatically assigned to your Device when you access a web site or its servers. Our computers identify your Device by its Device Identifier. When you visit the Sites, we may view your Device Identifier. We use this information to identify repeat visitors to our Site. We also may use this information to send you targeted advertisements and to enhance the Site. We may associate your Device Identifier with your Personal Information.</li>\r\n</ul>\r\nThe technologies used on the Site, including Device Identifiers, to collect Usage Information may include, without limitation:\r\n<ul>\r\n 	<li><em>Cookies</em> - Cookies are data files placed on a Device when it is used to visit the Site. We may use cookies to collect and store certain information about you. We may use both session cookies (which expire once you close your web browser) and persistent cookies (which stay on your computer until you delete them).</li>\r\n 	<li><em>Web Beacons</em> - We may also include web beacons (also known as web bugs, Internet tags, pixel tags, tracking pixels and clear GIFs) with the content and ads that we deliver to you, which we will use to collect information regarding your interaction with our content and ads. A web beacon is a transparent graphic image placed on a web page or in an email, which indicates that a page or email has been viewed or that an email has been forwarded. In addition, a web beacon allows third parties to obtain information such as the IP address of the computer that downloaded the page on which the beacon appears, the URL of the page on which the beacon appears, the time the page containing the beacon was viewed, the type of browser used to view the page, and the information in cookies set by the third party. A web beacon may also tell your browser to get content from another server.</li>\r\n</ul>\r\nCookies and web beacons (together, \"Site Cookies\") may enable us to track and target the interests of our users to enhance the experience on our Site, track user actions/behavior on our Site and track the effectiveness of ads.\r\n\r\n<em>ReachLocal</em>\r\n\r\nWe also work with a company called ReachLocal, which assists us in advertising our products and/or services. One of the products that we may purchase from ReachLocal is a retargeting product, which enables ReachLocal to show you advertisements for our Site when you visit other sites in the ReachLocal network or in third-party networks. ReachLocal is able to do this through the use of cookies that are provided by ReachLocal through its third-party partners (\"Advertising Cookies\"). The sole use of the Advertising Cookies is to show you advertisements for our Site; they are not being used to target you in any other way. Moreover, ReachLocal does not link or otherwise connect the information in the Advertising Cookies to any Personal Information that you may have provided.\r\n\r\nPlease note that ReachLocal retains the ability to access all information that is retained in the ReachLocal Platform for purposes of quality assurance and campaign assessment.\r\n\r\nIf you have any questions regarding ReachLocal and/or the Advertising Cookies, you are encouraged to contact ReachLocal at <a class=\"rl-no-form\" href=\"mailto:privacy@reachlocal.com\">privacy@reachlocal.com</a>.\r\n\r\n<em>Analytics</em>\r\n\r\nWe use two products to analyze activity on our site. We use ReachLocal\'s tracking technology and/or Google Analytics to understand how users use our site so as to enhance the user experience on our Site. If you wish to opt-out of ReachLocal\'s tracking technologies, go to <a href=\"http://www.reachlocal.com/trackingopt-out\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http://www.reachlocal.com/trackingopt-out</a>, and if you wish to opt-out of Google Analytics, go to <a href=\"https://tools.google.com/dlpage/gaoptout?hl=en-GB\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https://tools.google.com/dlpage/gaoptout?hl=en-GB</a>.\r\n<div id=\"use\"></div>\r\n<strong><u>How Do We Use Your Information?</u></strong>\r\n\r\nWe will use your information to respond to you regarding the reason you contacted us. We will also use your information as follows:\r\n<ul>\r\n 	<li><em>Registration </em>- A user may need to first complete a registration form in order to use the Site. During registration, a user is required to give certain information (such as name and email address). This information is used to contact you about the products/services on our Site in which you have expressed interest. At your option, you may also provide demographic information (such as gender or age) about yourself, but it is not required.</li>\r\n 	<li><em>Orders</em> - We may request information from you on our order form. To buy from us, you must provide contact information (like name and shipping address) and financial information (like credit card number, expiration date). This information is used for billing purposes and to fill your orders. If we have trouble processing an order, we will use this contact information to contact you.</li>\r\n 	<li><em>Surveys and contests - </em>From time-to-time, our Site may request information via surveys or contests. Participation in these surveys or contests is completely voluntary and you may choose whether or not to participate and therefore disclose this information. Information requested may include contact information (such as name and shipping address), and demographic information (such as zip code, age level). Contact information will be used to notify the winners and award prizes. Survey information will be used for purposes of monitoring or improving the use and satisfaction of this Site.</li>\r\n 	<li><em>Customer Service - </em>Unless you ask us not to, we may contact you via email in the future to tell you about specials, new products or services, or changes to this Policy.</li>\r\n 	<li><em>Chat –</em> Our Site may use chat functionality to enable direct communication with you through our Site. We will primarily use such information to assess your needs and to gain your contact information so that we may contact you to further discuss our products and/or services.</li>\r\n</ul>\r\n<div id=\"share\"></div>\r\n<strong><u>Do We Share Your Information?</u></strong>\r\n\r\nWe will not trade, rent, share or sell your Personal Information to third parties unless you ask or authorize us to do so.\r\n\r\nUnless you ask or provide your consent to do so, we will not share your Personal Information with any third party outside of our organization, other than with our service providers, including as necessary to fulfill your request, e.g. to ship an order. Only employees who need the Personal Information to perform a specific job (for example, billing or customer service) are granted access to Personal Information. The computers/servers in which we store Personal Information are kept in a secure environment.\r\n\r\nWe may share aggregated demographic information with our partners and advertisers. This is not linked to any Personal Information that can identify any individual person.\r\n\r\nWe will disclose Personal Information when we believe in good faith that such disclosures (a) are required by law, including, for example, to comply with a court order or subpoena, or (b) will help to: enforce our policies; enforce contest, sweepstakes, promotions, and/or game rules; protect your safety or security, including the safety and security of property that belongs to you; and/or, protect the safety and security of our Site or third parties. In addition, if [site-options field=\"privacy_company_name\"] or all of its assets are acquired, all of the data collected by us through the Site and through other means and services provided by us would be among the transferred assets.\r\n<div id=\"rights\"></div>\r\n<strong><u>Your Privacy Rights -- Access to and Control Over Information</u></strong>\r\n\r\nWe offer you choices regarding the collection, use, and sharing of your Personal Information. If you receive promotional communications from us, you may indicate a preference to stop receiving further promotional communications from us and you will have the opportunity to \"opt-out\" by following the unsubscribe instructions provided in the promotional email you receive or by contacting us directly at the email address or phone number given on our Site. We do not charge for this service, and your opt-out request will be processed within 30 days of the date on which we receive it.\r\n\r\nYou can do the following at any time by contacting us via the email address or phone number given on our Site:\r\n<ul>\r\n 	<li>See what data we have about you; if any.</li>\r\n 	<li>Change/correct any data we have about you.</li>\r\n 	<li>Have us delete any data we have about you.</li>\r\n 	<li>Notify us if you do not want us to share your Personal Information for marketing and promotional purposes.</li>\r\n</ul>\r\n<div id=\"opt-out\"></div>\r\n<strong><u>How to Opt-Out of Targeted Advertising</u></strong>\r\n\r\nYou can set most web browsers to notify you if you receive a cookie, or you may choose to block cookies, though either of those actions may affect the use of our Site. If you prefer to not receive targeted advertising, you can opt out of some network advertising programs that use your information. To do so please visit the Digital Advertising Alliance (DAA) Opt-Out Page: <a href=\"http://www.aboutads.info/choices/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http://www.aboutads.info/choices/</a>. Please note that even if you choose to remove your information (via opting out), you will still see advertisements while you are browsing online. However, the advertisements you see may be less relevant to you and your interests. Additionally, many network advertising programs allow you to view and manage the interest categories they have compiled from your online browsing activities. These interest categories help determine the types of targeted advertisements you may receive. The DAA Opt-Out Page provides a tool that identifies its member companies that have cookies on your browser and provides links to those companies\' pages where you can opt-out of receiving targeted advertisements from companies.\r\n\r\nWhile the Site does not currently respond to ‘Do Not Track’ signals submitted by your browser, you can opt out of any of the Advertising Cookies at any time by simply visiting <a href=\"http://www.reachlocal.com/opt-out\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http://www.reachlocal.com/opt-out</a> to adjust your preferences on placement of Advertising Cookies currently used in connection with ReachLocal’s remarketing product. You can also find out more about your ‘Do Not Track’ options by visiting <a href=\"http://www.allaboutdnt.com/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http://www.allaboutDNT.com</a>.\r\n<div id=\"other-sites\"></div>\r\n<strong><u>Does This Policy Apply to Other Websites Linked To Or From the Site?</u></strong>\r\n\r\nThe Site may contain links to other websites. Any Personal Information you provide on linked pages or sites is provided directly to that third party and is subject to that third party\'s privacy policy. This Policy does not apply to such linked sites, and we are not responsible for the content or privacy and security practices and policies of these websites or any other sites that are linked to or from the Site. We encourage you to learn about their privacy and security practices and policies before providing them with Personal Information.\r\n<div id=\"children\"></div>\r\n<strong><u>Do We Collect Information From Children Under the Age of 13?</u></strong>\r\n\r\nThe Site is not intended for use by children under the age of 13, and [site-options field=\"privacy_company_name\"] does not knowingly collect or use any Personal Information from such children. If we become aware that we have unknowingly collected Personal Information from a child under the age of 13, we will make commercially reasonable efforts to delete such Personal Information from our database.\r\n<div id=\"protect\"></div>\r\n<strong><u>What Steps Do We Take To Protect Your Information?</u></strong>\r\n\r\nWe take measures designed to protect your Personal Information in an effort to prevent loss, misuse, and unauthorized access, disclosure, alteration, and destruction. We provide physical, electronic, and procedural safeguards to protect Personal Information we process and maintain. Please be aware, however, that despite our efforts, no security measures are perfect or impenetrable and no method of data transmission can be guaranteed against any interception or other types of misuse. To protect the confidentiality of Personal Information maintained in your account, you must keep your password confidential and not disclose it to any other person. You are responsible for all uses of the Site by any person using your password. Please advise us immediately if you believe your password has been misused.\r\n\r\n<strong><u>Miscellaneous</u></strong>\r\n\r\nThis Policy and the privacy practices of [site-options field=\"privacy_company_name\"] will be subject exclusively to the laws of the State of [site-options field=\'privacy_company_state\'] in the United States. [site-options field=\"privacy_company_name\"] makes no representation that this Policy and our practices comply with the laws of any other country or jurisdiction. Users of the Site who reside outside the United States do so on their own initiative and are responsible for compliance with local laws, if and to the extent local laws are applicable. If you reside outside of the United States, by using the Site, you consent to the transfer, processing, and use of your information outside of your country.\r\n\r\n<strong><u>Questions?</u></strong>\r\n\r\nIf you have any questions about this Policy, please contact us at [site-options field=\"privacy_company_address\"], or call us at <span style=\"white-space: nowrap;\"><a href=\"tel:[site-options field=\'privacy_company_number\']\">[site-options field=\'privacy_company_number\']</a></span>.','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',0,'https://dev-rl-emerson.pantheonsite.io/privacy-policy/',0,'page','',0),(491,2,'2019-02-15 17:54:17','2019-02-15 17:54:17','','Thank You','','inherit','closed','closed','','429-revision-v1','','','2019-02-15 17:54:17','2019-02-15 17:54:17','',429,'https://dev-rl-emerson.pantheonsite.io/429-revision-v1/',0,'revision','',0),(500,2,'2019-02-15 18:03:25','2019-02-15 18:03:25','','HVAC','','publish','closed','closed','','hvac','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',569,'https://dev-rl-emerson.pantheonsite.io/?page_id=500',0,'page','',0),(505,2,'2019-02-15 18:03:55','2019-02-15 18:03:55',' ','','','publish','closed','closed','','505','','','2019-02-15 18:03:55','2019-02-15 18:03:55','',0,'https://dev-rl-emerson.pantheonsite.io/?p=505',1,'nav_menu_item','',0),(506,2,'2019-02-15 18:04:03','2019-02-15 18:04:03',' ','','','publish','closed','closed','','506','','','2019-12-23 15:14:14','2019-12-23 15:14:14','',569,'https://dev-rl-emerson.pantheonsite.io/?p=506',2,'nav_menu_item','',0),(512,2,'2019-06-13 21:19:17','2019-06-13 21:19:17','<em>Last Updated: June 4th, 2018</em>\r\n\r\nThis privacy policy (the \"Policy\") is intended to inform you of the types of information [site-options field=\"privacy_company_name\"] (\"we\" or \"us\") collects, as well as our policies and practices regarding the collection, use, and disclosure of that information through the web pages at [site-options field=\"privacy_company_domain\"] (the \"Site\").\r\n\r\nPlease read this Policy carefully, because by using the Site, you are acknowledging that you understand and agree to the terms of this Policy, and consent to the manner in which we may collect, use and disclose the foregoing information. If you do not agree to the terms of this Policy, please do not use the Site.\r\n\r\nWe reserve the right to change the provisions of this Policy at any time. We will alert you that changes have been made by indicating on the Policy the date it was updated. We encourage you to review this Policy from time to time to make sure that you understand how any Personal Information you provide will be used. Your continued use of the Site following the posting of changes to these terms will mean you accept those changes.\r\n\r\nThis Policy applies solely to information collected by the Site. It will notify you of the following:\r\n\r\n<a href=\"#info\">What Information Do We Collect?</a>\r\n\r\n<a href=\"#use\">How Do We Use Your Information?</a>\r\n\r\n<a href=\"#share\">Do We Share Your Information?</a>\r\n\r\n<a href=\"#rights\">Your Privacy Rights -- Access to and Control Over Information</a>\r\n\r\n<a href=\"#opt-out\">How to Opt-Out of Targeted Advertising</a>\r\n\r\n<a href=\"#other-sites\">Does This Policy Apply to Other Websites Linked To Or From the Site?</a>\r\n\r\n<a href=\"#children\">Do We Collect Information From Children Under the Age of 13?</a>\r\n\r\n<a href=\"#protect\">What Steps Do We Take To Protect Your Information?</a>\r\n<div id=\"info\"></div>\r\n<strong><u>What Information Do We Collect?</u></strong>\r\n<ul>\r\n 	<li><em>Personal Information You Provide to Us - </em>We only have access to and collect personal information (such as your name, date of birth, social security number, credit card number, mailing or billing address, telephone number, or email address, and email preferences (collectively, \"Personal Information\") that you voluntarily give us via email or other direct contact from you. We will not sell or rent your Personal Information to anyone. We are the sole owners of the Personal Information collected on this Site.</li>\r\n 	<li><em>Information Collected by Automated Means - </em>Whenever you use the Site, we, as well as any of our third-party advertisers and/or service providers, may use a variety of technologies that automatically collect information about how the Site is accessed and used (\"Usage Information\"). Usage Information may include, in part, browser type, operating system, the page served, the time, how many users visited the Site, and the website you visited immediately before the Site. This statistical data provides us with information about the use of the Site, such as how many visitors visit a specific page on the Site, how long they stay on that page, and which hyperlinks, if any, they \"click\" on. Usage Information helps us to keep the Site fresh and interesting to our visitors and to tailor content to a visitor\'s interests. Usage Information is generally non-identifying, but if we associate it with you as a specific and identifiable person, we treat it as Personal Information.</li>\r\n 	<li><em>Device Identifiers </em>- In the course of collecting Usage Information we may also collect your IP address, MAC Address or other unique identifier (each a \"Device Identifier\") for the computer, mobile device, Wi-Fi card, or other technology (collectively, \"Device\") you use to access the Site. A Device Identifier is a number that is automatically assigned to your Device when you access a web site or its servers. Our computers identify your Device by its Device Identifier. When you visit the Sites, we may view your Device Identifier. We use this information to identify repeat visitors to our Site. We also may use this information to send you targeted advertisements and to enhance the Site. We may associate your Device Identifier with your Personal Information.</li>\r\n</ul>\r\nThe technologies used on the Site, including Device Identifiers, to collect Usage Information may include, without limitation:\r\n<ul>\r\n 	<li><em>Cookies</em> - Cookies are data files placed on a Device when it is used to visit the Site. We may use cookies to collect and store certain information about you. We may use both session cookies (which expire once you close your web browser) and persistent cookies (which stay on your computer until you delete them).</li>\r\n 	<li><em>Web Beacons</em> - We may also include web beacons (also known as web bugs, Internet tags, pixel tags, tracking pixels and clear GIFs) with the content and ads that we deliver to you, which we will use to collect information regarding your interaction with our content and ads. A web beacon is a transparent graphic image placed on a web page or in an email, which indicates that a page or email has been viewed or that an email has been forwarded. In addition, a web beacon allows third parties to obtain information such as the IP address of the computer that downloaded the page on which the beacon appears, the URL of the page on which the beacon appears, the time the page containing the beacon was viewed, the type of browser used to view the page, and the information in cookies set by the third party. A web beacon may also tell your browser to get content from another server.</li>\r\n</ul>\r\nCookies and web beacons (together, \"Site Cookies\") may enable us to track and target the interests of our users to enhance the experience on our Site, track user actions/behavior on our Site and track the effectiveness of ads.\r\n\r\n<em>ReachLocal</em>\r\n\r\nWe also work with a company called ReachLocal, which assists us in advertising our products and/or services. One of the products that we may purchase from ReachLocal is a retargeting product, which enables ReachLocal to show you advertisements for our Site when you visit other sites in the ReachLocal network or in third-party networks. ReachLocal is able to do this through the use of cookies that are provided by ReachLocal through its third-party partners (\"Advertising Cookies\"). The sole use of the Advertising Cookies is to show you advertisements for our Site; they are not being used to target you in any other way. Moreover, ReachLocal does not link or otherwise connect the information in the Advertising Cookies to any Personal Information that you may have provided.\r\n\r\nPlease note that ReachLocal retains the ability to access all information that is retained in the ReachLocal Platform for purposes of quality assurance and campaign assessment.\r\n\r\nIf you have any questions regarding ReachLocal and/or the Advertising Cookies, you are encouraged to contact ReachLocal at <a class=\"rl-no-form\" href=\"mailto:privacy@reachlocal.com\">privacy@reachlocal.com</a>.\r\n\r\n<em>Analytics</em>\r\n\r\nWe use two products to analyze activity on our site. We use ReachLocal\'s tracking technology and/or Google Analytics to understand how users use our site so as to enhance the user experience on our Site. If you wish to opt-out of ReachLocal\'s tracking technologies, go to <a href=\"http://www.reachlocal.com/trackingopt-out\" target=\"_blank\" rel=\"nofollow noopener\">http://www.reachlocal.com/trackingopt-out</a>, and if you wish to opt-out of Google Analytics, go to <a href=\"https://tools.google.com/dlpage/gaoptout?hl=en-GB\" target=\"_blank\" rel=\"nofollow noopener\">https://tools.google.com/dlpage/gaoptout?hl=en-GB</a>.\r\n<div id=\"use\"></div>\r\n<strong><u>How Do We Use Your Information?</u></strong>\r\n\r\nWe will use your information to respond to you regarding the reason you contacted us. We will also use your information as follows:\r\n<ul>\r\n 	<li><em>Registration </em>- A user may need to first complete a registration form in order to use the Site. During registration, a user is required to give certain information (such as name and email address). This information is used to contact you about the products/services on our Site in which you have expressed interest. At your option, you may also provide demographic information (such as gender or age) about yourself, but it is not required.</li>\r\n 	<li><em>Orders</em> - We may request information from you on our order form. To buy from us, you must provide contact information (like name and shipping address) and financial information (like credit card number, expiration date). This information is used for billing purposes and to fill your orders. If we have trouble processing an order, we will use this contact information to contact you.</li>\r\n 	<li><em>Surveys and contests - </em>From time-to-time, our Site may request information via surveys or contests. Participation in these surveys or contests is completely voluntary and you may choose whether or not to participate and therefore disclose this information. Information requested may include contact information (such as name and shipping address), and demographic information (such as zip code, age level). Contact information will be used to notify the winners and award prizes. Survey information will be used for purposes of monitoring or improving the use and satisfaction of this Site.</li>\r\n 	<li><em>Customer Service - </em>Unless you ask us not to, we may contact you via email in the future to tell you about specials, new products or services, or changes to this Policy.</li>\r\n 	<li><em>Chat –</em> Our Site may use chat functionality to enable direct communication with you through our Site. We will primarily use such information to assess your needs and to gain your contact information so that we may contact you to further discuss our products and/or services.</li>\r\n</ul>\r\n<div id=\"share\"></div>\r\n<strong><u>Do We Share Your Information?</u></strong>\r\n\r\nWe will not trade, rent, share or sell your Personal Information to third parties unless you ask or authorize us to do so.\r\n\r\nUnless you ask or provide your consent to do so, we will not share your Personal Information with any third party outside of our organization, other than with our service providers, including as necessary to fulfill your request, e.g. to ship an order. Only employees who need the Personal Information to perform a specific job (for example, billing or customer service) are granted access to Personal Information. The computers/servers in which we store Personal Information are kept in a secure environment.\r\n\r\nWe may share aggregated demographic information with our partners and advertisers. This is not linked to any Personal Information that can identify any individual person.\r\n\r\nWe will disclose Personal Information when we believe in good faith that such disclosures (a) are required by law, including, for example, to comply with a court order or subpoena, or (b) will help to: enforce our policies; enforce contest, sweepstakes, promotions, and/or game rules; protect your safety or security, including the safety and security of property that belongs to you; and/or, protect the safety and security of our Site or third parties. In addition, if [site-options field=\"privacy_company_name\"] or all of its assets are acquired, all of the data collected by us through the Site and through other means and services provided by us would be among the transferred assets.\r\n<div id=\"rights\"></div>\r\n<strong><u>Your Privacy Rights -- Access to and Control Over Information</u></strong>\r\n\r\nWe offer you choices regarding the collection, use, and sharing of your Personal Information. If you receive promotional communications from us, you may indicate a preference to stop receiving further promotional communications from us and you will have the opportunity to \"opt-out\" by following the unsubscribe instructions provided in the promotional email you receive or by contacting us directly at the email address or phone number given on our Site. We do not charge for this service, and your opt-out request will be processed within 30 days of the date on which we receive it.\r\n\r\nYou can do the following at any time by contacting us via the email address or phone number given on our Site:\r\n<ul>\r\n 	<li>See what data we have about you; if any.</li>\r\n 	<li>Change/correct any data we have about you.</li>\r\n 	<li>Have us delete any data we have about you.</li>\r\n 	<li>Notify us if you do not want us to share your Personal Information for marketing and promotional purposes.</li>\r\n</ul>\r\n<div id=\"opt-out\"></div>\r\n<strong><u>How to Opt-Out of Targeted Advertising</u></strong>\r\n\r\nYou can set most web browsers to notify you if you receive a cookie, or you may choose to block cookies, though either of those actions may affect the use of our Site. If you prefer to not receive targeted advertising, you can opt out of some network advertising programs that use your information. To do so please visit the Digital Advertising Alliance (DAA) Opt-Out Page: <a href=\"http://www.aboutads.info/choices/\" target=\"_blank\" rel=\"nofollow noopener\">http://www.aboutads.info/choices/</a>. Please note that even if you choose to remove your information (via opting out), you will still see advertisements while you are browsing online. However, the advertisements you see may be less relevant to you and your interests. Additionally, many network advertising programs allow you to view and manage the interest categories they have compiled from your online browsing activities. These interest categories help determine the types of targeted advertisements you may receive. The DAA Opt-Out Page provides a tool that identifies its member companies that have cookies on your browser and provides links to those companies\' pages where you can opt-out of receiving targeted advertisements from companies.\r\n\r\nWhile the Site does not currently respond to ‘Do Not Track’ signals submitted by your browser, you can opt out of any of the Advertising Cookies at any time by simply visiting <a href=\"http://www.reachlocal.com/opt-out\" target=\"_blank\" rel=\"nofollow noopener\">http://www.reachlocal.com/opt-out</a> to adjust your preferences on placement of Advertising Cookies currently used in connection with ReachLocal’s remarketing product. You can also find out more about your ‘Do Not Track’ options by visiting <a href=\"http://www.allaboutdnt.com/\" target=\"_blank\" rel=\"nofollow noopener\">http://www.allaboutDNT.com</a>.\r\n<div id=\"other-sites\"></div>\r\n<strong><u>Does This Policy Apply to Other Websites Linked To Or From the Site?</u></strong>\r\n\r\nThe Site may contain links to other websites. Any Personal Information you provide on linked pages or sites is provided directly to that third party and is subject to that third party\'s privacy policy. This Policy does not apply to such linked sites, and we are not responsible for the content or privacy and security practices and policies of these websites or any other sites that are linked to or from the Site. We encourage you to learn about their privacy and security practices and policies before providing them with Personal Information.\r\n<div id=\"children\"></div>\r\n<strong><u>Do We Collect Information From Children Under the Age of 13?</u></strong>\r\n\r\nThe Site is not intended for use by children under the age of 13, and [site-options field=\"privacy_company_name\"] does not knowingly collect or use any Personal Information from such children. If we become aware that we have unknowingly collected Personal Information from a child under the age of 13, we will make commercially reasonable efforts to delete such Personal Information from our database.\r\n<div id=\"protect\"></div>\r\n<strong><u>What Steps Do We Take To Protect Your Information?</u></strong>\r\n\r\nWe take measures designed to protect your Personal Information in an effort to prevent loss, misuse, and unauthorized access, disclosure, alteration, and destruction. We provide physical, electronic, and procedural safeguards to protect Personal Information we process and maintain. Please be aware, however, that despite our efforts, no security measures are perfect or impenetrable and no method of data transmission can be guaranteed against any interception or other types of misuse. To protect the confidentiality of Personal Information maintained in your account, you must keep your password confidential and not disclose it to any other person. You are responsible for all uses of the Site by any person using your password. Please advise us immediately if you believe your password has been misused.\r\n\r\n<strong><u>Miscellaneous</u></strong>\r\n\r\nThis Policy and the privacy practices of [site-options field=\"privacy_company_name\"] will be subject exclusively to the laws of the State of [site-options field=\'privacy_company_state\'] in the United States. [site-options field=\"privacy_company_name\"] makes no representation that this Policy and our practices comply with the laws of any other country or jurisdiction. Users of the Site who reside outside the United States do so on their own initiative and are responsible for compliance with local laws, if and to the extent local laws are applicable. If you reside outside of the United States, by using the Site, you consent to the transfer, processing, and use of your information outside of your country.\r\n\r\n<strong><u>Questions?</u></strong>\r\n\r\nIf you have any questions about this Policy, please contact us at [site-options field=\"privacy_company_address\"], or call us at <span style=\"white-space: nowrap;\"><a href=\"tel:[site-options field=\'privacy_company_number\']\">[site-options field=\'privacy_company_number\']</a></span>.','Privacy Policy','','inherit','closed','closed','','490-revision-v1','','','2019-06-13 21:19:17','2019-06-13 21:19:17','',490,'https://dev-rl-emerson.pantheonsite.io/490-revision-v1/',0,'revision','',0),(523,2,'2019-10-18 22:24:53','2019-10-18 22:24:53','','SEO Template','','draft','closed','closed','','seo-template','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',0,'https://dev-rl-emerson.pantheonsite.io/?page_id=523',0,'page','',0),(528,2,'2019-10-18 22:28:03','2019-10-18 22:28:03','','SEO Template','','inherit','closed','closed','','523-revision-v1','','','2019-10-18 22:28:03','2019-10-18 22:28:03','',523,'https://dev-rl-emerson.pantheonsite.io/blog/523-revision-v1/',0,'revision','',0),(529,2,'2019-10-18 22:29:25','2019-10-18 22:29:25','','SEO Template','','inherit','closed','closed','','523-revision-v1','','','2019-10-18 22:29:25','2019-10-18 22:29:25','',523,'https://dev-rl-emerson.pantheonsite.io/blog/523-revision-v1/',0,'revision','',0),(530,2,'2019-10-18 22:30:38','2019-10-18 22:30:38','','SEO Template','','inherit','closed','closed','','523-revision-v1','','','2019-10-18 22:30:38','2019-10-18 22:30:38','',523,'https://dev-rl-emerson.pantheonsite.io/blog/523-revision-v1/',0,'revision','',0),(532,2,'2019-12-23 14:40:06','2019-12-23 14:40:06','','bg_mann-bldg','','inherit','open','closed','','bg_mann-bldg','','','2019-12-23 15:51:09','2019-12-23 15:51:09','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/bg_mann-bldg.jpg',0,'attachment','image/jpeg',0),(533,2,'2019-12-23 14:40:12','2019-12-23 14:40:12','','CTA_Interior','','inherit','open','closed','','cta_interior','','','2019-12-23 15:51:15','2019-12-23 15:51:15','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/CTA_Interior.jpg',0,'attachment','image/jpeg',0),(536,2,'2019-12-23 14:40:28','2019-12-23 14:40:28','','Hero_home_mobile','','inherit','open','closed','','hero_home_mobile','','','2019-12-23 15:51:22','2019-12-23 15:51:22','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/Hero_home_mobile.jpg',0,'attachment','image/jpeg',0),(537,2,'2019-12-23 14:40:32','2019-12-23 14:40:32','','Hero_home_web','','inherit','open','closed','','hero_home_web','','','2019-12-23 15:51:26','2019-12-23 15:51:26','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/Hero_home_web.jpg',0,'attachment','image/jpeg',0),(538,2,'2019-12-23 14:40:38','2019-12-23 14:40:38','','Hero_Interior','','inherit','open','closed','','hero_interior','','','2019-12-23 15:51:32','2019-12-23 15:51:32','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/Hero_Interior.jpg',0,'attachment','image/jpeg',0),(540,2,'2019-12-23 14:40:48','2019-12-23 14:40:48','','Mann_favicon','','inherit','open','closed','','mann_favicon','','','2019-12-23 15:51:43','2019-12-23 15:51:43','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/Mann_favicon.png',0,'attachment','image/png',0),(541,2,'2019-12-23 14:40:51','2019-12-23 14:40:51','','Mann_logo','','inherit','open','closed','','mann_logo','','','2019-12-23 15:51:44','2019-12-23 15:51:44','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/Mann_logo.png',0,'attachment','image/png',0),(547,2,'2019-12-23 14:47:09','2019-12-23 14:47:09','https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/cropped-Mann_favicon.png','cropped-Mann_favicon.png','','inherit','open','closed','','cropped-mann_favicon-png','','','2019-12-23 14:47:09','2019-12-23 14:47:09','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/cropped-Mann_favicon.png',0,'attachment','image/png',0),(550,2,'2019-12-23 14:48:11','2019-12-23 14:48:11','','6210 Lincoln Way E, Fayetteville, PA 17222','','publish','closed','closed','','6210-lincoln-way-e-fayetteville-pa-17222','','','2019-12-23 14:48:11','2019-12-23 14:48:11','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/6210-lincoln-way-e-fayetteville-pa-17222/',1,'nav_menu_item','',0),(551,2,'2019-12-23 14:48:11','2019-12-23 14:48:11','','717-352-9549','','publish','closed','closed','','717-352-9549','','','2019-12-23 14:48:11','2019-12-23 14:48:11','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/717-352-9549/',1,'nav_menu_item','',0),(554,2,'2019-12-23 14:53:47','2019-12-23 14:53:47','','service-2','','inherit','open','closed','','service-2','','','2019-12-23 15:51:50','2019-12-23 15:51:50','',5,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/service-2.jpg',0,'attachment','image/jpeg',0),(555,2,'2019-12-23 14:53:50','2019-12-23 14:53:50','','service-1','','inherit','open','closed','','service-1','','','2019-12-23 15:51:54','2019-12-23 15:51:54','',5,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/service-1.jpg',0,'attachment','image/jpeg',0),(556,2,'2019-12-23 14:53:54','2019-12-23 14:53:54','','service-3','','inherit','open','closed','','service-3','','','2019-12-23 15:51:58','2019-12-23 15:51:58','',5,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/service-3.jpg',0,'attachment','image/jpeg',0),(557,2,'2019-12-23 14:53:58','2019-12-23 14:53:58','','service-4','','inherit','open','closed','','service-4','','','2019-12-23 15:52:03','2019-12-23 15:52:03','',5,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/service-4.jpg',0,'attachment','image/jpeg',0),(560,2,'2019-12-23 14:56:58','2019-12-23 14:56:58','','mann-work-16','','inherit','open','closed','','mann-work-16','','','2019-12-23 15:52:07','2019-12-23 15:52:07','',5,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-16.jpg',0,'attachment','image/jpeg',0),(561,2,'2019-12-23 14:57:02','2019-12-23 14:57:02','','mann-work-12','','inherit','open','closed','','mann-work-12','','','2019-12-23 15:52:11','2019-12-23 15:52:11','',5,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-12.jpg',0,'attachment','image/jpeg',0),(562,2,'2019-12-23 14:57:06','2019-12-23 14:57:06','','mann-work-17','','inherit','open','closed','','mann-work-17','','','2019-12-23 15:52:15','2019-12-23 15:52:15','',5,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-17.jpg',0,'attachment','image/jpeg',0),(563,2,'2019-12-23 14:57:10','2019-12-23 14:57:10','','mann-work-14','','inherit','open','closed','','mann-work-14','','','2019-12-23 15:52:42','2019-12-23 15:52:42','',5,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-14.jpg',0,'attachment','image/jpeg',0),(569,2,'2019-12-23 15:07:54','2019-12-23 15:07:54','','Services','','publish','closed','closed','','services','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?page_id=569',0,'page','',0),(570,2,'2019-12-23 15:07:54','2019-12-23 15:07:54','','Services','','inherit','closed','closed','','569-revision-v1','','','2019-12-23 15:07:54','2019-12-23 15:07:54','',569,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/569-revision-v1/',0,'revision','',0),(572,2,'2019-12-23 15:08:36','2019-12-23 15:08:36','','Design / Build','','publish','closed','closed','','design-build','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',569,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?page_id=572',0,'page','',0),(574,2,'2019-12-23 15:08:44','2019-12-23 15:08:44','','Plumbing','','publish','closed','closed','','plumbing','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',569,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?page_id=574',0,'page','',0),(576,2,'2019-12-23 15:08:53','2019-12-23 15:08:53','','Excavation Services','','publish','closed','closed','','excavation-services','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',569,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?page_id=576',0,'page','',0),(578,2,'2019-12-23 15:10:59','2019-12-23 15:10:59','','Our Work','','publish','closed','closed','','our-work','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?page_id=578',0,'page','',0),(579,2,'2019-12-23 15:10:59','2019-12-23 15:10:59','','Our Work','','inherit','closed','closed','','578-revision-v1','','','2019-12-23 15:10:59','2019-12-23 15:10:59','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/578-revision-v1/',0,'revision','',0),(580,2,'2019-12-23 15:11:04','2019-12-23 15:11:04','','Testimonials','','publish','closed','closed','','testimonials','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?page_id=580',0,'page','',0),(582,2,'2019-12-23 15:11:08','2019-12-23 15:11:08','','Offers','','publish','closed','closed','','offers','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',590,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?page_id=582',0,'page','',0),(585,2,'2019-12-23 15:11:39','2019-12-23 15:11:39','','Meet Our Team','','publish','closed','closed','','meet-our-team','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',590,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?page_id=585',0,'page','',0),(586,2,'2019-12-23 15:12:05','2019-12-23 15:12:05','','Meet Our Team','','inherit','closed','closed','','585-revision-v1','','','2019-12-23 15:12:05','2019-12-23 15:12:05','',585,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/585-revision-v1/',0,'revision','',0),(587,2,'2019-12-23 15:12:10','2019-12-23 15:12:10','','Offers','','inherit','closed','closed','','582-revision-v1','','','2019-12-23 15:12:10','2019-12-23 15:12:10','',582,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/582-revision-v1/',0,'revision','',0),(588,2,'2019-12-23 15:12:11','2019-12-23 15:12:11','','Financing','','publish','closed','closed','','financing','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',590,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?page_id=588',0,'page','',0),(590,2,'2019-12-23 15:12:22','2019-12-23 15:12:22','','About Us','','publish','closed','closed','','about-us','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?page_id=590',0,'page','',0),(592,2,'2019-12-23 15:14:14','2019-12-23 15:14:14',' ','','','publish','closed','closed','','592','','','2019-12-23 15:14:14','2019-12-23 15:14:14','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=592',8,'nav_menu_item','',0),(593,2,'2019-12-23 15:14:15','2019-12-23 15:14:15',' ','','','publish','closed','closed','','593','','','2019-12-23 15:14:15','2019-12-23 15:14:15','',590,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=593',11,'nav_menu_item','',0),(594,2,'2019-12-23 15:14:14','2019-12-23 15:14:14',' ','','','publish','closed','closed','','594','','','2019-12-23 15:14:14','2019-12-23 15:14:14','',590,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=594',9,'nav_menu_item','',0),(595,2,'2019-12-23 15:14:15','2019-12-23 15:14:15',' ','','','publish','closed','closed','','595','','','2019-12-23 15:14:15','2019-12-23 15:14:15','',590,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=595',10,'nav_menu_item','',0),(596,2,'2019-12-23 15:14:14','2019-12-23 15:14:14',' ','','','publish','closed','closed','','596','','','2019-12-23 15:14:14','2019-12-23 15:14:14','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=596',7,'nav_menu_item','',0),(597,2,'2019-12-23 15:14:14','2019-12-23 15:14:14',' ','','','publish','closed','closed','','597','','','2019-12-23 15:14:14','2019-12-23 15:14:14','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=597',6,'nav_menu_item','',0),(598,2,'2019-12-23 15:14:14','2019-12-23 15:14:14',' ','','','publish','closed','closed','','598','','','2019-12-23 15:14:14','2019-12-23 15:14:14','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=598',1,'nav_menu_item','',0),(599,2,'2019-12-23 15:14:14','2019-12-23 15:14:14',' ','','','publish','closed','closed','','599','','','2019-12-23 15:14:14','2019-12-23 15:14:14','',569,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=599',5,'nav_menu_item','',0),(600,2,'2019-12-23 15:14:14','2019-12-23 15:14:14',' ','','','publish','closed','closed','','600','','','2019-12-23 15:14:14','2019-12-23 15:14:14','',569,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=600',4,'nav_menu_item','',0),(601,2,'2019-12-23 15:14:14','2019-12-23 15:14:14',' ','','','publish','closed','closed','','601','','','2019-12-23 15:14:14','2019-12-23 15:14:14','',569,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=601',3,'nav_menu_item','',0),(602,2,'2019-12-23 15:14:32','2019-12-23 15:14:32',' ','','','publish','closed','closed','','602','','','2019-12-23 15:14:32','2019-12-23 15:14:32','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=602',5,'nav_menu_item','',0),(603,2,'2019-12-23 15:14:32','2019-12-23 15:14:32',' ','','','publish','closed','closed','','603','','','2019-12-23 15:14:32','2019-12-23 15:14:32','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=603',4,'nav_menu_item','',0),(604,2,'2019-12-23 15:14:32','2019-12-23 15:14:32',' ','','','publish','closed','closed','','604','','','2019-12-23 15:14:32','2019-12-23 15:14:32','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=604',3,'nav_menu_item','',0),(605,2,'2019-12-23 15:14:32','2019-12-23 15:14:32',' ','','','publish','closed','closed','','605','','','2019-12-23 15:14:32','2019-12-23 15:14:32','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=605',2,'nav_menu_item','',0),(606,2,'2019-12-23 15:15:00','2019-12-23 15:15:00','','Services','','inherit','closed','closed','','569-revision-v1','','','2019-12-23 15:15:00','2019-12-23 15:15:00','',569,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/569-revision-v1/',0,'revision','',0),(607,2,'2019-12-23 15:27:51','2019-12-23 15:27:51','','mann-work-1','','inherit','open','closed','','mann-work-1','','','2019-12-23 15:29:44','2019-12-23 15:29:44','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-1.jpg',0,'attachment','image/jpeg',0),(608,2,'2019-12-23 15:27:56','2019-12-23 15:27:56','','mann-work-2','','inherit','open','closed','','mann-work-2','','','2019-12-23 15:29:45','2019-12-23 15:29:45','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-2.jpg',0,'attachment','image/jpeg',0),(609,2,'2019-12-23 15:28:00','2019-12-23 15:28:00','','mann-work-3','','inherit','open','closed','','mann-work-3','','','2019-12-23 15:29:50','2019-12-23 15:29:50','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-3.jpg',0,'attachment','image/jpeg',0),(610,2,'2019-12-23 15:28:04','2019-12-23 15:28:04','','mann-work-4','','inherit','open','closed','','mann-work-4','','','2019-12-23 15:29:54','2019-12-23 15:29:54','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-4.jpg',0,'attachment','image/jpeg',0),(611,2,'2019-12-23 15:28:11','2019-12-23 15:28:11','','mann-work-5','','inherit','open','closed','','mann-work-5','','','2019-12-23 15:29:59','2019-12-23 15:29:59','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-5.jpg',0,'attachment','image/jpeg',0),(612,2,'2019-12-23 15:28:15','2019-12-23 15:28:15','','mann-work-6','','inherit','open','closed','','mann-work-6','','','2019-12-23 15:30:05','2019-12-23 15:30:05','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-6.jpg',0,'attachment','image/jpeg',0),(613,2,'2019-12-23 15:28:22','2019-12-23 15:28:22','','mann-work-7','','inherit','open','closed','','mann-work-7','','','2019-12-23 15:30:09','2019-12-23 15:30:09','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-7.jpg',0,'attachment','image/jpeg',0),(614,2,'2019-12-23 15:28:26','2019-12-23 15:28:26','','mann-work-8','','inherit','open','closed','','mann-work-8','','','2019-12-23 15:30:12','2019-12-23 15:30:12','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-8.jpg',0,'attachment','image/jpeg',0),(615,2,'2019-12-23 15:28:31','2019-12-23 15:28:31','','mann-work-9','','inherit','open','closed','','mann-work-9','','','2019-12-23 15:30:17','2019-12-23 15:30:17','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-9.jpg',0,'attachment','image/jpeg',0),(616,2,'2019-12-23 15:28:35','2019-12-23 15:28:35','','mann-work-10','','inherit','open','closed','','mann-work-10','','','2019-12-23 15:30:21','2019-12-23 15:30:21','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-10.jpg',0,'attachment','image/jpeg',0),(617,2,'2019-12-23 15:28:40','2019-12-23 15:28:40','','mann-work-11','','inherit','open','closed','','mann-work-11','','','2019-12-23 15:30:26','2019-12-23 15:30:26','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-11.jpg',0,'attachment','image/jpeg',0),(618,2,'2019-12-23 15:28:44','2019-12-23 15:28:44','','mann-work-12','','inherit','open','closed','','mann-work-12-2','','','2019-12-23 15:30:31','2019-12-23 15:30:31','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-12-1.jpg',0,'attachment','image/jpeg',0),(619,2,'2019-12-23 15:28:48','2019-12-23 15:28:48','','mann-work-13','','inherit','open','closed','','mann-work-13','','','2019-12-23 15:30:34','2019-12-23 15:30:34','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-13.jpg',0,'attachment','image/jpeg',0),(620,2,'2019-12-23 15:28:54','2019-12-23 15:28:54','','mann-work-14','','inherit','open','closed','','mann-work-14-2','','','2019-12-23 15:30:37','2019-12-23 15:30:37','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-14-1.jpg',0,'attachment','image/jpeg',0),(621,2,'2019-12-23 15:28:59','2019-12-23 15:28:59','','mann-work-15','','inherit','open','closed','','mann-work-15','','','2019-12-23 15:30:44','2019-12-23 15:30:44','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-15.jpg',0,'attachment','image/jpeg',0),(622,2,'2019-12-23 15:29:04','2019-12-23 15:29:04','','mann-work-16','','inherit','open','closed','','mann-work-16-2','','','2019-12-23 15:30:49','2019-12-23 15:30:49','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-16-1.jpg',0,'attachment','image/jpeg',0),(623,2,'2019-12-23 15:29:09','2019-12-23 15:29:09','','mann-work-17','','inherit','open','closed','','mann-work-17-2','','','2019-12-23 15:30:50','2019-12-23 15:30:50','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-17-1.jpg',0,'attachment','image/jpeg',0),(624,2,'2019-12-23 15:29:14','2019-12-23 15:29:14','','mann-work-18','','inherit','open','closed','','mann-work-18','','','2019-12-23 15:30:52','2019-12-23 15:30:52','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-18.jpg',0,'attachment','image/jpeg',0),(625,2,'2019-12-23 15:29:21','2019-12-23 15:29:21','','mann-work-19','','inherit','open','closed','','mann-work-19','','','2019-12-23 15:30:54','2019-12-23 15:30:54','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-19.jpg',0,'attachment','image/jpeg',0),(626,2,'2019-12-23 15:29:25','2019-12-23 15:29:25','','mann-work-20','','inherit','open','closed','','mann-work-20','','','2019-12-23 15:30:55','2019-12-23 15:30:55','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-20.jpg',0,'attachment','image/jpeg',0),(627,2,'2019-12-23 15:29:30','2019-12-23 15:29:30','','mann-work-21','','inherit','open','closed','','mann-work-21','','','2019-12-23 15:31:03','2019-12-23 15:31:03','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-21.jpg',0,'attachment','image/jpeg',0),(628,2,'2019-12-23 15:29:36','2019-12-23 15:29:36','','mann-work-22','','inherit','open','closed','','mann-work-22','','','2019-12-23 15:31:08','2019-12-23 15:31:08','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-22.jpg',0,'attachment','image/jpeg',0),(629,2,'2019-12-23 15:29:40','2019-12-23 15:29:40','','mann-work-23','','inherit','open','closed','','mann-work-23','','','2019-12-23 15:31:11','2019-12-23 15:31:11','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-23.jpg',0,'attachment','image/jpeg',0),(630,2,'2019-12-23 15:29:45','2019-12-23 15:29:45','','mann-work-24','','inherit','open','closed','','mann-work-24','','','2019-12-23 15:31:17','2019-12-23 15:31:17','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-24.jpg',0,'attachment','image/jpeg',0),(631,2,'2019-12-23 15:29:49','2019-12-23 15:29:49','','mann-work-25','','inherit','open','closed','','mann-work-25','','','2019-12-23 15:31:24','2019-12-23 15:31:24','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-25.jpg',0,'attachment','image/jpeg',0),(632,2,'2019-12-23 15:29:54','2019-12-23 15:29:54','','mann-work-26','','inherit','open','closed','','mann-work-26','','','2019-12-23 15:31:27','2019-12-23 15:31:27','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-26.jpg',0,'attachment','image/jpeg',0),(633,2,'2019-12-23 15:29:59','2019-12-23 15:29:59','','mann-work-27','','inherit','open','closed','','mann-work-27','','','2019-12-23 15:31:31','2019-12-23 15:31:31','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-27.jpg',0,'attachment','image/jpeg',0),(634,2,'2019-12-23 15:30:03','2019-12-23 15:30:03','','mann-work-28','','inherit','open','closed','','mann-work-28','','','2019-12-23 15:31:35','2019-12-23 15:31:35','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-28.jpg',0,'attachment','image/jpeg',0),(635,2,'2019-12-23 15:30:08','2019-12-23 15:30:08','','mann-work-29','','inherit','open','closed','','mann-work-29','','','2019-12-23 15:31:37','2019-12-23 15:31:37','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-29.jpg',0,'attachment','image/jpeg',0),(636,2,'2019-12-23 15:30:12','2019-12-23 15:30:12','','mann-work-30','','inherit','open','closed','','mann-work-30','','','2019-12-23 15:31:42','2019-12-23 15:31:42','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-30.jpg',0,'attachment','image/jpeg',0),(637,2,'2019-12-23 15:30:17','2019-12-23 15:30:17','','mann-work-31','','inherit','open','closed','','mann-work-31','','','2019-12-23 15:31:45','2019-12-23 15:31:45','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-31.jpg',0,'attachment','image/jpeg',0),(638,2,'2019-12-23 15:30:21','2019-12-23 15:30:21','','mann-work-32','','inherit','open','closed','','mann-work-32','','','2019-12-23 15:31:48','2019-12-23 15:31:48','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-32.jpg',0,'attachment','image/jpeg',0),(639,2,'2019-12-23 15:30:26','2019-12-23 15:30:26','','mann-work-33','','inherit','open','closed','','mann-work-33','','','2019-12-23 15:32:00','2019-12-23 15:32:00','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-33.jpg',0,'attachment','image/jpeg',0),(640,2,'2019-12-23 15:30:32','2019-12-23 15:30:32','','mann-work-34','','inherit','open','closed','','mann-work-34','','','2019-12-23 15:32:02','2019-12-23 15:32:02','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-34.jpg',0,'attachment','image/jpeg',0),(641,2,'2019-12-23 15:30:36','2019-12-23 15:30:36','','mann-work-35','','inherit','open','closed','','mann-work-35','','','2019-12-23 15:32:06','2019-12-23 15:32:06','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-35.jpg',0,'attachment','image/jpeg',0),(642,2,'2019-12-23 15:30:41','2019-12-23 15:30:41','','mann-work-36','','inherit','open','closed','','mann-work-36','','','2019-12-23 15:32:10','2019-12-23 15:32:10','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-36.jpg',0,'attachment','image/jpeg',0),(643,2,'2019-12-23 15:30:47','2019-12-23 15:30:47','','mann-work-37','','inherit','open','closed','','mann-work-37','','','2019-12-23 15:32:27','2019-12-23 15:32:27','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-37.jpg',0,'attachment','image/jpeg',0),(644,2,'2019-12-23 15:30:51','2019-12-23 15:30:51','','mann-work-38','','inherit','open','closed','','mann-work-38','','','2019-12-23 15:52:57','2019-12-23 15:52:57','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-38.jpg',0,'attachment','image/jpeg',0),(645,2,'2019-12-23 15:30:55','2019-12-23 15:30:55','','mann-work-39','','inherit','open','closed','','mann-work-39','','','2019-12-23 15:32:15','2019-12-23 15:32:15','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-39.jpg',0,'attachment','image/jpeg',0),(646,2,'2019-12-23 15:31:00','2019-12-23 15:31:00','','mann-work-40','','inherit','open','closed','','mann-work-40','','','2019-12-23 15:32:31','2019-12-23 15:32:31','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-40.jpg',0,'attachment','image/jpeg',0),(647,2,'2019-12-23 15:31:04','2019-12-23 15:31:04','','mann-work-41','','inherit','open','closed','','mann-work-41','','','2019-12-23 15:32:38','2019-12-23 15:32:38','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-41.jpg',0,'attachment','image/jpeg',0),(648,2,'2019-12-23 15:31:08','2019-12-23 15:31:08','','mann-work-42','','inherit','open','closed','','mann-work-42','','','2019-12-23 15:32:42','2019-12-23 15:32:42','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-42.jpg',0,'attachment','image/jpeg',0),(649,2,'2019-12-23 15:31:13','2019-12-23 15:31:13','','mann-work-43','','inherit','open','closed','','mann-work-43','','','2019-12-23 15:32:51','2019-12-23 15:32:51','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-43.jpg',0,'attachment','image/jpeg',0),(650,2,'2019-12-23 15:31:17','2019-12-23 15:31:17','','mann-work-44','','inherit','open','closed','','mann-work-44','','','2019-12-23 15:53:05','2019-12-23 15:53:05','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-44.jpg',0,'attachment','image/jpeg',0),(651,2,'2019-12-23 15:31:21','2019-12-23 15:31:21','','mann-work-45','','inherit','open','closed','','mann-work-45','','','2019-12-23 15:34:55','2019-12-23 15:34:55','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-45.jpg',0,'attachment','image/jpeg',0),(652,2,'2019-12-23 15:31:26','2019-12-23 15:31:26','','mann-work-46','','inherit','open','closed','','mann-work-46','','','2019-12-23 15:34:57','2019-12-23 15:34:57','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-46.jpg',0,'attachment','image/jpeg',0),(653,2,'2019-12-23 15:31:31','2019-12-23 15:31:31','','mann-work-47','','inherit','open','closed','','mann-work-47','','','2019-12-23 15:34:58','2019-12-23 15:34:58','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-47.jpg',0,'attachment','image/jpeg',0),(654,2,'2019-12-23 15:31:36','2019-12-23 15:31:36','','mann-work-48','','inherit','open','closed','','mann-work-48','','','2019-12-23 15:53:10','2019-12-23 15:53:10','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-48.jpg',0,'attachment','image/jpeg',0),(655,2,'2019-12-23 15:31:40','2019-12-23 15:31:40','','mann-work-49','','inherit','open','closed','','mann-work-49','','','2019-12-23 15:35:00','2019-12-23 15:35:00','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-49.jpg',0,'attachment','image/jpeg',0),(656,2,'2019-12-23 15:31:44','2019-12-23 15:31:44','','mann-work-50','','inherit','open','closed','','mann-work-50','','','2019-12-23 15:35:04','2019-12-23 15:35:04','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-50.jpg',0,'attachment','image/jpeg',0),(657,2,'2019-12-23 15:31:49','2019-12-23 15:31:49','','mann-work-51','','inherit','open','closed','','mann-work-51','','','2019-12-23 15:35:05','2019-12-23 15:35:05','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-51.jpg',0,'attachment','image/jpeg',0),(658,2,'2019-12-23 15:31:54','2019-12-23 15:31:54','','mann-work-52','','inherit','open','closed','','mann-work-52','','','2019-12-23 15:35:06','2019-12-23 15:35:06','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-52.jpg',0,'attachment','image/jpeg',0),(659,2,'2019-12-23 15:31:58','2019-12-23 15:31:58','','mann-work-53','','inherit','open','closed','','mann-work-53','','','2019-12-23 15:35:07','2019-12-23 15:35:07','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-53.jpg',0,'attachment','image/jpeg',0),(660,2,'2019-12-23 15:32:02','2019-12-23 15:32:02','','mann-work-54','','inherit','open','closed','','mann-work-54','','','2019-12-23 15:35:09','2019-12-23 15:35:09','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-54.jpg',0,'attachment','image/jpeg',0),(661,2,'2019-12-23 15:32:07','2019-12-23 15:32:07','','mann-work-55','','inherit','open','closed','','mann-work-55','','','2019-12-23 15:35:13','2019-12-23 15:35:13','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-55.jpg',0,'attachment','image/jpeg',0),(662,2,'2019-12-23 15:32:11','2019-12-23 15:32:11','','mann-work-56','','inherit','open','closed','','mann-work-56','','','2019-12-23 15:35:18','2019-12-23 15:35:18','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-56.jpg',0,'attachment','image/jpeg',0),(663,2,'2019-12-23 15:32:16','2019-12-23 15:32:16','','mann-work-57','','inherit','open','closed','','mann-work-57','','','2019-12-23 15:35:22','2019-12-23 15:35:22','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-57.jpg',0,'attachment','image/jpeg',0),(664,2,'2019-12-23 15:32:22','2019-12-23 15:32:22','','mann-work-58','','inherit','open','closed','','mann-work-58','','','2019-12-23 15:35:25','2019-12-23 15:35:25','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-58.jpg',0,'attachment','image/jpeg',0),(665,2,'2019-12-23 15:32:27','2019-12-23 15:32:27','','mann-work-59','','inherit','open','closed','','mann-work-59','','','2019-12-23 15:35:35','2019-12-23 15:35:35','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-59.jpg',0,'attachment','image/jpeg',0),(666,2,'2019-12-23 15:32:32','2019-12-23 15:32:32','','mann-work-60','','inherit','open','closed','','mann-work-60','','','2019-12-23 15:35:40','2019-12-23 15:35:40','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-60.jpg',0,'attachment','image/jpeg',0),(667,2,'2019-12-23 15:32:36','2019-12-23 15:32:36','','mann-work-61','','inherit','open','closed','','mann-work-61','','','2019-12-23 15:35:45','2019-12-23 15:35:45','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-61.jpg',0,'attachment','image/jpeg',0),(668,2,'2019-12-23 15:32:40','2019-12-23 15:32:40','','mann-work-62','','inherit','open','closed','','mann-work-62','','','2019-12-23 15:35:49','2019-12-23 15:35:49','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-62.jpg',0,'attachment','image/jpeg',0),(669,2,'2019-12-23 15:32:48','2019-12-23 15:32:48','','mann-work-63','','inherit','open','closed','','mann-work-63','','','2019-12-23 15:35:54','2019-12-23 15:35:54','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-63.jpg',0,'attachment','image/jpeg',0),(670,2,'2019-12-23 15:32:52','2019-12-23 15:32:52','','mann-work-64','','inherit','open','closed','','mann-work-64','','','2019-12-23 15:53:21','2019-12-23 15:53:21','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-64.jpg',0,'attachment','image/jpeg',0),(671,2,'2019-12-23 15:32:58','2019-12-23 15:32:58','','mann-work-65','','inherit','open','closed','','mann-work-65','','','2019-12-23 15:53:28','2019-12-23 15:53:28','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-65.jpg',0,'attachment','image/jpeg',0),(672,2,'2019-12-23 15:33:03','2019-12-23 15:33:03','','mann-work-66','','inherit','open','closed','','mann-work-66','','','2019-12-23 15:53:31','2019-12-23 15:53:31','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-66.jpg',0,'attachment','image/jpeg',0),(673,2,'2019-12-23 15:33:08','2019-12-23 15:33:08','','mann-work-67','','inherit','open','closed','','mann-work-67','','','2019-12-23 15:53:57','2019-12-23 15:53:57','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-67.jpg',0,'attachment','image/jpeg',0),(674,2,'2019-12-23 15:33:12','2019-12-23 15:33:12','','mann-work-68','','inherit','open','closed','','mann-work-68','','','2019-12-23 15:54:02','2019-12-23 15:54:02','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-68.jpg',0,'attachment','image/jpeg',0),(675,2,'2019-12-23 15:33:17','2019-12-23 15:33:17','','mann-work-69','','inherit','open','closed','','mann-work-69','','','2019-12-23 15:54:03','2019-12-23 15:54:03','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-69.jpg',0,'attachment','image/jpeg',0),(676,2,'2019-12-23 15:33:22','2019-12-23 15:33:22','','mann-work-70','','inherit','open','closed','','mann-work-70','','','2019-12-23 15:54:07','2019-12-23 15:54:07','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-70.jpg',0,'attachment','image/jpeg',0),(677,2,'2019-12-23 15:33:26','2019-12-23 15:33:26','','mann-work-71','','inherit','open','closed','','mann-work-71','','','2019-12-23 15:54:12','2019-12-23 15:54:12','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-71.jpg',0,'attachment','image/jpeg',0),(678,2,'2019-12-23 15:33:31','2019-12-23 15:33:31','','mann-work-72','','inherit','open','closed','','mann-work-72','','','2019-12-23 15:54:17','2019-12-23 15:54:17','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-72.jpg',0,'attachment','image/jpeg',0),(679,2,'2019-12-23 15:33:36','2019-12-23 15:33:36','','mann-work-73','','inherit','open','closed','','mann-work-73','','','2019-12-23 15:54:21','2019-12-23 15:54:21','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-73.jpg',0,'attachment','image/jpeg',0),(680,2,'2019-12-23 15:33:40','2019-12-23 15:33:40','','mann-work-74','','inherit','open','closed','','mann-work-74','','','2019-12-23 15:54:25','2019-12-23 15:54:25','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-74.jpg',0,'attachment','image/jpeg',0),(681,2,'2019-12-23 15:33:45','2019-12-23 15:33:45','','mann-work-75','','inherit','open','closed','','mann-work-75','','','2019-12-23 15:54:29','2019-12-23 15:54:29','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-75.jpg',0,'attachment','image/jpeg',0),(682,2,'2019-12-23 15:33:49','2019-12-23 15:33:49','','mann-work-76','','inherit','open','closed','','mann-work-76','','','2019-12-23 15:54:34','2019-12-23 15:54:34','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-76.jpg',0,'attachment','image/jpeg',0),(683,2,'2019-12-23 15:33:54','2019-12-23 15:33:54','','mann-work-77','','inherit','open','closed','','mann-work-77','','','2019-12-23 15:54:37','2019-12-23 15:54:37','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-77.jpg',0,'attachment','image/jpeg',0),(684,2,'2019-12-23 15:34:01','2019-12-23 15:34:01','','mann-work-78','','inherit','open','closed','','mann-work-78','','','2019-12-23 15:54:40','2019-12-23 15:54:40','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-78.jpg',0,'attachment','image/jpeg',0),(685,2,'2019-12-23 15:34:05','2019-12-23 15:34:05','','mann-work-79','','inherit','open','closed','','mann-work-79','','','2019-12-23 15:54:41','2019-12-23 15:54:41','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-79.jpg',0,'attachment','image/jpeg',0),(686,2,'2019-12-23 15:34:10','2019-12-23 15:34:10','','mann-work-80','','inherit','open','closed','','mann-work-80','','','2019-12-23 15:54:43','2019-12-23 15:54:43','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-80.jpg',0,'attachment','image/jpeg',0),(687,2,'2019-12-23 15:34:14','2019-12-23 15:34:14','','mann-work-81','','inherit','open','closed','','mann-work-81','','','2019-12-23 15:54:44','2019-12-23 15:54:44','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-81.jpg',0,'attachment','image/jpeg',0),(688,2,'2019-12-23 15:34:19','2019-12-23 15:34:19','','mann-work-82','','inherit','open','closed','','mann-work-82','','','2019-12-23 15:54:45','2019-12-23 15:54:45','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-82.jpg',0,'attachment','image/jpeg',0),(689,2,'2019-12-23 15:34:22','2019-12-23 15:34:22','','mann-work-83','','inherit','open','closed','','mann-work-83','','','2019-12-23 15:54:46','2019-12-23 15:54:46','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-83.jpg',0,'attachment','image/jpeg',0),(690,2,'2019-12-23 15:34:26','2019-12-23 15:34:26','','mann-work-84','','inherit','open','closed','','mann-work-84','','','2019-12-23 15:54:48','2019-12-23 15:54:48','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-84.jpg',0,'attachment','image/jpeg',0),(691,2,'2019-12-23 15:34:30','2019-12-23 15:34:30','','mann-work-85','','inherit','open','closed','','mann-work-85','','','2019-12-23 15:54:50','2019-12-23 15:54:50','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-85.jpg',0,'attachment','image/jpeg',0),(692,2,'2019-12-23 15:34:35','2019-12-23 15:34:35','','mann-work-86','','inherit','open','closed','','mann-work-86','','','2019-12-23 15:54:52','2019-12-23 15:54:52','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-86.jpg',0,'attachment','image/jpeg',0),(693,2,'2019-12-23 15:34:39','2019-12-23 15:34:39','','mann-work-87','','inherit','open','closed','','mann-work-87','','','2019-12-23 15:54:53','2019-12-23 15:54:53','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-87.jpg',0,'attachment','image/jpeg',0),(694,2,'2019-12-23 15:34:44','2019-12-23 15:34:44','','mann-work-88','','inherit','open','closed','','mann-work-88','','','2019-12-23 15:54:57','2019-12-23 15:54:57','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-88.jpg',0,'attachment','image/jpeg',0),(695,2,'2019-12-23 15:34:49','2019-12-23 15:34:49','','mann-work-89','','inherit','open','closed','','mann-work-89','','','2019-12-23 15:55:05','2019-12-23 15:55:05','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-89.jpg',0,'attachment','image/jpeg',0),(696,2,'2019-12-23 15:34:57','2019-12-23 15:34:57','','mann-work-90','','inherit','open','closed','','mann-work-90','','','2019-12-23 15:55:09','2019-12-23 15:55:09','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-90.jpg',0,'attachment','image/jpeg',0),(697,2,'2019-12-23 15:35:03','2019-12-23 15:35:03','','mann-work-91','','inherit','open','closed','','mann-work-91','','','2019-12-23 15:55:15','2019-12-23 15:55:15','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-91.jpg',0,'attachment','image/jpeg',0),(698,2,'2019-12-23 15:35:09','2019-12-23 15:35:09','','mann-work-92','','inherit','open','closed','','mann-work-92','','','2019-12-23 15:55:19','2019-12-23 15:55:19','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-92.jpg',0,'attachment','image/jpeg',0),(699,2,'2019-12-23 15:35:13','2019-12-23 15:35:13','','mann-work-93','','inherit','open','closed','','mann-work-93','','','2019-12-23 15:55:25','2019-12-23 15:55:25','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-93.jpg',0,'attachment','image/jpeg',0),(700,2,'2019-12-23 15:35:19','2019-12-23 15:35:19','','mann-work-94','','inherit','open','closed','','mann-work-94','','','2019-12-23 15:55:29','2019-12-23 15:55:29','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-94.jpg',0,'attachment','image/jpeg',0),(701,2,'2019-12-23 15:35:24','2019-12-23 15:35:24','','mann-work-95','','inherit','open','closed','','mann-work-95','','','2019-12-23 15:55:33','2019-12-23 15:55:33','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-95.jpg',0,'attachment','image/jpeg',0),(702,2,'2019-12-23 15:35:30','2019-12-23 15:35:30','','mann-work-96','','inherit','open','closed','','mann-work-96','','','2019-12-23 15:55:38','2019-12-23 15:55:38','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-96.jpg',0,'attachment','image/jpeg',0),(703,2,'2019-12-23 15:35:37','2019-12-23 15:35:37','','mann-work-97','','inherit','open','closed','','mann-work-97','','','2019-12-23 15:55:46','2019-12-23 15:55:46','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-97.jpg',0,'attachment','image/jpeg',0),(704,2,'2019-12-23 15:35:44','2019-12-23 15:35:44','','mann-work-98','','inherit','open','closed','','mann-work-98','','','2019-12-23 15:55:49','2019-12-23 15:55:49','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/mann-work-98.jpg',0,'attachment','image/jpeg',0),(705,2,'2019-12-23 15:35:59','2019-12-23 15:35:59','','Our Work','','inherit','closed','closed','','578-revision-v1','','','2019-12-23 15:35:59','2019-12-23 15:35:59','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/578-revision-v1/',0,'revision','',0),(706,2,'2019-12-23 15:36:20','2019-12-23 15:36:20','','Testimonials','','inherit','closed','closed','','580-autosave-v1','','','2019-12-23 15:36:20','2019-12-23 15:36:20','',580,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/580-autosave-v1/',0,'revision','',0),(709,2,'2019-12-23 15:41:19','2019-12-23 15:41:19','','Testimonials','','inherit','closed','closed','','580-revision-v1','','','2019-12-23 15:41:19','2019-12-23 15:41:19','',580,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/580-revision-v1/',0,'revision','',0),(710,2,'2019-12-23 15:42:04','2019-12-23 15:42:04','','Meet Our Team','','inherit','closed','closed','','585-revision-v1','','','2019-12-23 15:42:04','2019-12-23 15:42:04','',585,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/585-revision-v1/',0,'revision','',0),(711,2,'2019-12-23 15:42:26','2019-12-23 15:42:26','','Meet Our Team','','inherit','closed','closed','','585-revision-v1','','','2019-12-23 15:42:26','2019-12-23 15:42:26','',585,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/585-revision-v1/',0,'revision','',0),(712,2,'2019-12-23 15:45:29','2019-12-23 15:45:29','','Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor','','inherit','open','closed','','trane-lifestyle_screen-1920x1080_fall19-mann-compressor','','','2019-12-23 15:45:41','2019-12-23 15:45:41','',582,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor.jpg',0,'attachment','image/jpeg',0),(713,2,'2019-12-23 15:46:07','2019-12-23 15:46:07','','Offers','','inherit','closed','closed','','582-revision-v1','','','2019-12-23 15:46:07','2019-12-23 15:46:07','',582,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/582-revision-v1/',0,'revision','',0),(714,2,'2019-12-23 15:46:53','2019-12-23 15:46:53','','AtHomeBanner_600x300_B','','inherit','open','closed','','athomebanner_600x300_b','','','2019-12-23 15:47:03','2019-12-23 15:47:03','',588,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/AtHomeBanner_600x300_B.png',0,'attachment','image/png',0),(715,2,'2019-12-23 15:47:22','2019-12-23 15:47:22','','payments-accepted-1','','inherit','open','closed','','payments-accepted-1','','','2019-12-23 15:47:28','2019-12-23 15:47:28','',588,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/payments-accepted-1.png',0,'attachment','image/png',0),(718,2,'2019-12-23 15:50:09','2019-12-23 15:50:09','','Contact','','inherit','closed','closed','','205-revision-v1','','','2019-12-23 15:50:09','2019-12-23 15:50:09','',205,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/205-revision-v1/',0,'revision','',0),(719,2,'2019-12-23 15:50:32','2019-12-23 15:50:32','','Contact','','inherit','closed','closed','','205-revision-v1','','','2019-12-23 15:50:32','2019-12-23 15:50:32','',205,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/205-revision-v1/',0,'revision','',0),(735,2,'2019-12-24 16:13:45','2019-12-24 16:13:45','','Our Work','','inherit','closed','closed','','578-revision-v1','','','2019-12-24 16:13:45','2019-12-24 16:13:45','',578,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/578-revision-v1/',0,'revision','',0),(738,2,'2019-12-24 16:30:56','2019-12-24 16:30:56','','MannPlumbingHeating_1150199946','','inherit','open','closed','','mannplumbingheating_1150199946','','','2019-12-24 16:40:36','2019-12-24 16:40:36','',500,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/MannPlumbingHeating_1150199946.jpg',0,'attachment','image/jpeg',0),(739,2,'2019-12-24 16:31:05','2019-12-24 16:31:05','','MannPlumbingHeating_1173822860','','inherit','open','closed','','mannplumbingheating_1173822860','','','2019-12-24 16:40:42','2019-12-24 16:40:42','',500,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/MannPlumbingHeating_1173822860.jpg',0,'attachment','image/jpeg',0),(740,2,'2019-12-24 16:31:14','2019-12-24 16:31:14','','MannPlumbingHeating_1132791347','','inherit','open','closed','','mannplumbingheating_1132791347','','','2019-12-24 16:40:48','2019-12-24 16:40:48','',500,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/MannPlumbingHeating_1132791347.jpg',0,'attachment','image/jpeg',0),(741,2,'2019-12-24 16:31:30','2019-12-24 16:31:30','','MannPlumbingHeating_1060428268','','inherit','open','closed','','mannplumbingheating_1060428268','','','2019-12-24 16:40:52','2019-12-24 16:40:52','',500,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/MannPlumbingHeating_1060428268.jpg',0,'attachment','image/jpeg',0),(748,2,'2019-12-24 16:40:06','2019-12-24 16:40:06','','MannPlumbingHeating_522578757','','inherit','open','closed','','mannplumbingheating_522578757','','','2019-12-24 16:40:58','2019-12-24 16:40:58','',590,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/wp-content/uploads/2019/12/MannPlumbingHeating_522578757.jpg',0,'attachment','image/jpeg',0),(751,2,'2019-12-24 16:43:17','2019-12-24 16:43:17','','Testimonials','','inherit','closed','closed','','580-revision-v1','','','2019-12-24 16:43:17','2019-12-24 16:43:17','',580,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/580-revision-v1/',0,'revision','',0),(752,2,'2019-12-24 16:43:43','2019-12-24 16:43:43','','About Us','','inherit','closed','closed','','590-revision-v1','','','2019-12-24 16:43:43','2019-12-24 16:43:43','',590,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/590-revision-v1/',0,'revision','',0),(753,2,'2019-12-24 16:44:09','2019-12-24 16:44:09','','Contact','','inherit','closed','closed','','205-revision-v1','','','2019-12-24 16:44:09','2019-12-24 16:44:09','',205,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/205-revision-v1/',0,'revision','',0),(798,2,'2019-12-27 17:24:34','2019-12-27 17:24:34','','About Us','','inherit','closed','closed','','590-revision-v1','','','2019-12-27 17:24:34','2019-12-27 17:24:34','',590,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/590-revision-v1/',0,'revision','',0),(802,2,'2020-01-23 20:48:31','2020-01-23 20:48:31','','Financing','','inherit','closed','closed','','588-revision-v1','','','2020-01-23 20:48:31','2020-01-23 20:48:31','',588,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/588-revision-v1/',0,'revision','',0),(804,2,'2020-01-23 20:59:00','2020-01-23 20:59:00','','HVAC','','inherit','closed','closed','','500-revision-v1','','','2020-01-23 20:59:00','2020-01-23 20:59:00','',500,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/500-revision-v1/',0,'revision','',0),(805,2,'2020-01-23 21:00:38','2020-01-23 21:00:38','','Design / Build','','inherit','closed','closed','','572-revision-v1','','','2020-01-23 21:00:38','2020-01-23 21:00:38','',572,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/572-revision-v1/',0,'revision','',0),(806,2,'2020-01-23 21:01:36','2020-01-23 21:01:36','','Plumbing','','inherit','closed','closed','','574-revision-v1','','','2020-01-23 21:01:36','2020-01-23 21:01:36','',574,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/574-revision-v1/',0,'revision','',0),(807,2,'2020-01-23 21:02:16','2020-01-23 21:02:16','','Excavation Services','','inherit','closed','closed','','576-revision-v1','','','2020-01-23 21:02:16','2020-01-23 21:02:16','',576,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/576-revision-v1/',0,'revision','',0),(810,2,'2020-01-23 21:05:52','2020-01-23 21:05:52','/* DP12262019 */\n/* Styling */\n::-webkit-input-placeholder { font-family: \'Roboto\'!important; }\n::-moz-placeholder { font-family: \'Roboto\'!important; }\n:-ms-input-placeholder { font-family: \'Roboto\'!important; }\n:-moz-placeholder { font-family: \'Roboto\'!important; }\ntextarea { font-family: Roboto; resize: none; }\n.header__nav li { margin: 0 0 0 12px; }\n.header__utility-flex { justify-content: space-between; }\n.header__utility .menu-item { margin: 0px; }\n.sub-menu--toggle:hover { background-color: #fff!important; }\nheader a { font-size: 14px; transition: none; }\n.header__utility a:hover { color: #000!important; }\n.header__utility a:hover .icon { fill: #000!important; }\n.mobile__nav-close .icon { fill: #d51d25; }\n.mobile__nav-close .icon:hover { fill: #000; }\n.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after { background-color: #d51d25; }\n.hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner::before, .hamburger:hover .hamburger-inner::after { background-color: #000; }\n.mobile__nav a { font-weight: bold; font-size: 16px; text-transform: uppercase; }\n.theme--material .hero__panel { padding: 200px 0; }\n.theme--material h1, .theme--material .hdg--1 { font-style: italic; font-weight: 800!important; }\n.special-offer__content p { font-weight: 800 !important; font-style: italic; }\n.btn, .gform_button { font-size: 16px!important; }\n::after, ::before { box-shadow: none!important; }\nh2, h3, h4, h5, h6 { font-weight: 800!important; font-style: italic; }\n.service__title { font-weight: normal!important; font-style: normal; font-size: 18px; }\n.service__content p { color: #fff!important; padding: 0 15px 15px; }\na.service__item:hover { background-color: #d51d25!important; }\na.service__item img { transition: .3s ease; }\n.theme--material .services .service__item { padding: 0px; height: 100%; }\na.service__item:hover img { opacity: .8; }\n.testimonials .slick-arrow .icon { fill: #d51d25; }\n.testimonials .slick-arrow:hover .icon { fill: #fff; }\nfooter a, footer h5 a, footer .entry__content a:not(.btn) { color: #fff; }\nfooter h5 a { font-style: normal; font-weight: normal; }\nfooter a:hover, footer .current-menu-item > a { color: #d51d25!important; }\nfooter .btn:hover { color: #fff!important; }\n.testimonials--show-multiple .testimonial__icon .icon { fill: #d51d25; }\n.testimonials__button .btn { border: 0px; background-color: #d51d25; }\n.testimonial { padding: 10px; }\n.footer__scroll-top a { color: #d51d25; }\n.page__header .hdg { margin-bottom: 0px; color: #fff!important; }\n.footer__scroll-top a:hover { color: #000; }\n.entry__content a:not(.btn):hover { color: #000; }\n.theme--material .content-area__image { box-shadow: none; }\n.theme--material .form__gform--default input:not([type=\"radio\"]):not([type=\"checkbox\"]):not([type=\"submit\"]):not([type=\"button\"]):not([type=\"image\"]):not([type=\"file\"]), .theme--material .form__gform--default textarea { box-shadow: none; }\n.gform_button { margin-top: 20px; }\n.entry__content p a:hover img { opacity: .8; }\n.services .service { padding: 10px; }\n.testimonials .slick-arrow { top: 35%; }\n.services__content { padding: 15px; }\n@media (min-width: 1200px){\n.theme--material .hero__panel { padding: 275px 0; }\n}\n@media (max-width: 992px){\n.theme--material .hero__panel { padding: 140px 0; }\n}\n@media (min-width: 768px){\n.content-area__content-lead { padding: 20px 0 0; }\n}\n@media (max-width: 768px){\n.content-area__content-lead { padding: 10px 0 0; }\n.service { width: 100%; max-width: 320px; margin: 10px; }\n.header__utility .menu-item { margin: 0 auto; }\n.header__branding-title { width: calc(100% - 66px)!important; }\n.theme--material .hero__panel { padding: 80px 0; }\n.special-offer__content p { text-align: center; }\nfooter * { text-align: center; }\n.content-area--two-column .content-area__content .entry__content:first-child { padding-bottom: 0px; }\n.rl-padding-fix.content-area--two-column .content-area__content .entry__content:first-child { padding-bottom: 25px; }\n}\n@media (max-width: 520px){\n.header__branding .header__branding-logo { height: auto!important; }\n.header__branding-title { width: calc(100% - 36px)!important; }\n}\n/* End */\n\n/* AP 1/23/20 */\n','reach.service-out-slow','','inherit','closed','closed','','433-revision-v1','','','2020-01-23 21:05:52','2020-01-23 21:05:52','',433,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/433-revision-v1/',0,'revision','',0),(812,2,'2020-01-23 21:06:18','2020-01-23 21:06:18','/* DP12262019 */\n/* Styling */\n::-webkit-input-placeholder { font-family: \'Roboto\'!important; }\n::-moz-placeholder { font-family: \'Roboto\'!important; }\n:-ms-input-placeholder { font-family: \'Roboto\'!important; }\n:-moz-placeholder { font-family: \'Roboto\'!important; }\ntextarea { font-family: Roboto; resize: none; }\n.header__nav li { margin: 0 0 0 12px; }\n.header__utility-flex { justify-content: space-between; }\n.header__utility .menu-item { margin: 0px; }\n.sub-menu--toggle:hover { background-color: #fff!important; }\nheader a { font-size: 14px; transition: none; }\n.header__utility a:hover { color: #000!important; }\n.header__utility a:hover .icon { fill: #000!important; }\n.mobile__nav-close .icon { fill: #d51d25; }\n.mobile__nav-close .icon:hover { fill: #000; }\n.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after { background-color: #d51d25; }\n.hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner::before, .hamburger:hover .hamburger-inner::after { background-color: #000; }\n.mobile__nav a { font-weight: bold; font-size: 16px; text-transform: uppercase; }\n.theme--material .hero__panel { padding: 200px 0; }\n.theme--material h1, .theme--material .hdg--1 { font-style: italic; font-weight: 800!important; }\n.special-offer__content p { font-weight: 800 !important; font-style: italic; }\n.btn, .gform_button { font-size: 16px!important; }\n::after, ::before { box-shadow: none!important; }\nh2, h3, h4, h5, h6 { font-weight: 800!important; font-style: italic; }\n.service__title { font-weight: normal!important; font-style: normal; font-size: 18px; }\n.service__content p { color: #fff!important; padding: 0 15px 15px; }\na.service__item:hover { background-color: #d51d25!important; }\na.service__item img { transition: .3s ease; }\n.theme--material .services .service__item { padding: 0px; height: 100%; }\na.service__item:hover img { opacity: .8; }\n.testimonials .slick-arrow .icon { fill: #d51d25; }\n.testimonials .slick-arrow:hover .icon { fill: #fff; }\nfooter a, footer h5 a, footer .entry__content a:not(.btn) { color: #fff; }\nfooter h5 a { font-style: normal; font-weight: normal; }\nfooter a:hover, footer .current-menu-item > a { color: #d51d25!important; }\nfooter .btn:hover { color: #fff!important; }\n.testimonials--show-multiple .testimonial__icon .icon { fill: #d51d25; }\n.testimonials__button .btn { border: 0px; background-color: #d51d25; }\n.testimonial { padding: 10px; }\n.footer__scroll-top a { color: #d51d25; }\n.page__header .hdg { margin-bottom: 0px; color: #fff!important; }\n.footer__scroll-top a:hover { color: #000; }\n.entry__content a:not(.btn):hover { color: #000; }\n.theme--material .content-area__image { box-shadow: none; }\n.theme--material .form__gform--default input:not([type=\"radio\"]):not([type=\"checkbox\"]):not([type=\"submit\"]):not([type=\"button\"]):not([type=\"image\"]):not([type=\"file\"]), .theme--material .form__gform--default textarea { box-shadow: none; }\n.gform_button { margin-top: 20px; }\n.entry__content p a:hover img { opacity: .8; }\n.services .service { padding: 10px; }\n.testimonials .slick-arrow { top: 35%; }\n.services__content { padding: 15px; }\n@media (min-width: 1200px){\n.theme--material .hero__panel { padding: 275px 0; }\n}\n@media (max-width: 992px){\n.theme--material .hero__panel { padding: 140px 0; }\n}\n@media (min-width: 768px){\n.content-area__content-lead { padding: 20px 0 0; }\n}\n@media (max-width: 768px){\n.content-area__content-lead { padding: 10px 0 0; }\n.service { width: 100%; max-width: 320px; margin: 10px; }\n.header__utility .menu-item { margin: 0 auto; }\n.header__branding-title { width: calc(100% - 66px)!important; }\n.theme--material .hero__panel { padding: 80px 0; }\n.special-offer__content p { text-align: center; }\nfooter * { text-align: center; }\n.content-area--two-column .content-area__content .entry__content:first-child { padding-bottom: 0px; }\n.rl-padding-fix.content-area--two-column .content-area__content .entry__content:first-child { padding-bottom: 25px; }\n}\n@media (max-width: 520px){\n.header__branding .header__branding-logo { height: auto!important; }\n.header__branding-title { width: calc(100% - 36px)!important; }\n}\n/* End */\n\n/* AP 1/23/20 */\n#menu-utility-right a{font-size:1.25em;}','reach.service-out-slow','','inherit','closed','closed','','433-revision-v1','','','2020-01-23 21:06:18','2020-01-23 21:06:18','',433,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/433-revision-v1/',0,'revision','',0),(814,2,'2020-01-23 21:06:50','2020-01-23 21:06:50','/* DP12262019 */\n/* Styling */\n::-webkit-input-placeholder { font-family: \'Roboto\'!important; }\n::-moz-placeholder { font-family: \'Roboto\'!important; }\n:-ms-input-placeholder { font-family: \'Roboto\'!important; }\n:-moz-placeholder { font-family: \'Roboto\'!important; }\ntextarea { font-family: Roboto; resize: none; }\n.header__nav li { margin: 0 0 0 12px; }\n.header__utility-flex { justify-content: space-between; }\n.header__utility .menu-item { margin: 0px; }\n.sub-menu--toggle:hover { background-color: #fff!important; }\nheader a { font-size: 14px; transition: none; }\n.header__utility a:hover { color: #000!important; }\n.header__utility a:hover .icon { fill: #000!important; }\n.mobile__nav-close .icon { fill: #d51d25; }\n.mobile__nav-close .icon:hover { fill: #000; }\n.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after { background-color: #d51d25; }\n.hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner::before, .hamburger:hover .hamburger-inner::after { background-color: #000; }\n.mobile__nav a { font-weight: bold; font-size: 16px; text-transform: uppercase; }\n.theme--material .hero__panel { padding: 200px 0; }\n.theme--material h1, .theme--material .hdg--1 { font-style: italic; font-weight: 800!important; }\n.special-offer__content p { font-weight: 800 !important; font-style: italic; }\n.btn, .gform_button { font-size: 16px!important; }\n::after, ::before { box-shadow: none!important; }\nh2, h3, h4, h5, h6 { font-weight: 800!important; font-style: italic; }\n.service__title { font-weight: normal!important; font-style: normal; font-size: 18px; }\n.service__content p { color: #fff!important; padding: 0 15px 15px; }\na.service__item:hover { background-color: #d51d25!important; }\na.service__item img { transition: .3s ease; }\n.theme--material .services .service__item { padding: 0px; height: 100%; }\na.service__item:hover img { opacity: .8; }\n.testimonials .slick-arrow .icon { fill: #d51d25; }\n.testimonials .slick-arrow:hover .icon { fill: #fff; }\nfooter a, footer h5 a, footer .entry__content a:not(.btn) { color: #fff; }\nfooter h5 a { font-style: normal; font-weight: normal; }\nfooter a:hover, footer .current-menu-item > a { color: #d51d25!important; }\nfooter .btn:hover { color: #fff!important; }\n.testimonials--show-multiple .testimonial__icon .icon { fill: #d51d25; }\n.testimonials__button .btn { border: 0px; background-color: #d51d25; }\n.testimonial { padding: 10px; }\n.footer__scroll-top a { color: #d51d25; }\n.page__header .hdg { margin-bottom: 0px; color: #fff!important; }\n.footer__scroll-top a:hover { color: #000; }\n.entry__content a:not(.btn):hover { color: #000; }\n.theme--material .content-area__image { box-shadow: none; }\n.theme--material .form__gform--default input:not([type=\"radio\"]):not([type=\"checkbox\"]):not([type=\"submit\"]):not([type=\"button\"]):not([type=\"image\"]):not([type=\"file\"]), .theme--material .form__gform--default textarea { box-shadow: none; }\n.gform_button { margin-top: 20px; }\n.entry__content p a:hover img { opacity: .8; }\n.services .service { padding: 10px; }\n.testimonials .slick-arrow { top: 35%; }\n.services__content { padding: 15px; }\n@media (min-width: 1200px){\n.theme--material .hero__panel { padding: 275px 0; }\n}\n@media (max-width: 992px){\n.theme--material .hero__panel { padding: 140px 0; }\n}\n@media (min-width: 768px){\n.content-area__content-lead { padding: 20px 0 0; }\n}\n@media (max-width: 768px){\n.content-area__content-lead { padding: 10px 0 0; }\n.service { width: 100%; max-width: 320px; margin: 10px; }\n.header__utility .menu-item { margin: 0 auto; }\n.header__branding-title { width: calc(100% - 66px)!important; }\n.theme--material .hero__panel { padding: 80px 0; }\n.special-offer__content p { text-align: center; }\nfooter * { text-align: center; }\n.content-area--two-column .content-area__content .entry__content:first-child { padding-bottom: 0px; }\n.rl-padding-fix.content-area--two-column .content-area__content .entry__content:first-child { padding-bottom: 25px; }\n}\n@media (max-width: 520px){\n.header__branding .header__branding-logo { height: auto!important; }\n.header__branding-title { width: calc(100% - 36px)!important; }\n}\n/* End */\n\n/* AP 1/23/20 */\n#menu-utility-right a{font-size:1.25em;}\n.header__utility a{text-align:center;}','reach.service-out-slow','','inherit','closed','closed','','433-revision-v1','','','2020-01-23 21:06:50','2020-01-23 21:06:50','',433,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/433-revision-v1/',0,'revision','',0),(818,2,'2020-02-05 14:50:55','2020-02-05 14:50:55','','Home','','inherit','closed','closed','','5-revision-v1','','','2020-02-05 14:50:55','2020-02-05 14:50:55','',5,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/5-revision-v1/',0,'revision','',0),(819,2,'2020-02-05 14:52:37','2020-02-05 14:52:37','','HVAC','','inherit','closed','closed','','500-revision-v1','','','2020-02-05 14:52:37','2020-02-05 14:52:37','',500,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/500-revision-v1/',0,'revision','',0),(820,2,'2020-02-05 14:53:34','2020-02-05 14:53:34','','Design / Build','','inherit','closed','closed','','572-revision-v1','','','2020-02-05 14:53:34','2020-02-05 14:53:34','',572,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/572-revision-v1/',0,'revision','',0),(821,2,'2020-02-05 14:54:10','2020-02-05 14:54:10','','Plumbing','','inherit','closed','closed','','574-revision-v1','','','2020-02-05 14:54:10','2020-02-05 14:54:10','',574,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/574-revision-v1/',0,'revision','',0),(822,2,'2020-02-05 14:54:47','2020-02-05 14:54:47','','Excavation Services','','inherit','closed','closed','','576-revision-v1','','','2020-02-05 14:54:47','2020-02-05 14:54:47','',576,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/576-revision-v1/',0,'revision','',0),(823,2,'2020-02-05 14:56:03','2020-02-05 14:56:03','','Home','','inherit','closed','closed','','5-revision-v1','','','2020-02-05 14:56:03','2020-02-05 14:56:03','',5,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/5-revision-v1/',0,'revision','',0),(824,2,'2020-02-05 15:13:55','2020-02-05 15:13:55','','About Us','','inherit','closed','closed','','590-revision-v1','','','2020-02-05 15:13:55','2020-02-05 15:13:55','',590,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/590-revision-v1/',0,'revision','',0),(825,2,'2020-02-05 15:15:15','2020-02-05 15:15:15','','HVAC','','inherit','closed','closed','','500-revision-v1','','','2020-02-05 15:15:15','2020-02-05 15:15:15','',500,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/500-revision-v1/',0,'revision','',0),(826,2,'2020-02-05 15:15:36','2020-02-05 15:15:36','','Design / Build','','inherit','closed','closed','','572-revision-v1','','','2020-02-05 15:15:36','2020-02-05 15:15:36','',572,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/572-revision-v1/',0,'revision','',0),(827,2,'2020-02-05 15:18:30','2020-02-05 15:18:30','','Plumbing','','inherit','closed','closed','','574-revision-v1','','','2020-02-05 15:18:30','2020-02-05 15:18:30','',574,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/574-revision-v1/',0,'revision','',0),(828,2,'2020-02-05 15:19:08','2020-02-05 15:19:08','','Excavation Services','','inherit','closed','closed','','576-revision-v1','','','2020-02-05 15:19:08','2020-02-05 15:19:08','',576,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/576-revision-v1/',0,'revision','',0),(829,2,'2020-02-05 15:19:23','2020-02-05 15:19:23','','Testimonials','','inherit','closed','closed','','580-revision-v1','','','2020-02-05 15:19:23','2020-02-05 15:19:23','',580,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/580-revision-v1/',0,'revision','',0),(830,2,'2020-02-05 15:20:08','2020-02-05 15:20:08','','Home','','inherit','closed','closed','','5-revision-v1','','','2020-02-05 15:20:08','2020-02-05 15:20:08','',5,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/blog/5-revision-v1/',0,'revision','',0),(832,2,'2020-12-17 05:03:50','2020-12-17 05:03:50','','Special Finance for 72 Months','','inherit','open','closed','','mannwellsfargofinancingbanner_12-16-2020','','','2020-12-17 05:04:10','2020-12-17 05:04:10','',0,'https://www.mannplumbingandheating.com/wp-content/uploads/2020/12/MannWellsFargoFinancingBanner_12.16.2020.jpg',0,'attachment','image/jpeg',0),(833,2,'2020-12-17 05:11:44','2020-12-17 05:11:44','','Financing','','inherit','closed','closed','','588-revision-v1','','','2020-12-17 05:11:44','2020-12-17 05:11:44','',588,'https://www.mannplumbingandheating.com/blog/588-revision-v1/',0,'revision','',0),(834,2,'2020-12-17 05:14:31','2020-12-17 05:14:31','','Financing','','inherit','closed','closed','','588-revision-v1','','','2020-12-17 05:14:31','2020-12-17 05:14:31','',588,'https://www.mannplumbingandheating.com/blog/588-revision-v1/',0,'revision','',0),(836,2,'2020-12-22 16:22:13','2020-12-22 16:22:13','','Offers','','inherit','closed','closed','','582-revision-v1','','','2020-12-22 16:22:13','2020-12-22 16:22:13','',582,'https://www.mannplumbingandheating.com/blog/582-revision-v1/',0,'revision','',0),(837,0,'2021-02-19 22:16:11','2021-02-19 22:16:11','<em>Last Updated: June 4th, 2018</em>\r\n\r\nThis privacy policy (the \"Policy\") is intended to inform you of the types of information [site-options field=\"privacy_company_name\"] (\"we\" or \"us\") collects, as well as our policies and practices regarding the collection, use, and disclosure of that information through the web pages at [site-options field=\"privacy_company_domain\"] (the \"Site\").\r\n\r\nPlease read this Policy carefully, because by using the Site, you are acknowledging that you understand and agree to the terms of this Policy, and consent to the manner in which we may collect, use and disclose the foregoing information. If you do not agree to the terms of this Policy, please do not use the Site.\r\n\r\nWe reserve the right to change the provisions of this Policy at any time. We will alert you that changes have been made by indicating on the Policy the date it was updated. We encourage you to review this Policy from time to time to make sure that you understand how any Personal Information you provide will be used. Your continued use of the Site following the posting of changes to these terms will mean you accept those changes.\r\n\r\nThis Policy applies solely to information collected by the Site. It will notify you of the following:\r\n\r\n<a href=\"#info\">What Information Do We Collect?</a>\r\n\r\n<a href=\"#use\">How Do We Use Your Information?</a>\r\n\r\n<a href=\"#share\">Do We Share Your Information?</a>\r\n\r\n<a href=\"#rights\">Your Privacy Rights -- Access to and Control Over Information</a>\r\n\r\n<a href=\"#opt-out\">How to Opt-Out of Targeted Advertising</a>\r\n\r\n<a href=\"#other-sites\">Does This Policy Apply to Other Websites Linked To Or From the Site?</a>\r\n\r\n<a href=\"#children\">Do We Collect Information From Children Under the Age of 13?</a>\r\n\r\n<a href=\"#protect\">What Steps Do We Take To Protect Your Information?</a>\r\n<div id=\"info\"></div>\r\n<strong><u>What Information Do We Collect?</u></strong>\r\n<ul>\r\n 	<li><em>Personal Information You Provide to Us - </em>We only have access to and collect personal information (such as your name, date of birth, social security number, credit card number, mailing or billing address, telephone number, or email address, and email preferences (collectively, \"Personal Information\") that you voluntarily give us via email or other direct contact from you. We will not sell or rent your Personal Information to anyone. We are the sole owners of the Personal Information collected on this Site.</li>\r\n 	<li><em>Information Collected by Automated Means - </em>Whenever you use the Site, we, as well as any of our third-party advertisers and/or service providers, may use a variety of technologies that automatically collect information about how the Site is accessed and used (\"Usage Information\"). Usage Information may include, in part, browser type, operating system, the page served, the time, how many users visited the Site, and the website you visited immediately before the Site. This statistical data provides us with information about the use of the Site, such as how many visitors visit a specific page on the Site, how long they stay on that page, and which hyperlinks, if any, they \"click\" on. Usage Information helps us to keep the Site fresh and interesting to our visitors and to tailor content to a visitor\'s interests. Usage Information is generally non-identifying, but if we associate it with you as a specific and identifiable person, we treat it as Personal Information.</li>\r\n 	<li><em>Device Identifiers </em>- In the course of collecting Usage Information we may also collect your IP address, MAC Address or other unique identifier (each a \"Device Identifier\") for the computer, mobile device, Wi-Fi card, or other technology (collectively, \"Device\") you use to access the Site. A Device Identifier is a number that is automatically assigned to your Device when you access a web site or its servers. Our computers identify your Device by its Device Identifier. When you visit the Sites, we may view your Device Identifier. We use this information to identify repeat visitors to our Site. We also may use this information to send you targeted advertisements and to enhance the Site. We may associate your Device Identifier with your Personal Information.</li>\r\n</ul>\r\nThe technologies used on the Site, including Device Identifiers, to collect Usage Information may include, without limitation:\r\n<ul>\r\n 	<li><em>Cookies</em> - Cookies are data files placed on a Device when it is used to visit the Site. We may use cookies to collect and store certain information about you. We may use both session cookies (which expire once you close your web browser) and persistent cookies (which stay on your computer until you delete them).</li>\r\n 	<li><em>Web Beacons</em> - We may also include web beacons (also known as web bugs, Internet tags, pixel tags, tracking pixels and clear GIFs) with the content and ads that we deliver to you, which we will use to collect information regarding your interaction with our content and ads. A web beacon is a transparent graphic image placed on a web page or in an email, which indicates that a page or email has been viewed or that an email has been forwarded. In addition, a web beacon allows third parties to obtain information such as the IP address of the computer that downloaded the page on which the beacon appears, the URL of the page on which the beacon appears, the time the page containing the beacon was viewed, the type of browser used to view the page, and the information in cookies set by the third party. A web beacon may also tell your browser to get content from another server.</li>\r\n</ul>\r\nCookies and web beacons (together, \"Site Cookies\") may enable us to track and target the interests of our users to enhance the experience on our Site, track user actions/behavior on our Site and track the effectiveness of ads.\r\n\r\n<em>ReachLocal</em>\r\n\r\nWe also work with a company called ReachLocal, which assists us in advertising our products and/or services. One of the products that we may purchase from ReachLocal is a retargeting product, which enables ReachLocal to show you advertisements for our Site when you visit other sites in the ReachLocal network or in third-party networks. ReachLocal is able to do this through the use of cookies that are provided by ReachLocal through its third-party partners (\"Advertising Cookies\"). The sole use of the Advertising Cookies is to show you advertisements for our Site; they are not being used to target you in any other way. Moreover, ReachLocal does not link or otherwise connect the information in the Advertising Cookies to any Personal Information that you may have provided.\r\n\r\nPlease note that ReachLocal retains the ability to access all information that is retained in the ReachLocal Platform for purposes of quality assurance and campaign assessment.\r\n\r\nIf you have any questions regarding ReachLocal and/or the Advertising Cookies, you are encouraged to contact ReachLocal at <a class=\"rl-no-form\" href=\"mailto:privacy@reachlocal.com\">privacy@reachlocal.com</a>.\r\n\r\n<em>Analytics</em>\r\n\r\nWe use two products to analyze activity on our site. We use ReachLocal\'s tracking technology and/or Google Analytics to understand how users use our site so as to enhance the user experience on our Site. If you wish to opt-out of ReachLocal\'s tracking technologies, go to <a href=\"http://www.reachlocal.com/trackingopt-out\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http://www.reachlocal.com/trackingopt-out</a>, and if you wish to opt-out of Google Analytics, go to <a href=\"https://tools.google.com/dlpage/gaoptout?hl=en-GB\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https://tools.google.com/dlpage/gaoptout?hl=en-GB</a>.\r\n<div id=\"use\"></div>\r\n<strong><u>How Do We Use Your Information?</u></strong>\r\n\r\nWe will use your information to respond to you regarding the reason you contacted us. We will also use your information as follows:\r\n<ul>\r\n 	<li><em>Registration </em>- A user may need to first complete a registration form in order to use the Site. During registration, a user is required to give certain information (such as name and email address). This information is used to contact you about the products/services on our Site in which you have expressed interest. At your option, you may also provide demographic information (such as gender or age) about yourself, but it is not required.</li>\r\n 	<li><em>Orders</em> - We may request information from you on our order form. To buy from us, you must provide contact information (like name and shipping address) and financial information (like credit card number, expiration date). This information is used for billing purposes and to fill your orders. If we have trouble processing an order, we will use this contact information to contact you.</li>\r\n 	<li><em>Surveys and contests - </em>From time-to-time, our Site may request information via surveys or contests. Participation in these surveys or contests is completely voluntary and you may choose whether or not to participate and therefore disclose this information. Information requested may include contact information (such as name and shipping address), and demographic information (such as zip code, age level). Contact information will be used to notify the winners and award prizes. Survey information will be used for purposes of monitoring or improving the use and satisfaction of this Site.</li>\r\n 	<li><em>Customer Service - </em>Unless you ask us not to, we may contact you via email in the future to tell you about specials, new products or services, or changes to this Policy.</li>\r\n 	<li><em>Chat –</em> Our Site may use chat functionality to enable direct communication with you through our Site. We will primarily use such information to assess your needs and to gain your contact information so that we may contact you to further discuss our products and/or services.</li>\r\n</ul>\r\n<div id=\"share\"></div>\r\n<strong><u>Do We Share Your Information?</u></strong>\r\n\r\nWe will not trade, rent, share or sell your Personal Information to third parties unless you ask or authorize us to do so.\r\n\r\nUnless you ask or provide your consent to do so, we will not share your Personal Information with any third party outside of our organization, other than with our service providers, including as necessary to fulfill your request, e.g. to ship an order. Only employees who need the Personal Information to perform a specific job (for example, billing or customer service) are granted access to Personal Information. The computers/servers in which we store Personal Information are kept in a secure environment.\r\n\r\nWe may share aggregated demographic information with our partners and advertisers. This is not linked to any Personal Information that can identify any individual person.\r\n\r\nWe will disclose Personal Information when we believe in good faith that such disclosures (a) are required by law, including, for example, to comply with a court order or subpoena, or (b) will help to: enforce our policies; enforce contest, sweepstakes, promotions, and/or game rules; protect your safety or security, including the safety and security of property that belongs to you; and/or, protect the safety and security of our Site or third parties. In addition, if [site-options field=\"privacy_company_name\"] or all of its assets are acquired, all of the data collected by us through the Site and through other means and services provided by us would be among the transferred assets.\r\n<div id=\"rights\"></div>\r\n<strong><u>Your Privacy Rights -- Access to and Control Over Information</u></strong>\r\n\r\nWe offer you choices regarding the collection, use, and sharing of your Personal Information. If you receive promotional communications from us, you may indicate a preference to stop receiving further promotional communications from us and you will have the opportunity to \"opt-out\" by following the unsubscribe instructions provided in the promotional email you receive or by contacting us directly at the email address or phone number given on our Site. We do not charge for this service, and your opt-out request will be processed within 30 days of the date on which we receive it.\r\n\r\nYou can do the following at any time by contacting us via the email address or phone number given on our Site:\r\n<ul>\r\n 	<li>See what data we have about you; if any.</li>\r\n 	<li>Change/correct any data we have about you.</li>\r\n 	<li>Have us delete any data we have about you.</li>\r\n 	<li>Notify us if you do not want us to share your Personal Information for marketing and promotional purposes.</li>\r\n</ul>\r\n<div id=\"opt-out\"></div>\r\n<strong><u>How to Opt-Out of Targeted Advertising</u></strong>\r\n\r\nYou can set most web browsers to notify you if you receive a cookie, or you may choose to block cookies, though either of those actions may affect the use of our Site. If you prefer to not receive targeted advertising, you can opt out of some network advertising programs that use your information. To do so please visit the Digital Advertising Alliance (DAA) Opt-Out Page: <a href=\"http://www.aboutads.info/choices/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http://www.aboutads.info/choices/</a>. Please note that even if you choose to remove your information (via opting out), you will still see advertisements while you are browsing online. However, the advertisements you see may be less relevant to you and your interests. Additionally, many network advertising programs allow you to view and manage the interest categories they have compiled from your online browsing activities. These interest categories help determine the types of targeted advertisements you may receive. The DAA Opt-Out Page provides a tool that identifies its member companies that have cookies on your browser and provides links to those companies\' pages where you can opt-out of receiving targeted advertisements from companies.\r\n\r\nWhile the Site does not currently respond to ‘Do Not Track’ signals submitted by your browser, you can opt out of any of the Advertising Cookies at any time by simply visiting <a href=\"http://www.reachlocal.com/opt-out\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http://www.reachlocal.com/opt-out</a> to adjust your preferences on placement of Advertising Cookies currently used in connection with ReachLocal’s remarketing product. You can also find out more about your ‘Do Not Track’ options by visiting <a href=\"http://www.allaboutdnt.com/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http://www.allaboutDNT.com</a>.\r\n<div id=\"other-sites\"></div>\r\n<strong><u>Does This Policy Apply to Other Websites Linked To Or From the Site?</u></strong>\r\n\r\nThe Site may contain links to other websites. Any Personal Information you provide on linked pages or sites is provided directly to that third party and is subject to that third party\'s privacy policy. This Policy does not apply to such linked sites, and we are not responsible for the content or privacy and security practices and policies of these websites or any other sites that are linked to or from the Site. We encourage you to learn about their privacy and security practices and policies before providing them with Personal Information.\r\n<div id=\"children\"></div>\r\n<strong><u>Do We Collect Information From Children Under the Age of 13?</u></strong>\r\n\r\nThe Site is not intended for use by children under the age of 13, and [site-options field=\"privacy_company_name\"] does not knowingly collect or use any Personal Information from such children. If we become aware that we have unknowingly collected Personal Information from a child under the age of 13, we will make commercially reasonable efforts to delete such Personal Information from our database.\r\n<div id=\"protect\"></div>\r\n<strong><u>What Steps Do We Take To Protect Your Information?</u></strong>\r\n\r\nWe take measures designed to protect your Personal Information in an effort to prevent loss, misuse, and unauthorized access, disclosure, alteration, and destruction. We provide physical, electronic, and procedural safeguards to protect Personal Information we process and maintain. Please be aware, however, that despite our efforts, no security measures are perfect or impenetrable and no method of data transmission can be guaranteed against any interception or other types of misuse. To protect the confidentiality of Personal Information maintained in your account, you must keep your password confidential and not disclose it to any other person. You are responsible for all uses of the Site by any person using your password. Please advise us immediately if you believe your password has been misused.\r\n\r\n<strong><u>Miscellaneous</u></strong>\r\n\r\nThis Policy and the privacy practices of [site-options field=\"privacy_company_name\"] will be subject exclusively to the laws of the State of [site-options field=\'privacy_company_state\'] in the United States. [site-options field=\"privacy_company_name\"] makes no representation that this Policy and our practices comply with the laws of any other country or jurisdiction. Users of the Site who reside outside the United States do so on their own initiative and are responsible for compliance with local laws, if and to the extent local laws are applicable. If you reside outside of the United States, by using the Site, you consent to the transfer, processing, and use of your information outside of your country.\r\n\r\n<strong><u>Questions?</u></strong>\r\n\r\nIf you have any questions about this Policy, please contact us at [site-options field=\"privacy_company_address\"], or call us at <span style=\"white-space: nowrap;\"><a href=\"tel:[site-options field=\'privacy_company_number\']\">[site-options field=\'privacy_company_number\']</a></span>.','Privacy Policy','','inherit','closed','closed','','490-revision-v1','','','2021-02-19 22:16:11','2021-02-19 22:16:11','',490,'http://www.mannplumbingandheating.com/blog/490-revision-v1/',0,'revision','',0),(838,2,'2022-02-16 21:19:58','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-02-16 21:19:58','0000-00-00 00:00:00','',0,'https://www.mannplumbingandheating.com/?p=838',0,'post','',0),(839,22,'2022-02-16 21:22:37','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-02-16 21:22:37','0000-00-00 00:00:00','',0,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=839',0,'post','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_redirection_404`
--

DROP TABLE IF EXISTS `wp_redirection_404`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirection_404` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `agent` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `referrer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `url` (`url`(191)),
  KEY `referrer` (`referrer`(191)),
  KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirection_404`
--

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

--
-- Table structure for table `wp_redirection_groups`
--

DROP TABLE IF EXISTS `wp_redirection_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirection_groups` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tracking` int(11) NOT NULL DEFAULT '1',
  `module_id` int(11) unsigned NOT NULL DEFAULT '0',
  `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'enabled',
  `position` int(11) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `module_id` (`module_id`),
  KEY `status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirection_groups`
--

LOCK TABLES `wp_redirection_groups` WRITE;
/*!40000 ALTER TABLE `wp_redirection_groups` DISABLE KEYS */;
INSERT INTO `wp_redirection_groups` VALUES (1,'Redirections',1,1,'enabled',0),(2,'Modified Posts',1,1,'enabled',1);
/*!40000 ALTER TABLE `wp_redirection_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_redirection_items`
--

DROP TABLE IF EXISTS `wp_redirection_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirection_items` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `url` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `match_url` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `match_data` text COLLATE utf8mb4_unicode_ci,
  `regex` int(11) unsigned NOT NULL DEFAULT '0',
  `position` int(11) unsigned NOT NULL DEFAULT '0',
  `last_count` int(10) unsigned NOT NULL DEFAULT '0',
  `last_access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `group_id` int(11) NOT NULL DEFAULT '0',
  `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'enabled',
  `action_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `action_code` int(11) unsigned NOT NULL,
  `action_data` mediumtext COLLATE utf8mb4_unicode_ci,
  `match_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(191)),
  KEY `status` (`status`),
  KEY `regex` (`regex`),
  KEY `group_idpos` (`group_id`,`position`),
  KEY `group` (`group_id`),
  KEY `match_url` (`match_url`(191))
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirection_items`
--

LOCK TABLES `wp_redirection_items` WRITE;
/*!40000 ALTER TABLE `wp_redirection_items` DISABLE KEYS */;
INSERT INTO `wp_redirection_items` VALUES (1,'/offers/','/offers','{\"source\":{\"flag_regex\":false}}',0,0,548,'2022-02-13 18:42:15',1,'enabled','url',301,'/about-us/offers/','url',NULL),(2,'/about/','/about','{\"source\":{\"flag_regex\":false}}',0,1,551,'2022-02-16 19:26:16',1,'enabled','url',301,'/about-us/','url',NULL),(3,'/services/design/','/services/design','{\"source\":{\"flag_regex\":false}}',0,2,354,'2022-02-13 19:02:43',1,'enabled','url',301,'/services/design-build/','url',NULL),(4,'/payments/','/payments',NULL,0,3,576,'2022-02-16 07:25:28',1,'enabled','url',301,'/about-us/financing/','url',''),(5,'/about/our-work/','/about/our-work','{\"source\":{\"flag_regex\":false}}',0,4,447,'2022-02-16 00:35:19',1,'enabled','url',301,'/our-work/','url',NULL),(6,'/contact/','/contact','{\"source\":{\"flag_regex\":false}}',0,5,910,'2022-02-16 21:14:16',1,'enabled','url',301,'/contact-us/','url',NULL),(7,'/about/team/','/about/team','{\"source\":{\"flag_regex\":false}}',0,6,548,'2022-02-15 09:51:15',1,'enabled','url',301,'/about-us/meet-our-team/','url',NULL),(8,'/request/','/request','{\"source\":{\"flag_regex\":false}}',0,7,457,'2022-02-16 17:15:51',1,'enabled','url',301,'/contact-us/','url',NULL),(9,'/tips/','/tips','{\"source\":{\"flag_regex\":false}}',0,8,580,'2022-02-15 22:13:42',1,'enabled','url',301,'/','url',NULL),(10,'/products/','/products','{\"source\":{\"flag_regex\":false}}',0,9,431,'2022-02-16 14:35:18',1,'enabled','url',301,'/','url',NULL);
/*!40000 ALTER TABLE `wp_redirection_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_redirection_logs`
--

DROP TABLE IF EXISTS `wp_redirection_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirection_logs` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `sent_to` mediumtext COLLATE utf8mb4_unicode_ci,
  `agent` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `referrer` mediumtext COLLATE utf8mb4_unicode_ci,
  `redirection_id` int(11) unsigned DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `module_id` int(11) unsigned NOT NULL,
  `group_id` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `redirection_id` (`redirection_id`),
  KEY `ip` (`ip`),
  KEY `group_id` (`group_id`),
  KEY `module_id` (`module_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirection_logs`
--

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

--
-- Table structure for table `wp_rg_form`
--

DROP TABLE IF EXISTS `wp_rg_form`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_rg_form` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) COLLATE utf8_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `is_trash` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_rg_form`
--

LOCK TABLES `wp_rg_form` WRITE;
/*!40000 ALTER TABLE `wp_rg_form` DISABLE KEYS */;
INSERT INTO `wp_rg_form` VALUES (1,'Contact Us','2017-07-17 14:31:01',1,0),(2,'Request an Appointment','2019-02-15 17:50:29',1,0);
/*!40000 ALTER TABLE `wp_rg_form` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_rg_form_meta`
--

DROP TABLE IF EXISTS `wp_rg_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_rg_form_meta` (
  `form_id` mediumint(8) unsigned NOT NULL,
  `display_meta` longtext COLLATE utf8_unicode_ci,
  `entries_grid_meta` longtext COLLATE utf8_unicode_ci,
  `confirmations` longtext COLLATE utf8_unicode_ci,
  `notifications` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_rg_form_meta`
--

LOCK TABLES `wp_rg_form_meta` WRITE;
/*!40000 ALTER TABLE `wp_rg_form_meta` DISABLE KEYS */;
INSERT INTO `wp_rg_form_meta` VALUES (1,'{\"title\":\"Contact Us\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"text\",\"id\":8,\"label\":\"First Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"First Name\",\"cssClass\":\"gf_left_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"text\",\"id\":9,\"label\":\"Last Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Last Name\",\"cssClass\":\"gf_right_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"phone\",\"id\":4,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Phone\",\"cssClass\":\"gf_left_half\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"form_id\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":3,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Email\",\"cssClass\":\"gf_right_half\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"emailConfirmEnabled\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":6,\"label\":\"Message\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Write your message\",\"cssClass\":\"\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"form_id\":\"\",\"useRichTextEditor\":false,\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"pageNumber\":1,\"displayOnly\":\"\"}],\"version\":\"2.2.6.5\",\"id\":1,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"notifications\":{\"596cca2578e84\":{\"id\":\"596cca2578e84\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"596cca25792e2\":{\"id\":\"596cca25792e2\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"page\",\"message\":\"\",\"url\":\"\",\"pageId\":429,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}}','','{\"596cca25792e2\":{\"id\":\"596cca25792e2\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"page\",\"message\":\"\",\"url\":\"\",\"pageId\":429,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}','{\"596cca2578e84\":{\"id\":\"596cca2578e84\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}'),(2,'{\"title\":\"Request an Appointment\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"text\",\"id\":8,\"label\":\"First Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"First Name\",\"cssClass\":\"gf_left_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":9,\"label\":\"Last Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Last Name\",\"cssClass\":\"gf_right_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":4,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Phone\",\"cssClass\":\"gf_left_half\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"form_id\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":3,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Email\",\"cssClass\":\"gf_right_half\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"emailConfirmEnabled\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":10,\"label\":\"Preferred Day\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"choices\":[{\"text\":\"Monday\",\"value\":\"Monday\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Tuesday\",\"value\":\"Tuesday\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Wednesday\",\"value\":\"Wednesday\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Thursday\",\"value\":\"Thursday\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Friday\",\"value\":\"Friday\",\"isSelected\":false,\"price\":\"\"}],\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Please Select\",\"cssClass\":\"gf_left_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePrice\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"select\",\"id\":11,\"label\":\"Preferred Time\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"choices\":[{\"text\":\"Morning\",\"value\":\"Morning\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Afternoon\",\"value\":\"Afternoon\",\"isSelected\":false,\"price\":\"\"}],\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Please Select\",\"cssClass\":\"gf_right_half\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePrice\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"textarea\",\"id\":6,\"label\":\"Message\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Write your message\",\"cssClass\":\"\",\"inputName\":\"\",\"visibility\":\"visible\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"form_id\":\"\",\"useRichTextEditor\":false,\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"pageNumber\":1,\"displayOnly\":\"\"}],\"version\":\"2.2.6.5\",\"id\":2,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null}',NULL,'{\"596cca25792e2\":{\"id\":\"596cca25792e2\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"page\",\"message\":\"\",\"url\":\"\",\"pageId\":429,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}','{\"596cca2578e84\":{\"id\":\"596cca2578e84\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}');
/*!40000 ALTER TABLE `wp_rg_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_rg_form_view`
--

DROP TABLE IF EXISTS `wp_rg_form_view`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_rg_form_view` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` char(15) COLLATE utf8_unicode_ci DEFAULT NULL,
  `count` mediumint(8) unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB AUTO_INCREMENT=144 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_rg_form_view`
--

LOCK TABLES `wp_rg_form_view` WRITE;
/*!40000 ALTER TABLE `wp_rg_form_view` DISABLE KEYS */;
INSERT INTO `wp_rg_form_view` VALUES (1,1,'2017-07-19 19:17:57','65.126.81.234',17),(2,1,'2017-07-21 14:52:22','65.126.81.234',9),(3,1,'2017-07-24 14:58:38','65.126.81.234',28),(4,1,'2017-07-25 15:05:25','208.52.180.174',4),(5,1,'2017-07-31 15:56:03','65.126.81.234',1),(6,1,'2017-08-16 21:05:28','66.150.153.10',7),(7,1,'2017-08-18 19:27:42','66.150.153.10',6),(8,1,'2017-08-21 21:48:59','66.150.153.10',14),(9,1,'2017-08-23 18:19:47','54.209.231.248',25),(10,1,'2017-08-28 23:34:42','66.150.153.10',1),(11,1,'2017-08-31 21:10:01','66.150.153.10',18),(12,1,'2017-09-01 21:35:28','23.243.51.245',3),(13,1,'2017-09-05 15:40:59','66.150.153.10',3),(14,1,'2017-09-06 23:37:20','66.150.153.10',9),(15,1,'2017-09-07 23:54:31','66.150.153.10',2),(16,1,'2017-09-10 02:14:54','104.33.52.62',1),(17,1,'2017-09-11 04:29:58','35.188.33.103',1),(18,1,'2017-09-12 23:54:53','66.150.153.10',7),(19,1,'2017-09-14 03:36:39','',5),(20,1,'2017-09-17 15:01:45','',2),(21,1,'2017-09-19 16:29:21','',4),(22,1,'2017-09-20 18:41:28','',2),(23,1,'2017-09-21 19:18:03','',1),(24,1,'2017-09-27 04:53:26','',2),(25,1,'2017-09-28 17:28:22','',2),(26,1,'2017-09-29 21:16:40','',1),(27,1,'2017-10-02 20:51:14','',8),(28,1,'2017-10-03 22:15:05','',4),(29,1,'2017-10-04 22:46:31','',7),(30,1,'2017-10-05 22:55:22','',15),(31,1,'2017-10-06 23:55:24','',1),(32,1,'2017-10-08 00:55:30','',1),(33,1,'2017-10-09 01:55:28','',25),(34,1,'2017-10-10 02:55:29','',5),(35,1,'2017-10-11 03:55:27','',10),(36,1,'2017-10-12 04:55:26','',2),(37,1,'2017-10-13 05:55:36','',6),(38,1,'2017-10-14 06:55:26','',5),(39,1,'2017-10-15 07:55:27','',1),(40,1,'2017-10-16 08:55:34','',12),(41,1,'2017-10-17 09:55:31','',13),(42,1,'2017-10-18 10:55:27','',5),(43,1,'2017-10-19 11:55:37','',6),(44,1,'2017-10-20 12:55:41','',6),(45,1,'2017-10-21 13:55:28','',1),(46,1,'2017-10-22 14:55:28','',4),(47,1,'2017-10-23 15:55:37','',10),(48,1,'2017-10-24 16:55:24','',28),(49,1,'2017-10-25 17:43:34','',27),(50,1,'2017-10-26 18:19:32','',10),(51,1,'2017-10-27 19:55:25','',1),(52,1,'2017-10-28 20:55:24','',2),(53,1,'2017-10-29 21:55:27','',5),(54,1,'2017-10-30 22:55:26','',8),(55,1,'2017-10-31 23:55:28','',2),(56,1,'2017-11-02 00:55:25','',21),(57,1,'2017-11-03 01:55:48','',4),(58,1,'2017-11-04 02:55:35','',2),(59,1,'2017-11-05 03:55:24','',1),(60,1,'2017-11-06 04:55:26','',4),(61,1,'2017-11-07 05:55:36','',9),(62,1,'2017-11-08 06:55:32','',21),(63,1,'2017-11-09 07:55:33','',17),(64,1,'2017-11-10 08:55:26','',16),(65,1,'2017-11-11 09:55:33','',1),(66,1,'2017-11-12 10:55:36','',1),(67,1,'2017-11-13 11:55:41','',3),(68,1,'2017-11-14 12:55:32','',15),(69,1,'2017-11-15 13:55:45','',7),(70,1,'2017-11-16 14:26:53','',13),(71,1,'2017-11-17 15:55:30','',11),(72,1,'2017-11-18 16:55:26','',2),(73,1,'2017-11-19 17:55:28','',14),(74,1,'2017-11-20 18:24:10','',4),(75,1,'2017-11-21 19:55:40','',2),(76,1,'2017-11-22 20:34:23','',3),(77,1,'2017-11-23 21:55:28','',1),(78,1,'2017-11-24 22:55:40','',2),(79,1,'2017-11-25 23:55:29','',1),(80,1,'2017-11-27 00:55:38','',9),(81,1,'2017-11-28 20:38:12','',14),(82,1,'2017-11-29 20:42:54','',32),(83,1,'2017-12-01 16:06:44','',8),(84,1,'2017-12-04 14:24:33','',13),(85,1,'2017-12-05 15:17:47','',16),(86,1,'2017-12-06 18:03:14','',11),(87,1,'2017-12-07 18:18:08','',7),(88,1,'2017-12-11 16:23:00','',15),(89,1,'2017-12-12 17:47:57','',4),(90,1,'2017-12-13 18:18:11','',4),(91,1,'2017-12-15 19:15:38','',3),(92,1,'2017-12-19 23:07:01','',1),(93,1,'2017-12-22 08:56:10','',1),(94,1,'2018-01-04 22:02:38','',1),(95,1,'2018-01-06 00:25:08','',1),(96,1,'2018-01-23 18:53:20','',1),(97,1,'2018-02-06 22:23:36','',2),(98,1,'2018-02-27 22:45:09','',1),(99,1,'2018-03-01 23:32:13','',18),(100,1,'2018-03-05 14:45:09','',30),(101,1,'2018-03-06 15:27:52','',38),(102,1,'2018-03-12 22:03:24','',2),(103,1,'2018-03-16 17:46:40','',2),(104,1,'2018-03-19 15:25:03','',2),(105,1,'2018-03-27 19:26:11','',1),(106,1,'2018-03-28 20:04:41','',2),(107,1,'2018-04-09 18:59:28','',1),(108,1,'2018-04-26 14:50:45','',1),(109,1,'2018-05-22 14:53:37','',1),(110,1,'2018-05-31 22:06:45','',1),(111,1,'2018-06-07 23:27:15','',1),(112,1,'2018-06-20 21:45:54','',1),(113,1,'2018-06-26 23:59:15','',1),(114,1,'2018-06-28 23:04:41','',2),(115,1,'2018-07-20 01:00:34','',1),(116,1,'2018-08-16 17:16:09','',2),(117,1,'2018-08-27 15:42:56','',1),(118,1,'2018-09-06 21:31:00','',1),(119,1,'2018-09-11 00:55:45','',1),(120,1,'2018-09-18 20:30:27','',1),(121,1,'2018-10-15 22:07:06','',1),(122,1,'2018-10-30 22:03:40','',1),(123,1,'2018-11-05 16:30:55','',1),(124,1,'2018-11-15 15:54:57','',2),(125,1,'2018-11-16 16:30:13','',3),(126,1,'2018-11-21 18:23:58','',1),(127,1,'2018-12-04 14:24:57','',1),(128,1,'2018-12-06 21:07:44','',5),(129,1,'2018-12-14 04:27:48','',1),(130,1,'2018-12-20 21:23:46','',1),(131,1,'2019-01-02 14:46:01','',1),(132,1,'2019-01-07 22:17:02','',1),(133,1,'2019-01-08 23:19:49','',2),(134,1,'2019-01-15 19:57:24','',15),(135,1,'2019-01-16 20:31:26','',1),(136,1,'2019-01-31 17:08:17','',2),(137,1,'2019-02-11 18:51:20','',2),(138,1,'2019-02-15 17:48:40','',1),(139,1,'2019-02-19 17:02:58','',3),(140,1,'2019-02-27 00:55:18','',1),(141,1,'2019-03-05 13:24:04','',2),(142,1,'2019-03-08 19:58:17','',1),(143,1,'2019-03-22 13:08:14','',1);
/*!40000 ALTER TABLE `wp_rg_form_view` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_rg_incomplete_submissions`
--

DROP TABLE IF EXISTS `wp_rg_incomplete_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_rg_incomplete_submissions` (
  `uuid` char(32) COLLATE utf8_unicode_ci NOT NULL,
  `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `form_id` mediumint(8) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` varchar(39) COLLATE utf8_unicode_ci NOT NULL,
  `source_url` longtext COLLATE utf8_unicode_ci NOT NULL,
  `submission` longtext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`uuid`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_rg_incomplete_submissions`
--

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

--
-- Table structure for table `wp_rg_lead`
--

DROP TABLE IF EXISTS `wp_rg_lead`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_rg_lead` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `is_starred` tinyint(1) NOT NULL DEFAULT '0',
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `ip` varchar(39) COLLATE utf8_unicode_ci NOT NULL,
  `source_url` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_agent` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `currency` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payment_status` varchar(15) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payment_date` datetime DEFAULT NULL,
  `payment_amount` decimal(19,2) DEFAULT NULL,
  `payment_method` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
  `transaction_id` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `is_fulfilled` tinyint(1) DEFAULT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `transaction_type` tinyint(1) DEFAULT NULL,
  `status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'active',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_rg_lead`
--

LOCK TABLES `wp_rg_lead` WRITE;
/*!40000 ALTER TABLE `wp_rg_lead` DISABLE KEYS */;
INSERT INTO `wp_rg_lead` VALUES (4,1,NULL,'2018-03-02 22:31:11',0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(5,1,NULL,'2018-03-02 22:41:24',0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/services/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(6,1,NULL,'2018-03-02 22:45:04',0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/services/commercial-construction/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(7,1,NULL,'2018-03-02 22:51:54',0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/services/residential-construction/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(8,1,NULL,'2018-03-05 14:47:54',0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/our-work/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(9,1,NULL,'2018-03-05 14:55:08',0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/testimonials/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(10,1,NULL,'2018-03-05 14:58:31',0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/about/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(11,1,NULL,'2018-03-05 18:20:35',0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(12,1,NULL,'2018-03-05 18:24:33',0,0,'4.34.189.30','https://dev-rl-emerson.pantheonsite.io/appointments/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active');
/*!40000 ALTER TABLE `wp_rg_lead` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_rg_lead_detail`
--

DROP TABLE IF EXISTS `wp_rg_lead_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_rg_lead_detail` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `lead_id` int(10) unsigned NOT NULL,
  `form_id` mediumint(8) unsigned NOT NULL,
  `field_number` float NOT NULL,
  `value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `lead_id` (`lead_id`),
  KEY `lead_field_number` (`lead_id`,`field_number`),
  KEY `lead_field_value` (`value`(191))
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_rg_lead_detail`
--

LOCK TABLES `wp_rg_lead_detail` WRITE;
/*!40000 ALTER TABLE `wp_rg_lead_detail` DISABLE KEYS */;
INSERT INTO `wp_rg_lead_detail` VALUES (6,4,1,3,'test@test.com'),(7,4,1,4,'(123) 415-6789'),(8,4,1,6,'test'),(11,5,1,3,'test@test.com'),(12,5,1,4,'(123) 456-7890'),(13,5,1,6,'test'),(16,6,1,3,'test@test.com'),(17,6,1,4,'(123) 456-7890'),(18,6,1,6,'test'),(21,7,1,3,'test@test.com'),(22,7,1,4,'(123) 456-7890'),(23,7,1,6,'test'),(26,8,1,3,'test@test.com'),(27,8,1,4,'(123) 456-7890'),(30,9,1,3,'test@test.com'),(31,9,1,4,'(123) 456-7890'),(32,9,1,6,'test'),(35,10,1,3,'test@test.com'),(36,10,1,4,'(123) 456-7890'),(37,10,1,6,'test'),(40,11,1,3,'test@test.com'),(41,11,1,4,'(123) 456-7890'),(42,11,1,6,'test'),(45,12,1,3,'test@test.com'),(46,12,1,4,'(123) 456-7890'),(47,12,1,6,'test');
/*!40000 ALTER TABLE `wp_rg_lead_detail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_rg_lead_detail_long`
--

DROP TABLE IF EXISTS `wp_rg_lead_detail_long`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_rg_lead_detail_long` (
  `lead_detail_id` bigint(20) unsigned NOT NULL,
  `value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`lead_detail_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_rg_lead_detail_long`
--

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

--
-- Table structure for table `wp_rg_lead_meta`
--

DROP TABLE IF EXISTS `wp_rg_lead_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_rg_lead_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `lead_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `lead_id` (`lead_id`),
  KEY `form_id_meta_key` (`form_id`,`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_rg_lead_meta`
--

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

--
-- Table structure for table `wp_rg_lead_notes`
--

DROP TABLE IF EXISTS `wp_rg_lead_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_rg_lead_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lead_id` int(10) unsigned NOT NULL,
  `user_name` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `value` longtext COLLATE utf8_unicode_ci,
  `note_type` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `lead_id` (`lead_id`),
  KEY `lead_user_key` (`lead_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_rg_lead_notes`
--

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

--
-- Table structure for table `wp_smush_dir_images`
--

DROP TABLE IF EXISTS `wp_smush_dir_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `path_hash` (`path_hash`),
  KEY `image_size` (`image_size`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_smush_dir_images`
--

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

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (207,2,0),(326,3,0),(426,4,0),(484,3,0),(505,4,0),(506,2,0),(550,5,0),(551,6,0),(592,2,0),(593,2,0),(594,2,0),(595,2,0),(596,2,0),(597,2,0),(598,2,0),(599,2,0),(600,2,0),(601,2,0),(602,3,0),(603,3,0),(604,3,0),(605,3,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8_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=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,12),(3,3,'nav_menu','',0,6),(4,4,'nav_menu','',0,2),(5,5,'nav_menu','',0,1),(6,6,'nav_menu','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,2,'text_align','left'),(2,2,'_text_align','field_59bae7a5bec93'),(3,2,'position','left'),(4,2,'_position','field_59bae7d9e0d20'),(5,2,'sub-menu_width','225'),(6,2,'_sub-menu_width','field_59bae841bda68'),(7,2,'menu_text_highlight_color','#d51d25'),(8,2,'_menu_text_highlight_color','field_59bae841bda69'),(9,2,'sub-menu_text_color','#252525'),(10,2,'_sub-menu_text_color','field_59bae841bda65'),(11,2,'sub-menu_background_color','#FFFFFF'),(12,2,'_sub-menu_background_color','field_59bae82abda64'),(13,2,'sub-menu_border_color','#E4E4E4'),(14,2,'_sub-menu_border_color','field_59bbfbf7c4f3d');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

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

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Menu 1','menu-1',0),(3,'Footer Utility','footer-utility',0),(4,'Footer Auxillary','footer-auxillary',0),(5,'Utility Left','utility-left',0),(6,'Utility Right','utility-right',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=560 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (29,2,'nickname','rladmin'),(30,2,'first_name',''),(31,2,'last_name',''),(32,2,'description',''),(33,2,'rich_editing','true'),(34,2,'comment_shortcuts','false'),(35,2,'admin_color','fresh'),(36,2,'use_ssl','0'),(37,2,'show_admin_bar_front','true'),(38,2,'locale',''),(39,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(40,2,'wp_user_level','10'),(41,2,'dismissed_wp_pointers','text_widget_custom_html,wp496_privacy'),(43,2,'gform_recent_forms','a:2:{i:0;s:1:\"2\";i:1;s:1:\"1\";}'),(44,2,'wp_dashboard_quick_press_last_post_id','531'),(45,2,'community-events-location','a:1:{s:2:\"ip\";s:21:\"2604:6000:1413:4006::\";}'),(46,2,'nav_menu_recently_edited','2'),(47,2,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(48,2,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(49,2,'acf_user_settings','a:1:{s:51:\"collapsed_group_zi794n2mdkggmlv_field_35a935e59d871\";s:5:\"0,1,2\";}'),(50,2,'wp_user-settings','libraryContent=browse&editor=tinymce'),(51,2,'wp_user-settings-time','1550253801'),(52,2,'closedpostboxes_page','a:12:{i:0;s:10:\"wpseo_meta\";i:1;s:25:\"acf-group_rnimyv52b1l53jv\";i:2;s:25:\"acf-group_69kihebviq0vjyc\";i:3;s:25:\"acf-group_odfm2jkpw0mr44d\";i:4;s:25:\"acf-group_dk4qfpqwpvi9q29\";i:5;s:25:\"acf-group_0yx3acydmccnw9z\";i:6;s:25:\"acf-group_chcf29yih8zz3j3\";i:7;s:25:\"acf-group_zi794n2mdkggmlv\";i:8;s:25:\"acf-group_gtf9qg87luu5eqi\";i:9;s:25:\"acf-group_5ceuunsp1agbemn\";i:10;s:25:\"acf-group_zznmx4e2lzf8s9h\";i:11;s:25:\"acf-group_tzgv8v1sbieylt0\";}'),(53,2,'metaboxhidden_page','a:57:{i:0;s:23:\"acf-group_0052405662951\";i:1;s:13:\"pageparentdiv\";i:2;s:23:\"acf-group_5915648434243\";i:3;s:23:\"acf-group_4502405812590\";i:4;s:25:\"acf-group_rnimyv52b1l53jv\";i:5;s:23:\"acf-group_7383356798658\";i:6;s:23:\"acf-group_5a0a140926fb0\";i:7;s:23:\"acf-group_0052405830481\";i:8;s:21:\"acf-group_61183010081\";i:9;s:21:\"acf-group_51183014919\";i:10;s:23:\"acf-group_591b258d0b04a\";i:11;s:25:\"acf-group_69kihebviq0vjyc\";i:12;s:25:\"acf-group_odfm2jkpw0mr44d\";i:13;s:25:\"acf-group_dk4qfpqwpvi9q29\";i:14;s:25:\"acf-group_gtf9qg87luu5eqi\";i:15;s:25:\"acf-group_5ceuunsp1agbemn\";i:16;s:25:\"acf-group_zznmx4e2lzf8s9h\";i:17;s:25:\"acf-group_tzgv8v1sbieylt0\";i:18;s:25:\"acf-group_b0v7q0nnl7smzja\";i:19;s:25:\"acf-group_rnc60ry282wfpen\";i:20;s:25:\"acf-group_o71dc4si7yrb9ju\";i:21;s:25:\"acf-group_3ze24gyj4v2v5kl\";i:22;s:25:\"acf-group_kpnm8dq6b461nnn\";i:23;s:25:\"acf-group_ffgoalgidcgol8d\";i:24;s:25:\"acf-group_xlmnj6mgvckzsbl\";i:25;s:25:\"acf-group_0j287z8smusg8ro\";i:26;s:25:\"acf-group_glogz5elw7g3d94\";i:27;s:25:\"acf-group_lt793odq0j0s3qx\";i:28;s:25:\"acf-group_7hpz2gts0xxjbk1\";i:29;s:25:\"acf-group_qo98bywf16e4f60\";i:30;s:25:\"acf-group_sfvs9xaj2olhh3a\";i:31;s:25:\"acf-group_xd5cu11k7q2944x\";i:32;s:25:\"acf-group_rcq58c1snwtp4dg\";i:33;s:25:\"acf-group_ud1z6cp3we1stc6\";i:34;s:25:\"acf-group_bll1v31dtnw9rl6\";i:35;s:25:\"acf-group_5zwsdbbzhgq9b3k\";i:36;s:25:\"acf-group_6tb9wboffn47hyy\";i:37;s:25:\"acf-group_br5n2isiewhel27\";i:38;s:25:\"acf-group_57f36i17ugcs5l4\";i:39;s:25:\"acf-group_8txfhtjx684j6no\";i:40;s:25:\"acf-group_u6maleu6wg7r14z\";i:41;s:25:\"acf-group_yzfih4f7wihjncf\";i:42;s:25:\"acf-group_uxoj4z6axzyhvze\";i:43;s:25:\"acf-group_sc8btebc88ptzbl\";i:44;s:25:\"acf-group_i0o5jwapcpx8ora\";i:45;s:25:\"acf-group_s1z03s57s2gssas\";i:46;s:25:\"acf-group_exs5vc3me4a6ohn\";i:47;s:25:\"acf-group_9c9flwfx75zpkho\";i:48;s:25:\"acf-group_9gwabey53p04ngf\";i:49;s:25:\"acf-group_r9k1mdmqbq8p3mx\";i:50;s:25:\"acf-group_o94sm7iw1sypujx\";i:51;s:25:\"acf-group_4trfhcisy1rje8c\";i:52;s:25:\"acf-group_jgklj4r4l3wngs8\";i:53;s:12:\"revisionsdiv\";i:54;s:16:\"commentstatusdiv\";i:55;s:7:\"slugdiv\";i:56;s:9:\"authordiv\";}'),(90,2,'syntax_highlighting','true'),(106,2,'closedpostboxes_ctas','a:1:{i:0;s:10:\"wpseo_meta\";}'),(107,2,'metaboxhidden_ctas','a:25:{i:0;s:23:\"acf-group_0052405662951\";i:1;s:23:\"acf-group_5915648434243\";i:2;s:25:\"acf-group_rnimyv52b1l53jv\";i:3;s:23:\"acf-group_7383356798658\";i:4;s:23:\"acf-group_5a0a140926fb0\";i:5;s:23:\"acf-group_0052405830481\";i:6;s:21:\"acf-group_61183010081\";i:7;s:21:\"acf-group_51183014919\";i:8;s:23:\"acf-group_591b258d0b04a\";i:9;s:25:\"acf-group_69kihebviq0vjyc\";i:10;s:25:\"acf-group_odfm2jkpw0mr44d\";i:11;s:25:\"acf-group_dk4qfpqwpvi9q29\";i:12;s:25:\"acf-group_0yx3acydmccnw9z\";i:13;s:25:\"acf-group_285xgh2d32ffzt8\";i:14;s:25:\"acf-group_chcf29yih8zz3j3\";i:15;s:25:\"acf-group_2ml27n9cvj1sjsm\";i:16;s:25:\"acf-group_zi794n2mdkggmlv\";i:17;s:25:\"acf-group_jay33uzo882n74g\";i:18;s:25:\"acf-group_7omya7l9yrr0mu0\";i:19;s:25:\"acf-group_ke4hu2aqic6ar5x\";i:20;s:25:\"acf-group_gtf9qg87luu5eqi\";i:21;s:25:\"acf-group_5ceuunsp1agbemn\";i:22;s:25:\"acf-group_zznmx4e2lzf8s9h\";i:23;s:25:\"acf-group_tzgv8v1sbieylt0\";i:24;s:7:\"slugdiv\";}'),(109,2,'_yoast_wpseo_profile_updated','1554914847'),(110,2,'wpseo_title',''),(111,2,'wpseo_metadesc',''),(112,2,'wpseo_noindex_author',''),(113,2,'wpseo_content_analysis_disable',''),(114,2,'wpseo_keyword_analysis_disable',''),(115,2,'googleplus',''),(116,2,'twitter',''),(117,2,'facebook',''),(210,2,'session_tokens','a:1:{s:64:\"fbf0997f36479aa7199eb616e35a6d0784adf0e52f77b3eab8e28c8722196999\";a:4:{s:10:\"expiration\";i:1577549691;s:2:\"ip\";s:39:\"2604:6000:1413:4006:79f0:e3f2:6543:3d7c\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:71.0) Gecko/20100101 Firefox/71.0\";s:5:\"login\";i:1577376891;}}'),(480,19,'nickname','leeanne@mannplumbingandheating.com'),(481,19,'first_name','Leeanne'),(482,19,'last_name','Evans'),(483,19,'description',''),(484,19,'rich_editing','true'),(485,19,'syntax_highlighting','true'),(486,19,'comment_shortcuts','false'),(487,19,'admin_color','fresh'),(488,19,'use_ssl','0'),(489,19,'show_admin_bar_front','true'),(490,19,'locale',''),(491,19,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(492,19,'wp_user_level','10'),(493,19,'_yoast_wpseo_profile_updated','1633718402'),(494,19,'dismissed_wp_pointers',''),(496,19,'gform_recent_forms','a:2:{i:0;s:1:\"2\";i:1;s:1:\"1\";}'),(497,19,'wp_dashboard_quick_press_last_post_id','841'),(498,19,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:432:\"Yoast SEO and WooCommerce can work together a lot better by adding a helper plugin. Please install Yoast WooCommerce SEO to make your life better. <a href=\"https://yoa.st/1o0?php_version=7.0&platform=wordpress&platform_version=5.5.3&software=free&software_version=14.0.4&days_active=30plus&user_language=en_US\" aria-label=\"More information about Yoast WooCommerce SEO\" target=\"_blank\" rel=\"noopener noreferrer\">More information</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:44:\"wpseo-suggested-plugin-yoast-woocommerce-seo\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:2:\"19\";s:10:\"user_login\";s:34:\"leeanne@mannplumbingandheating.com\";s:9:\"user_pass\";s:60:\"$2y$10$.p6Dxx.3D8QdkRh.fB0mxuw7hAcAT9WNboiVMmoLktYVLT6xrsYPq\";s:13:\"user_nicename\";s:33:\"leeannemannplumbingandheating-com\";s:10:\"user_email\";s:34:\"leeanne@mannplumbingandheating.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2021-10-08 18:40:02\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:13:\"Leeanne Evans\";}s:2:\"ID\";i:19;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:64:{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:10:\"copy_posts\";b:1;s:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:15:\"install_plugins\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(499,19,'community-events-location','a:1:{s:2:\"ip\";s:12:\"174.60.233.0\";}'),(519,19,'session_tokens','a:1:{s:64:\"99bfb9a7d794cfc8af9e7dd2c14b91d6999da1929180ba1c955428f85132f4dd\";a:4:{s:10:\"expiration\";i:1635533721;s:2:\"ip\";s:14:\"174.60.233.151\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0\";s:5:\"login\";i:1635360921;}}'),(539,22,'nickname','temp-admin'),(540,22,'first_name',''),(541,22,'last_name',''),(542,22,'description',''),(543,22,'rich_editing','true'),(544,22,'syntax_highlighting','true'),(545,22,'comment_shortcuts','false'),(546,22,'admin_color','fresh'),(547,22,'use_ssl','0'),(548,22,'show_admin_bar_front','true'),(549,22,'locale',''),(550,22,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(551,22,'wp_user_level','10'),(552,22,'_yoast_wpseo_profile_updated','1645046409'),(553,22,'dismissed_wp_pointers',''),(554,22,'session_tokens','a:1:{s:64:\"aca278b01501dd0922b835ace669a9e08e5ac6cb703225c9e7a94d4ec85b37ae\";a:4:{s:10:\"expiration\";i:1645219356;s:2:\"ip\";s:12:\"65.36.93.254\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36\";s:5:\"login\";i:1645046556;}}'),(555,22,'gform_recent_forms','a:2:{i:0;s:1:\"2\";i:1;s:1:\"1\";}'),(556,22,'wp_dashboard_quick_press_last_post_id','839'),(557,22,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:432:\"Yoast SEO and WooCommerce can work together a lot better by adding a helper plugin. Please install Yoast WooCommerce SEO to make your life better. <a href=\"https://yoa.st/1o0?php_version=7.4&platform=wordpress&platform_version=5.8.2&software=free&software_version=14.0.4&days_active=30plus&user_language=en_US\" aria-label=\"More information about Yoast WooCommerce SEO\" target=\"_blank\" rel=\"noopener noreferrer\">More information</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:44:\"wpseo-suggested-plugin-yoast-woocommerce-seo\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:2:\"22\";s:10:\"user_login\";s:10:\"temp-admin\";s:9:\"user_pass\";s:60:\"$2y$10$Nk1JJ3Xgc4dWlW6tqcI8zuEH2v7Z3YiRtJq3SSYblv2NBfEhDmuWO\";s:13:\"user_nicename\";s:10:\"temp-admin\";s:10:\"user_email\";s:13:\"test@test.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2022-02-16 21:20:09\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"temp-admin\";}s:2:\"ID\";i:22;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:64:{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:10:\"copy_posts\";b:1;s:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:15:\"install_plugins\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(558,22,'community-events-location','a:1:{s:2:\"ip\";s:10:\"65.36.93.0\";}'),(559,22,'users_per_page','30');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8_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=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (2,'rladmin','$2y$10$6KsMJNd61cLRd.o9ZQk0Yeh9r120/NKbYF3BuBq6nUkmOiilt73Om','rladmin','reachsitefulfillment@reachlocal.com','','2017-08-16 23:27:45','',0,'rladmin'),(19,'leeanne@mannplumbingandheating.com','$2y$10$.p6Dxx.3D8QdkRh.fB0mxuw7hAcAT9WNboiVMmoLktYVLT6xrsYPq','leeannemannplumbingandheating-com','leeanne@mannplumbingandheating.com','','2021-10-08 18:40:02','',0,'Leeanne Evans'),(22,'temp-admin','$2y$10$Nk1JJ3Xgc4dWlW6tqcI8zuEH2v7Z3YiRtJq3SSYblv2NBfEhDmuWO','temp-admin','test@test.com','','2022-02-16 21:20:09','',0,'temp-admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable`
--

DROP TABLE IF EXISTS `wp_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext COLLATE utf8mb4_unicode_ci,
  `permalink_hash` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `object_id` int(11) unsigned DEFAULT NULL,
  `object_type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `object_sub_type` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `author_id` int(11) unsigned DEFAULT NULL,
  `post_parent` int(11) unsigned DEFAULT NULL,
  `title` text COLLATE utf8mb4_unicode_ci,
  `description` mediumtext COLLATE utf8mb4_unicode_ci,
  `breadcrumb_title` text COLLATE utf8mb4_unicode_ci,
  `post_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT '0',
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext COLLATE utf8mb4_unicode_ci,
  `primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT '0',
  `is_robots_noindex` tinyint(1) DEFAULT '0',
  `is_robots_nofollow` tinyint(1) DEFAULT '0',
  `is_robots_noarchive` tinyint(1) DEFAULT '0',
  `is_robots_noimageindex` tinyint(1) DEFAULT '0',
  `is_robots_nosnippet` tinyint(1) DEFAULT '0',
  `twitter_title` text COLLATE utf8mb4_unicode_ci,
  `twitter_image` longtext COLLATE utf8mb4_unicode_ci,
  `twitter_description` longtext COLLATE utf8mb4_unicode_ci,
  `twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `twitter_image_source` text COLLATE utf8mb4_unicode_ci,
  `open_graph_title` text COLLATE utf8mb4_unicode_ci,
  `open_graph_description` longtext COLLATE utf8mb4_unicode_ci,
  `open_graph_image` longtext COLLATE utf8mb4_unicode_ci,
  `open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `open_graph_image_source` text COLLATE utf8mb4_unicode_ci,
  `open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_ci,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  `language` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schema_page_type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schema_article_type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `permalink_hash` (`permalink_hash`),
  KEY `object_id_and_type` (`object_id`,`object_type`)
) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable`
--

LOCK TABLES `wp_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable` VALUES (1,'http://www.mannplumbingandheating.com/blog/author/rladmin/','58:42b50df9bb08f62554ffc9fade5ae88e',2,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://0.gravatar.com/avatar/96b7da0fab0adb863271881693978235?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://0.gravatar.com/avatar/96b7da0fab0adb863271881693978235?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-08-07 16:55:51','2021-06-24 12:40:55',1,NULL,NULL,NULL,NULL),(2,'http://www.mannplumbingandheating.com/contact-us/','49:a8700bcd1e05e1c34b1834113449983a',205,'post','page',2,0,NULL,'For your plumbing and heating needs in Chambersburg, Greencastle, Waynesboro, and beyond in Pennsylvania, turn to Mann Plumbing & Heating, LLC.','Contact','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 16:55:51','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(3,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-07 17:03:31','2022-02-16 21:38:13',1,NULL,NULL,NULL,NULL),(5,'http://www.mannplumbingandheating.com/','38:29b7ce66b04acfcdaf4e6205fb8775b4',5,'post','page',2,0,'Plumbing & Heating Chambersburg, PA| Home | Mann Plumbing & Heating, LLC.','For your plumbing and heating needs in Chambersburg, Greencastle, Waynesboro, and beyond in Pennsylvania, turn to Mann Plumbing & Heating, LLC.','Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-08-07 17:25:46','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(6,'http://www.mannplumbingandheating.com/services/hvac/','52:6d12de6a4a0c1383d544c73462c683af',500,'post','page',2,569,'HVAC Services Greencastle, PA | Mann Plumbing & Heating, LLC.','Get efficient HVAC services, including repairs and replacement, from the experts at Mann Plumbing & Heating, LLC. We serve Greencastle, PA and beyond.','HVAC','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 18:49:04','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(8,'http://www.mannplumbingandheating.com/services/','47:da5056138bf435959d6e4bf1985d0153',569,'post','page',7,0,NULL,'For your plumbing and heating needs in Chambersburg, Greencastle, Waynesboro, and beyond in Pennsylvania, turn to Mann Plumbing & Heating, LLC.','Services','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 18:49:04','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(9,'http://www.mannplumbingandheating.com/services/design-build/','60:e8e9c6a152c29d6caa03b98f0bd33e42',572,'post','page',7,569,'HVAC Design & Build Waynesboro, PA | Mann Plumbing & Heating, LLC.','Mann Plumbing & Heating, LLC. has your HVAC system design and build needs covered in Waynesboro, PA. Call us to schedule a consultation.','Design / Build','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 19:34:10','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(10,'http://www.mannplumbingandheating.com/about-us/meet-our-team/','61:b4aeda58fbe94868f2fdd54fd849fe43',585,'post','page',7,590,NULL,'For your plumbing and heating needs in Chambersburg, Greencastle, Waynesboro, and beyond in Pennsylvania, turn to Mann Plumbing & Heating, LLC.','Meet Our Team','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 20:00:13','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(11,'http://www.mannplumbingandheating.com/about-us/','47:9f8ae8d2c6b4693248e82b283affd88c',590,'post','page',7,0,'Mann Plumbing & Heating, LLC. | About Us','For the past 30 years, Mann Plumbing & Heating., LLC. has helped customers throughout South-Central Pennsylvania with their plumbing, heating, and cooling.','About Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 20:00:13','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(12,'http://www.mannplumbingandheating.com/services/excavation-services/','67:46c8f72caeaec82fbcd42c13dbe9d50e',576,'post','page',7,569,'Excavation Services Shippensburg, PA | Mann Plumbing & Heating, LLC.','When your project calls for excavation services, Mann Plumbing & Heating, LLC. offers quality and experience to customers in and around Shippensburg, PA.','Excavation Services','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 20:16:20','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(13,'http://www.mannplumbingandheating.com/services/plumbing/','56:514bd98ce41bf7e4ffdf143409ea9377',574,'post','page',7,569,'Plumbing Gettysburg, PA | Mann Plumbing & Heating, LLC.','The talented team at Mann Plumbing & Heating, LLC. has helped countless customers in Gettysburg, PA and surrounding areas with their plumbing needs.','Plumbing','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 20:21:27','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(14,'http://www.mannplumbingandheating.com/testimonials/','51:d25f9e4953664bccc7b81a938c8acd31',580,'post','page',7,0,NULL,'For your plumbing and heating needs in Chambersburg, Greencastle, Waynesboro, and beyond in Pennsylvania, turn to Mann Plumbing & Heating, LLC.','Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 20:48:25','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(15,'http://www.mannplumbingandheating.com/sitemap/','46:35829d48f0132371f371b12a901ebe88',288,'post','page',2,0,NULL,'%%sitename%% provides this sitemap for the convenience of our customers. Here you will find information about the pages and content on this website so you can easily navigate to the sections you need.','Sitemap','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 20:49:05','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(16,'http://www.mannplumbingandheating.com/thank-you/','48:65e1f250fcb541991775552d9a7512cf',429,'post','page',2,0,NULL,NULL,'Thank You','publish',0,0,NULL,NULL,NULL,NULL,NULL,30,0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 20:52:12','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(17,'http://www.mannplumbingandheating.com/about-us/financing/','57:084429031a50333389d939a297882a27',588,'post','page',7,590,NULL,'For your plumbing and heating needs in Chambersburg, Greencastle, Waynesboro, and beyond in Pennsylvania, turn to Mann Plumbing & Heating, LLC.','Financing','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 21:33:48','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(18,'http://www.mannplumbingandheating.com/about-us/offers/','54:c77f51d29d2a1adb2ba6c8c37833dbc6',582,'post','page',7,590,'Offers | Mann Plumbing & Heating, LLC.','Mann Plumbing and Heating are Plumbing Contractors, Air Conditioning Contractors and Systems, Heating Contractors and Specialties in Fayetteville, PA.','Offers','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-07 23:31:05','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(19,'http://www.mannplumbingandheating.com/privacy-policy/','53:47e7b6a98598dec24399cc042b237ab3',490,'post','page',2,0,NULL,'%%sitename%% values our customer’s privacy and strives to provide the best possible experience when you utilize our services. Our privacy policy outlines how we collect and process your personal data.','Privacy Policy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,0,NULL,'2020-08-07 23:49:58','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(20,'http://www.mannplumbingandheating.com/our-work/','47:c669cfcc6ebe93869e567134e3593036',578,'post','page',7,0,'Mann Plumbing & Heating, LLC. | Our Work','Take a look at examples of Mann Plumbing & Heating, LLC.’s work for residential and commercial customers throughout South-Central Pennsylvania.','Our Work','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-08 07:22:35','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(21,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-09-25 01:56:33','2022-02-16 21:38:13',1,NULL,NULL,NULL,NULL),(24,'https://www.mannplumbingandheating.com/mannwellsfargofinancingbanner_12-16-2020/','80:169d67ecbfc3940d32cc9b8412e0b341',832,'post','attachment',15,0,NULL,NULL,'Special Finance for 72 Months','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2020/12/MannWellsFargoFinancingBanner_12.16.2020.jpg',NULL,'832','attachment-image',NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2020/12/MannWellsFargoFinancingBanner_12.16.2020.jpg','832','attachment-image','{\"width\":300,\"height\":250,\"url\":\"https:\\/\\/www.mannplumbingandheating.com\\/wp-content\\/uploads\\/2020\\/12\\/MannWellsFargoFinancingBanner_12.16.2020.jpg\",\"path\":\"\\/code\\/web\\/wp-content\\/uploads\\/2020\\/12\\/MannWellsFargoFinancingBanner_12.16.2020.jpg\",\"size\":\"full\",\"id\":832,\"alt\":\"Special Finance for 72 Months\",\"pixels\":75000,\"type\":\"image\\/jpeg\"}',0,0,NULL,'2020-12-17 05:03:50','2020-12-17 05:04:10',1,NULL,NULL,NULL,NULL),(29,'https://www.mannplumbingandheating.com/ctas/cta/','48:26bb08e4ffe15021a417b730bd794349',489,'post','ctas',2,0,NULL,NULL,'CTA','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2021-01-04 07:18:38','2021-01-04 08:10:39',1,NULL,NULL,NULL,NULL),(31,'http://www.mannplumbingandheating.com/?page_id=523/','51:5af28428956dbcf58fe3bc93c6e58676',523,'post','page',3,0,NULL,NULL,'SEO Template','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2021-02-19 22:16:11','2021-02-19 22:16:11',1,NULL,NULL,NULL,NULL),(32,'https://www.mannplumbingandheating.com/about-us/mannplumbingheating_522578757/','78:29b79c3d73711d52b1a9565f76263ec8',748,'post','attachment',7,590,NULL,NULL,'MannPlumbingHeating_522578757','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/MannPlumbingHeating_522578757.jpg',NULL,'748','attachment-image',NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/MannPlumbingHeating_522578757.jpg','748','attachment-image','{\"width\":600,\"height\":700,\"url\":\"https:\\/\\/www.mannplumbingandheating.com\\/wp-content\\/uploads\\/2019\\/12\\/MannPlumbingHeating_522578757.jpg\",\"path\":\"\\/code\\/web\\/wp-content\\/uploads\\/2019\\/12\\/MannPlumbingHeating_522578757.jpg\",\"size\":\"full\",\"id\":748,\"alt\":\"HVAC service technician\",\"pixels\":420000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2021-02-20 06:05:11','2021-02-20 06:05:11',1,NULL,NULL,NULL,NULL),(33,'https://www.mannplumbingandheating.com/services/hvac/mannplumbingheating_1060428268/','84:b36ca2bb215c2553f57d937286460202',741,'post','attachment',7,500,NULL,NULL,'MannPlumbingHeating_1060428268','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/MannPlumbingHeating_1060428268.jpg',NULL,'741','attachment-image',NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/MannPlumbingHeating_1060428268.jpg','741','attachment-image','{\"width\":600,\"height\":600,\"url\":\"https:\\/\\/www.mannplumbingandheating.com\\/wp-content\\/uploads\\/2019\\/12\\/MannPlumbingHeating_1060428268.jpg\",\"path\":\"\\/code\\/web\\/wp-content\\/uploads\\/2019\\/12\\/MannPlumbingHeating_1060428268.jpg\",\"size\":\"full\",\"id\":741,\"alt\":\"excavation\",\"pixels\":360000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2021-02-20 06:05:11','2021-02-20 06:05:11',1,NULL,NULL,NULL,NULL),(34,'https://www.mannplumbingandheating.com/services/hvac/mannplumbingheating_1132791347/','84:7aa8283bf216027f31cb7b9148e34a38',740,'post','attachment',7,500,NULL,NULL,'MannPlumbingHeating_1132791347','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/MannPlumbingHeating_1132791347.jpg',NULL,'740','attachment-image',NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/MannPlumbingHeating_1132791347.jpg','740','attachment-image','{\"width\":600,\"height\":600,\"url\":\"https:\\/\\/www.mannplumbingandheating.com\\/wp-content\\/uploads\\/2019\\/12\\/MannPlumbingHeating_1132791347.jpg\",\"path\":\"\\/code\\/web\\/wp-content\\/uploads\\/2019\\/12\\/MannPlumbingHeating_1132791347.jpg\",\"size\":\"full\",\"id\":740,\"alt\":\"HVAC installation\",\"pixels\":360000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2021-02-20 06:05:11','2021-02-20 06:05:11',1,NULL,NULL,NULL,NULL),(35,'https://www.mannplumbingandheating.com/services/hvac/mannplumbingheating_1173822860/','84:e18280a3990a7909afc976174c3d0958',739,'post','attachment',7,500,NULL,NULL,'MannPlumbingHeating_1173822860','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/MannPlumbingHeating_1173822860.jpg',NULL,'739','attachment-image',NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/MannPlumbingHeating_1173822860.jpg','739','attachment-image','{\"width\":600,\"height\":600,\"url\":\"https:\\/\\/www.mannplumbingandheating.com\\/wp-content\\/uploads\\/2019\\/12\\/MannPlumbingHeating_1173822860.jpg\",\"path\":\"\\/code\\/web\\/wp-content\\/uploads\\/2019\\/12\\/MannPlumbingHeating_1173822860.jpg\",\"size\":\"full\",\"id\":739,\"alt\":\"HVAC repair\",\"pixels\":360000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2021-02-20 06:05:11','2021-02-20 06:05:11',1,NULL,NULL,NULL,NULL),(36,'https://www.mannplumbingandheating.com/services/hvac/mannplumbingheating_1150199946/','84:d1ff20418cfead4848401d87fdeee605',738,'post','attachment',7,500,NULL,NULL,'MannPlumbingHeating_1150199946','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/MannPlumbingHeating_1150199946.jpg',NULL,'738','attachment-image',NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/MannPlumbingHeating_1150199946.jpg','738','attachment-image','{\"width\":600,\"height\":600,\"url\":\"https:\\/\\/www.mannplumbingandheating.com\\/wp-content\\/uploads\\/2019\\/12\\/MannPlumbingHeating_1150199946.jpg\",\"path\":\"\\/code\\/web\\/wp-content\\/uploads\\/2019\\/12\\/MannPlumbingHeating_1150199946.jpg\",\"size\":\"full\",\"id\":738,\"alt\":\"plumbing repair\",\"pixels\":360000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2021-02-20 06:05:11','2021-02-20 06:05:11',1,NULL,NULL,NULL,NULL),(37,'https://www.mannplumbingandheating.com/about-us/financing/payments-accepted-1/','78:0cf258808d044ebc4ce905b0a51d589a',715,'post','attachment',7,588,NULL,NULL,'payments-accepted-1','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/payments-accepted-1.png',NULL,'715','attachment-image',NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/payments-accepted-1.png','715','attachment-image','{\"width\":212,\"height\":69,\"url\":\"https:\\/\\/www.mannplumbingandheating.com\\/wp-content\\/uploads\\/2019\\/12\\/payments-accepted-1.png\",\"path\":\"\\/code\\/web\\/wp-content\\/uploads\\/2019\\/12\\/payments-accepted-1.png\",\"size\":\"full\",\"id\":715,\"alt\":\"accepted payments\",\"pixels\":14628,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2021-02-20 06:05:11','2021-02-20 06:05:11',1,NULL,NULL,NULL,NULL),(38,'https://www.mannplumbingandheating.com/about-us/financing/athomebanner_600x300_b/','81:d0a3e9be9a90778a1778352c5b2674b5',714,'post','attachment',7,588,NULL,NULL,'AtHomeBanner_600x300_B','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/AtHomeBanner_600x300_B.png',NULL,'714','attachment-image',NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/AtHomeBanner_600x300_B.png','714','attachment-image','{\"width\":600,\"height\":300,\"url\":\"https:\\/\\/www.mannplumbingandheating.com\\/wp-content\\/uploads\\/2019\\/12\\/AtHomeBanner_600x300_B.png\",\"path\":\"\\/code\\/web\\/wp-content\\/uploads\\/2019\\/12\\/AtHomeBanner_600x300_B.png\",\"size\":\"full\",\"id\":714,\"alt\":\"Buy today, pay over time\",\"pixels\":180000,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2021-02-20 06:05:11','2021-02-20 06:05:11',1,NULL,NULL,NULL,NULL),(39,'https://www.mannplumbingandheating.com/about-us/offers/trane-lifestyle_screen-1920x1080_fall19-mann-compressor/','111:a7725ae298aaaa3e5d740e4e322e9d22',712,'post','attachment',7,582,NULL,NULL,'Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor.jpg',NULL,'712','attachment-image',NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor.jpg','712','attachment-image','{\"width\":1200,\"height\":675,\"url\":\"https:\\/\\/www.mannplumbingandheating.com\\/wp-content\\/uploads\\/2019\\/12\\/Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor.jpg\",\"path\":\"\\/code\\/web\\/wp-content\\/uploads\\/2019\\/12\\/Trane-Lifestyle_Screen-1920x1080_Fall19-mann-compressor.jpg\",\"size\":\"full\",\"id\":712,\"alt\":\"Trane rebate offer\",\"pixels\":810000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2021-02-20 06:05:11','2021-02-20 06:05:11',1,NULL,NULL,NULL,NULL),(40,'https://www.mannplumbingandheating.com/our-work/mann-work-98/','61:66b6d7d516f40db48f241a18a0a97ec3',704,'post','attachment',7,578,NULL,NULL,'mann-work-98','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/mann-work-98.jpg',NULL,'704','attachment-image',NULL,NULL,'https://www.mannplumbingandheating.com/wp-content/uploads/2019/12/mann-work-98.jpg','704','attachment-image','{\"width\":960,\"height\":720,\"url\":\"https:\\/\\/www.mannplumbingandheating.com\\/wp-content\\/uploads\\/2019\\/12\\/mann-work-98.jpg\",\"path\":\"\\/code\\/web\\/wp-content\\/uploads\\/2019\\/12\\/mann-work-98.jpg\",\"size\":\"full\",\"id\":704,\"alt\":\"ductwork\",\"pixels\":691200,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2021-02-20 06:05:11','2021-02-20 06:05:11',1,NULL,NULL,NULL,NULL),(44,'https://www.mannplumbingandheating.com/blog/author/leeannemannplumbingandheating-com/','85:36fff813f36bf6ff3d197772bffdd357',19,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/e1db81a3957ace90dc78a0d8700578ef?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/e1db81a3957ace90dc78a0d8700578ef?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-10-08 18:40:02','2021-11-04 14:25:56',1,NULL,NULL,NULL,NULL),(56,'https://www.mannplumbingandheating.com/?p=838/','46:b291fb64d03b84cedf2c214be5349795',838,'post','post',21,0,NULL,NULL,'Auto Draft','auto-draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2022-02-16 21:19:58','2022-02-16 21:19:58',1,NULL,NULL,NULL,NULL),(57,'https://www.mannplumbingandheating.com/blog/author/temp-admin/','62:43286efee20b0008e514b9e40fd4d41b',22,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/b642b4217b34b1e8d3bd915fc65c4452?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/b642b4217b34b1e8d3bd915fc65c4452?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2022-02-16 21:20:09','2022-02-16 21:22:37',1,NULL,NULL,NULL,NULL),(58,'https://dev-mann-plumbing-heating-llc.pantheonsite.io/?p=839/','61:94127927d3b655c4d843f682362d44b1',839,'post','post',22,0,NULL,NULL,'Auto Draft','auto-draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2022-02-16 21:22:37','2022-02-16 21:22:37',1,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wp_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wp_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL DEFAULT '0',
  `ancestor_id` int(11) unsigned NOT NULL DEFAULT '0',
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable_hierarchy`
--

LOCK TABLES `wp_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable_hierarchy` VALUES (6,8,1,1),(9,8,1,1),(10,11,1,1),(12,8,1,1),(13,8,1,1),(17,11,1,1),(18,11,1,1),(32,11,1,1),(33,6,1,1),(33,8,2,1),(34,6,1,1),(34,8,2,1),(35,6,1,1),(35,8,2,1),(36,6,1,1),(36,8,2,1),(37,11,2,1),(37,17,1,1),(38,11,2,1),(38,17,1,1),(39,11,2,1),(39,18,1,1),(40,20,1,1);
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_migrations`
--

DROP TABLE IF EXISTS `wp_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_wp_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_migrations`
--

LOCK TABLES `wp_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130');
/*!40000 ALTER TABLE `wp_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_primary_term`
--

DROP TABLE IF EXISTS `wp_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` int(11) unsigned NOT NULL,
  `term_id` int(11) unsigned NOT NULL,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_primary_term`
--

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

--
-- Table structure for table `wp_yoast_seo_links`
--

DROP TABLE IF EXISTS `wp_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_id` bigint(20) unsigned NOT NULL,
  `target_post_id` bigint(20) unsigned NOT NULL,
  `type` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_links`
--

LOCK TABLES `wp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_links` VALUES (9,'http://www.mannplumbingandheating.com',490,5,'internal'),(10,'mailto:privacy@reachlocal.com',490,0,'external'),(11,'http://www.reachlocal.com/trackingopt-out',490,0,'external'),(12,'https://tools.google.com/dlpage/gaoptout?hl=en-GB',490,0,'external'),(13,'http://www.aboutads.info/choices/',490,0,'external'),(14,'http://www.reachlocal.com/opt-out',490,0,'external'),(15,'http://www.allaboutdnt.com/',490,0,'external'),(16,'',490,0,'internal'),(17,'tel:7173529549',490,0,'external');
/*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_meta`
--

DROP TABLE IF EXISTS `wp_yoast_seo_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_meta` (
  `object_id` bigint(20) unsigned NOT NULL,
  `internal_link_count` int(10) unsigned DEFAULT NULL,
  `incoming_link_count` int(10) unsigned DEFAULT NULL,
  UNIQUE KEY `object_id` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_meta`
--

LOCK TABLES `wp_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_meta` VALUES (1,0,0),(5,0,1),(205,0,0),(288,0,0),(392,0,0),(393,0,0),(395,0,0),(396,0,0),(397,0,0),(398,0,0),(399,0,0),(400,0,0),(401,0,0),(402,0,0),(404,0,0),(407,0,0),(416,0,0),(417,0,0),(429,0,0),(459,0,0),(461,0,0),(462,0,0),(463,0,0),(464,0,0),(476,0,0),(478,0,0),(480,0,0),(487,0,0),(489,0,0),(490,2,0),(492,0,0),(493,0,0),(494,0,0),(495,0,0),(496,0,0),(497,0,0),(498,0,0),(499,0,0),(500,0,0),(501,0,0),(502,0,0),(503,0,0),(504,0,0),(507,0,0),(508,0,0),(509,0,0),(510,0,0),(511,0,0),(513,0,0),(514,0,0),(515,0,0),(516,0,0),(517,0,0),(518,0,0),(519,0,0),(520,0,0),(521,0,0),(522,0,0),(523,0,0),(524,0,0),(525,0,0),(526,0,0),(527,0,0),(531,0,0),(532,0,0),(533,0,0),(534,0,0),(535,0,0),(539,0,0),(542,0,0),(543,0,0),(544,0,0),(545,0,0),(546,0,0),(548,0,0),(549,0,0),(552,0,0),(553,0,0),(558,0,0),(559,0,0),(564,0,0),(565,0,0),(566,0,0),(567,0,0),(568,0,0),(569,0,0),(571,0,0),(572,0,0),(573,0,0),(574,0,0),(575,0,0),(576,0,0),(577,0,0),(578,0,0),(580,0,0),(581,0,0),(582,0,0),(583,0,0),(584,0,0),(585,0,0),(588,0,0),(589,0,0),(590,0,0),(591,0,0),(707,0,0),(708,0,0),(716,0,0),(717,0,0),(720,0,0),(721,0,0),(722,0,0),(723,0,0),(724,0,0),(725,0,0),(726,0,0),(727,0,0),(728,0,0),(729,0,0),(730,0,0),(731,0,0),(732,0,0),(733,0,0),(734,0,0),(736,0,0),(737,0,0),(742,0,0),(743,0,0),(744,0,0),(745,0,0),(746,0,0),(747,0,0),(749,0,0),(750,0,0),(754,0,0),(755,0,0),(756,0,0),(757,0,0),(758,0,0),(759,0,0),(760,0,0),(761,0,0),(762,0,0),(763,0,0),(764,0,0),(765,0,0),(766,0,0),(767,0,0),(768,0,0),(769,0,0),(770,0,0),(771,0,0),(772,0,0),(773,0,0),(774,0,0),(775,0,0),(776,0,0),(777,0,0),(778,0,0),(779,0,0),(780,0,0),(781,0,0),(782,0,0),(783,0,0),(784,0,0),(785,0,0),(786,0,0),(787,0,0),(788,0,0),(789,0,0),(790,0,0),(791,0,0),(792,0,0),(793,0,0),(794,0,0),(795,0,0),(796,0,0),(797,0,0),(799,0,0),(800,0,0),(801,0,0),(803,0,0),(808,0,0),(809,0,0),(811,0,0),(813,0,0),(815,0,0),(816,0,0),(817,0,0),(831,0,0),(832,0,0),(833,0,0),(834,0,0),(835,0,0),(837,0,0),(838,0,0),(839,0,0),(840,0,0),(841,0,0);
/*!40000 ALTER TABLE `wp_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping routines for database 'pantheon'
--
/*!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-02-16 21:44:11
