0byt3m1n1
Path:
/
data
/
20
/
3
/
160
/
117
/
3323443
/
meta
/
3708588
/
mysql.backup
/
[
Home
]
File: tcbwpdb.mysqlcluster2.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster2 Database: tcbwpdb -- ------------------------------------------------------ -- Server version 5.6.51-91.0-56-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_bp_activity` -- DROP TABLE IF EXISTS `wp_bp_activity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_bp_activity` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `component` varchar(75) NOT NULL, `type` varchar(75) NOT NULL, `action` text NOT NULL, `content` longtext NOT NULL, `primary_link` text NOT NULL, `item_id` bigint(20) NOT NULL, `secondary_item_id` bigint(20) DEFAULT NULL, `date_recorded` datetime NOT NULL, `hide_sitewide` tinyint(1) DEFAULT '0', `mptt_left` int(11) NOT NULL DEFAULT '0', `mptt_right` int(11) NOT NULL DEFAULT '0', `is_spam` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `date_recorded` (`date_recorded`), KEY `user_id` (`user_id`), KEY `item_id` (`item_id`), KEY `secondary_item_id` (`secondary_item_id`), KEY `component` (`component`), KEY `type` (`type`), KEY `mptt_left` (`mptt_left`), KEY `mptt_right` (`mptt_right`), KEY `hide_sitewide` (`hide_sitewide`), KEY `is_spam` (`is_spam`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_bp_activity` -- LOCK TABLES `wp_bp_activity` WRITE; /*!40000 ALTER TABLE `wp_bp_activity` DISABLE KEYS */; INSERT INTO `wp_bp_activity` VALUES (1,1,'members','last_activity','','','',0,NULL,'2015-08-04 16:12:55',0,0,0,0),(4,1,'activity','activity_update','<a href=\"http://www.mytwincity.org/members/mr-eaton14/\" title=\"Matt Eaton\">Matt Eaton</a> posted an update','I\\\'m so excited about this new feature of logging in as a member so I can keep up with other church members! ','http://www.mytwincity.org/members/mr-eaton14/',0,0,'2015-08-04 15:22:44',0,0,0,0); /*!40000 ALTER TABLE `wp_bp_activity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_activity_meta` -- DROP TABLE IF EXISTS `wp_bp_activity_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_bp_activity_meta` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `activity_id` bigint(20) NOT NULL, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`id`), KEY `activity_id` (`activity_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_bp_activity_meta` -- LOCK TABLES `wp_bp_activity_meta` WRITE; /*!40000 ALTER TABLE `wp_bp_activity_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_activity_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_friends` -- DROP TABLE IF EXISTS `wp_bp_friends`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_bp_friends` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `initiator_user_id` bigint(20) NOT NULL, `friend_user_id` bigint(20) NOT NULL, `is_confirmed` tinyint(1) DEFAULT '0', `is_limited` tinyint(1) DEFAULT '0', `date_created` datetime NOT NULL, PRIMARY KEY (`id`), KEY `initiator_user_id` (`initiator_user_id`), KEY `friend_user_id` (`friend_user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_bp_friends` -- LOCK TABLES `wp_bp_friends` WRITE; /*!40000 ALTER TABLE `wp_bp_friends` DISABLE KEYS */; INSERT INTO `wp_bp_friends` VALUES (1,1,2,0,0,'2015-08-04 16:15:53'); /*!40000 ALTER TABLE `wp_bp_friends` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_notifications` -- DROP TABLE IF EXISTS `wp_bp_notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_bp_notifications` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `item_id` bigint(20) NOT NULL, `secondary_item_id` bigint(20) DEFAULT NULL, `component_name` varchar(75) NOT NULL, `component_action` varchar(75) NOT NULL, `date_notified` datetime NOT NULL, `is_new` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `item_id` (`item_id`), KEY `secondary_item_id` (`secondary_item_id`), KEY `user_id` (`user_id`), KEY `is_new` (`is_new`), KEY `component_name` (`component_name`), KEY `component_action` (`component_action`), KEY `useritem` (`user_id`,`is_new`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_bp_notifications` -- LOCK TABLES `wp_bp_notifications` WRITE; /*!40000 ALTER TABLE `wp_bp_notifications` DISABLE KEYS */; INSERT INTO `wp_bp_notifications` VALUES (1,2,1,1,'friends','friendship_request','2015-08-04 16:15:53',1); /*!40000 ALTER TABLE `wp_bp_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_notifications_meta` -- DROP TABLE IF EXISTS `wp_bp_notifications_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_bp_notifications_meta` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `notification_id` bigint(20) NOT NULL, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`id`), KEY `notification_id` (`notification_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_bp_notifications_meta` -- LOCK TABLES `wp_bp_notifications_meta` WRITE; /*!40000 ALTER TABLE `wp_bp_notifications_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_notifications_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_user_blogs` -- DROP TABLE IF EXISTS `wp_bp_user_blogs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_bp_user_blogs` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `blog_id` bigint(20) NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `blog_id` (`blog_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_bp_user_blogs` -- LOCK TABLES `wp_bp_user_blogs` WRITE; /*!40000 ALTER TABLE `wp_bp_user_blogs` DISABLE KEYS */; INSERT INTO `wp_bp_user_blogs` VALUES (1,1,1); /*!40000 ALTER TABLE `wp_bp_user_blogs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_user_blogs_blogmeta` -- DROP TABLE IF EXISTS `wp_bp_user_blogs_blogmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_bp_user_blogs_blogmeta` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `blog_id` bigint(20) NOT NULL, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`id`), KEY `blog_id` (`blog_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_bp_user_blogs_blogmeta` -- LOCK TABLES `wp_bp_user_blogs_blogmeta` WRITE; /*!40000 ALTER TABLE `wp_bp_user_blogs_blogmeta` DISABLE KEYS */; INSERT INTO `wp_bp_user_blogs_blogmeta` VALUES (1,1,'url','http://www.mytwincity.org'),(2,1,'name','Twin City Baptist'),(3,1,'description','For People Like You!'),(4,1,'last_activity','2015-08-04 15:54:23'),(5,1,'close_comments_for_old_posts','0'),(6,1,'close_comments_days_old','14'),(7,1,'thread_comments_depth','5'); /*!40000 ALTER TABLE `wp_bp_user_blogs_blogmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_xprofile_data` -- DROP TABLE IF EXISTS `wp_bp_xprofile_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_bp_xprofile_data` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `field_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `value` longtext NOT NULL, `last_updated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `field_id` (`field_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_bp_xprofile_data` -- LOCK TABLES `wp_bp_xprofile_data` WRITE; /*!40000 ALTER TABLE `wp_bp_xprofile_data` DISABLE KEYS */; INSERT INTO `wp_bp_xprofile_data` VALUES (1,1,1,'Matt Eaton','2015-08-04 15:19:35'),(2,1,2,'Alyssa Eaton','2015-08-04 16:15:05'); /*!40000 ALTER TABLE `wp_bp_xprofile_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_xprofile_fields` -- DROP TABLE IF EXISTS `wp_bp_xprofile_fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_bp_xprofile_fields` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `group_id` bigint(20) unsigned NOT NULL, `parent_id` bigint(20) unsigned NOT NULL, `type` varchar(150) NOT NULL, `name` varchar(150) NOT NULL, `description` longtext NOT NULL, `is_required` tinyint(1) NOT NULL DEFAULT '0', `is_default_option` tinyint(1) NOT NULL DEFAULT '0', `field_order` bigint(20) NOT NULL DEFAULT '0', `option_order` bigint(20) NOT NULL DEFAULT '0', `order_by` varchar(15) NOT NULL DEFAULT '', `can_delete` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `group_id` (`group_id`), KEY `parent_id` (`parent_id`), KEY `field_order` (`field_order`), KEY `can_delete` (`can_delete`), KEY `is_required` (`is_required`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_bp_xprofile_fields` -- LOCK TABLES `wp_bp_xprofile_fields` WRITE; /*!40000 ALTER TABLE `wp_bp_xprofile_fields` DISABLE KEYS */; INSERT INTO `wp_bp_xprofile_fields` VALUES (1,1,0,'textbox','Name','',1,0,0,0,'',0); /*!40000 ALTER TABLE `wp_bp_xprofile_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_xprofile_groups` -- DROP TABLE IF EXISTS `wp_bp_xprofile_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_bp_xprofile_groups` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(150) NOT NULL, `description` mediumtext NOT NULL, `group_order` bigint(20) NOT NULL DEFAULT '0', `can_delete` tinyint(1) NOT NULL, PRIMARY KEY (`id`), KEY `can_delete` (`can_delete`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_bp_xprofile_groups` -- LOCK TABLES `wp_bp_xprofile_groups` WRITE; /*!40000 ALTER TABLE `wp_bp_xprofile_groups` DISABLE KEYS */; INSERT INTO `wp_bp_xprofile_groups` VALUES (1,'Base','',0,0); /*!40000 ALTER TABLE `wp_bp_xprofile_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_bp_xprofile_meta` -- DROP TABLE IF EXISTS `wp_bp_xprofile_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_bp_xprofile_meta` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `object_id` bigint(20) NOT NULL, `object_type` varchar(150) NOT NULL, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`id`), KEY `object_id` (`object_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_bp_xprofile_meta` -- LOCK TABLES `wp_bp_xprofile_meta` WRITE; /*!40000 ALTER TABLE `wp_bp_xprofile_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_bp_xprofile_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_authors` -- DROP TABLE IF EXISTS `wp_cjtoolbox_authors`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_authors` ( `name` varchar(80) NOT NULL, `email` varchar(100) DEFAULT NULL, `url` varchar(200) DEFAULT NULL, `attributes` int(4) NOT NULL DEFAULT '0', `guid` varchar(16) DEFAULT NULL, `id` int(10) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), UNIQUE KEY `guid` (`guid`), KEY `name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_authors` -- LOCK TABLES `wp_cjtoolbox_authors` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_authors` DISABLE KEYS */; INSERT INTO `wp_cjtoolbox_authors` VALUES ('Wordpress',NULL,NULL,1,NULL,1); /*!40000 ALTER TABLE `wp_cjtoolbox_authors` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_backups` -- DROP TABLE IF EXISTS `wp_cjtoolbox_backups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_backups` ( `name` varchar(50) DEFAULT NULL, `type` varchar(20) NOT NULL DEFAULT 'blocks', `owner` int(11) NOT NULL, `created` datetime NOT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_backups` -- LOCK TABLES `wp_cjtoolbox_backups` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_backups` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_cjtoolbox_backups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_block_files` -- DROP TABLE IF EXISTS `wp_cjtoolbox_block_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_block_files` ( `id` int(11) NOT NULL AUTO_INCREMENT, `blockId` int(11) NOT NULL, `name` varchar(100) NOT NULL, `type` enum('css','javascript','php','html') DEFAULT NULL, `description` varchar(400) DEFAULT NULL, `code` text, `order` smallint(6) DEFAULT '0', `tag` text, PRIMARY KEY (`id`,`blockId`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_block_files` -- LOCK TABLES `wp_cjtoolbox_block_files` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_block_files` DISABLE KEYS */; INSERT INTO `wp_cjtoolbox_block_files` VALUES (1,15,'Master',NULL,NULL,'<style type=\"text/css\">\n #churchonline_counter { overflow: auto; padding: 0; display: inline; text-align: right; }\n #churchonline_counter .description, #churchonline_counter .time li .label { font-size: 0.8em; color: #000000;}\n #churchonline_counter .time { list-style: none; padding: 0; margin: 10px 0 0 0; }\n #churchonline_counter .time li { float: none; padding: 0 0px; text-align: center; }\n #churchonline_counter .time li:first-child { padding-left: 0; }\n #churchonline_counter .time li span { font-size: 1.2em; }\n #churchonline_counter .live { display: none; font-weight: bold; }\n</style>\n<script type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js\"></script>\n<script type=\"text/javascript\">\n jQuery(function() {\n var days, goLive, hours, intervalId, minutes, seconds;\n\n // Your churchonline.org url\n var churchUrl = \"http://mytcbonline.churchonline.org\"\n\n goLive = function() {\n $(\"#churchonline_counter .time\").hide();\n $(\"#churchonline_counter .live\").show();\n };\n loadCountdown = function(data){\n var seconds_till;\n $(\"#churchonline_counter\").show();\n if (data.response.item.isLive) {\n return goLive();\n } else {\n // Parse ISO 8601 date string\n date = data.response.item.eventStartTime.match(/^(\\d{4})-0?(\\d+)-0?(\\d+)[T ]0?(\\d+):0?(\\d+):0?(\\d+)Z$/)\n dateString = date[2] + \"/\" + date[3] + \"/\" + date[1] + \" \" + date[4] + \":\" + date[5] + \":\" + date[6] + \" +0000\"\n seconds_till = ((new Date(dateString)) - (new Date())) / 1000;\n days = Math.floor(seconds_till / 86400);\n hours = Math.floor((seconds_till % 86400) / 3600);\n minutes = Math.floor((seconds_till % 3600) / 60);\n seconds = Math.floor(seconds_till % 60);\n return intervalId = setInterval(function() {\n if (--seconds < 0) {\n seconds = 59;\n if (--minutes < 0) {\n minutes = 59;\n if (--hours < 0) {\n hours = 23;\n if (--days < 0) {\n days = 0;\n }\n }\n }\n }\n $(\"#churchonline_counter .days\").html((days.toString().length < 2) ? \"0\" + days : days);\n $(\"#churchonline_counter .hours\").html((hours.toString().length < 2 ? \"0\" + hours : hours));\n $(\"#churchonline_counter .minutes\").html((minutes.toString().length < 2 ? \"0\" + minutes : minutes));\n $(\"#churchonline_counter .seconds\").html((seconds.toString().length < 2 ? \"0\" + seconds : seconds));\n if (seconds === 0 && minutes === 0 && hours === 0 && days === 0) {\n goLive();\n return clearInterval(intervalId);\n }\n }, 1000);\n }\n }\n days = void 0;\n hours = void 0;\n minutes = void 0;\n seconds = void 0;\n intervalId = void 0;\n eventUrl = churchUrl + \"/api/v1/events/current\"\n msie = /msie/.test(navigator.userAgent.toLowerCase())\n if (msie && window.XDomainRequest) {\n var xdr = new XDomainRequest();\n xdr.open(\"get\", eventUrl);\n xdr.onload = function() {\n loadCountdown(jQuery.parseJSON(xdr.responseText))\n };\n xdr.send();\n } else {\n $.ajax({\n url: eventUrl,\n dataType: \"json\",\n crossDomain: true,\n success: function(data) {\n loadCountdown(data);\n },\n error: function(xhr, ajaxOptions, thrownError) {\n return console.log(thrownError);\n }\n });\n }\n });\n</script>\n',0,NULL),(1,30,'Master',NULL,NULL,'<style type=\"text/css\">\n #churchonline_counter { overflow: auto; width: inherit; padding: 100px; display: none; }\n #churchonline_counter .description, #churchonline_counter .time li .label { font-size: 0.8em; color: #000000; text-align: center; }\n #churchonline_counter .time { list-style: none; padding: 0; margin: 10px 0 0 0; }\n #churchonline_counter .time li { float: left; padding: 0 0px; text-align: center; }\n #churchonline_counter .time li:first-child { padding-left: 0; }\n #churchonline_counter .time li span { font-size: 1.2em; }\n #churchonline_counter .live { display: none; font-weight: bold; }\n</style>\n<script type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js\"></script>\n<script type=\"text/javascript\">\n jQuery(function() {\n var days, goLive, hours, intervalId, minutes, seconds;\n\n // Your churchonline.org url\n var churchUrl = \"http://mytcbonline.churchonline.org\"\n\n goLive = function() {\n $(\"#churchonline_counter .time\").hide();\n $(\"#churchonline_counter .live\").show();\n };\n loadCountdown = function(data){\n var seconds_till;\n $(\"#churchonline_counter\").show();\n if (data.response.item.isLive) {\n return goLive();\n } else {\n // Parse ISO 8601 date string\n date = data.response.item.eventStartTime.match(/^(\\d{4})-0?(\\d+)-0?(\\d+)[T ]0?(\\d+):0?(\\d+):0?(\\d+)Z$/)\n dateString = date[2] + \"/\" + date[3] + \"/\" + date[1] + \" \" + date[4] + \":\" + date[5] + \":\" + date[6] + \" +0000\"\n seconds_till = ((new Date(dateString)) - (new Date())) / 1000;\n days = Math.floor(seconds_till / 86400);\n hours = Math.floor((seconds_till % 86400) / 3600);\n minutes = Math.floor((seconds_till % 3600) / 60);\n seconds = Math.floor(seconds_till % 60);\n return intervalId = setInterval(function() {\n if (--seconds < 0) {\n seconds = 59;\n if (--minutes < 0) {\n minutes = 59;\n if (--hours < 0) {\n hours = 23;\n if (--days < 0) {\n days = 0;\n }\n }\n }\n }\n $(\"#churchonline_counter .days\").html((days.toString().length < 2) ? \"0\" + days : days);\n $(\"#churchonline_counter .hours\").html((hours.toString().length < 2 ? \"0\" + hours : hours));\n $(\"#churchonline_counter .minutes\").html((minutes.toString().length < 2 ? \"0\" + minutes : minutes));\n $(\"#churchonline_counter .seconds\").html((seconds.toString().length < 2 ? \"0\" + seconds : seconds));\n if (seconds === 0 && minutes === 0 && hours === 0 && days === 0) {\n goLive();\n return clearInterval(intervalId);\n }\n }, 1000);\n }\n }\n days = void 0;\n hours = void 0;\n minutes = void 0;\n seconds = void 0;\n intervalId = void 0;\n eventUrl = churchUrl + \"/api/v1/events/current\"\n msie = /msie/.test(navigator.userAgent.toLowerCase())\n if (msie && window.XDomainRequest) {\n var xdr = new XDomainRequest();\n xdr.open(\"get\", eventUrl);\n xdr.onload = function() {\n loadCountdown(jQuery.parseJSON(xdr.responseText))\n };\n xdr.send();\n } else {\n $.ajax({\n url: eventUrl,\n dataType: \"json\",\n crossDomain: true,\n success: function(data) {\n loadCountdown(data);\n },\n error: function(xhr, ajaxOptions, thrownError) {\n return console.log(thrownError);\n }\n });\n }\n });\n</script>\n',0,NULL),(1,31,'Master',NULL,NULL,'<style type=\"text/css\">\n #churchonline_counter { overflow: auto; width: 2000px; padding: 100px; display: none; }\n #churchonline_counter .description, #churchonline_counter .time li .label { font-size: 0.8em; color: #000000; text-align: center; }\n #churchonline_counter .time { list-style: none; padding: 0; margin: 10px 0 0 0; }\n #churchonline_counter .time li { float: left; padding: 0 0px; text-align: center; }\n #churchonline_counter .time li:first-child { padding-left: 0; }\n #churchonline_counter .time li span { font-size: 1.2em; }\n #churchonline_counter .live { display: none; font-weight: bold; }\n</style>\n<script type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js\"></script>\n<script type=\"text/javascript\">\n jQuery(function() {\n var days, goLive, hours, intervalId, minutes, seconds;\n\n // Your churchonline.org url\n var churchUrl = \"http://mytcbonline.churchonline.org\"\n\n goLive = function() {\n $(\"#churchonline_counter .time\").hide();\n $(\"#churchonline_counter .live\").show();\n };\n loadCountdown = function(data){\n var seconds_till;\n $(\"#churchonline_counter\").show();\n if (data.response.item.isLive) {\n return goLive();\n } else {\n // Parse ISO 8601 date string\n date = data.response.item.eventStartTime.match(/^(\\d{4})-0?(\\d+)-0?(\\d+)[T ]0?(\\d+):0?(\\d+):0?(\\d+)Z$/)\n dateString = date[2] + \"/\" + date[3] + \"/\" + date[1] + \" \" + date[4] + \":\" + date[5] + \":\" + date[6] + \" +0000\"\n seconds_till = ((new Date(dateString)) - (new Date())) / 1000;\n days = Math.floor(seconds_till / 86400);\n hours = Math.floor((seconds_till % 86400) / 3600);\n minutes = Math.floor((seconds_till % 3600) / 60);\n seconds = Math.floor(seconds_till % 60);\n return intervalId = setInterval(function() {\n if (--seconds < 0) {\n seconds = 59;\n if (--minutes < 0) {\n minutes = 59;\n if (--hours < 0) {\n hours = 23;\n if (--days < 0) {\n days = 0;\n }\n }\n }\n }\n $(\"#churchonline_counter .days\").html((days.toString().length < 2) ? \"0\" + days : days);\n $(\"#churchonline_counter .hours\").html((hours.toString().length < 2 ? \"0\" + hours : hours));\n $(\"#churchonline_counter .minutes\").html((minutes.toString().length < 2 ? \"0\" + minutes : minutes));\n $(\"#churchonline_counter .seconds\").html((seconds.toString().length < 2 ? \"0\" + seconds : seconds));\n if (seconds === 0 && minutes === 0 && hours === 0 && days === 0) {\n goLive();\n return clearInterval(intervalId);\n }\n }, 1000);\n }\n }\n days = void 0;\n hours = void 0;\n minutes = void 0;\n seconds = void 0;\n intervalId = void 0;\n eventUrl = churchUrl + \"/api/v1/events/current\"\n msie = /msie/.test(navigator.userAgent.toLowerCase())\n if (msie && window.XDomainRequest) {\n var xdr = new XDomainRequest();\n xdr.open(\"get\", eventUrl);\n xdr.onload = function() {\n loadCountdown(jQuery.parseJSON(xdr.responseText))\n };\n xdr.send();\n } else {\n $.ajax({\n url: eventUrl,\n dataType: \"json\",\n crossDomain: true,\n success: function(data) {\n loadCountdown(data);\n },\n error: function(xhr, ajaxOptions, thrownError) {\n return console.log(thrownError);\n }\n });\n }\n });\n</script>\n',0,NULL),(1,32,'Master',NULL,NULL,'<style type=\"text/css\">\n #churchonline_counter { overflow: auto; width: 8000px; padding: 100px; display: none; }\n #churchonline_counter .description, #churchonline_counter .time li .label { font-size: 0.8em; color: #000000; text-align: center; }\n #churchonline_counter .time { list-style: none; padding: 0; margin: 10px 0 0 0; }\n #churchonline_counter .time li { float: left; padding: 0 0px; text-align: center; }\n #churchonline_counter .time li:first-child { padding-left: 0; }\n #churchonline_counter .time li span { font-size: 1.2em; }\n #churchonline_counter .live { display: none; font-weight: bold; }\n</style>\n<script type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js\"></script>\n<script type=\"text/javascript\">\n jQuery(function() {\n var days, goLive, hours, intervalId, minutes, seconds;\n\n // Your churchonline.org url\n var churchUrl = \"http://mytcbonline.churchonline.org\"\n\n goLive = function() {\n $(\"#churchonline_counter .time\").hide();\n $(\"#churchonline_counter .live\").show();\n };\n loadCountdown = function(data){\n var seconds_till;\n $(\"#churchonline_counter\").show();\n if (data.response.item.isLive) {\n return goLive();\n } else {\n // Parse ISO 8601 date string\n date = data.response.item.eventStartTime.match(/^(\\d{4})-0?(\\d+)-0?(\\d+)[T ]0?(\\d+):0?(\\d+):0?(\\d+)Z$/)\n dateString = date[2] + \"/\" + date[3] + \"/\" + date[1] + \" \" + date[4] + \":\" + date[5] + \":\" + date[6] + \" +0000\"\n seconds_till = ((new Date(dateString)) - (new Date())) / 1000;\n days = Math.floor(seconds_till / 86400);\n hours = Math.floor((seconds_till % 86400) / 3600);\n minutes = Math.floor((seconds_till % 3600) / 60);\n seconds = Math.floor(seconds_till % 60);\n return intervalId = setInterval(function() {\n if (--seconds < 0) {\n seconds = 59;\n if (--minutes < 0) {\n minutes = 59;\n if (--hours < 0) {\n hours = 23;\n if (--days < 0) {\n days = 0;\n }\n }\n }\n }\n $(\"#churchonline_counter .days\").html((days.toString().length < 2) ? \"0\" + days : days);\n $(\"#churchonline_counter .hours\").html((hours.toString().length < 2 ? \"0\" + hours : hours));\n $(\"#churchonline_counter .minutes\").html((minutes.toString().length < 2 ? \"0\" + minutes : minutes));\n $(\"#churchonline_counter .seconds\").html((seconds.toString().length < 2 ? \"0\" + seconds : seconds));\n if (seconds === 0 && minutes === 0 && hours === 0 && days === 0) {\n goLive();\n return clearInterval(intervalId);\n }\n }, 1000);\n }\n }\n days = void 0;\n hours = void 0;\n minutes = void 0;\n seconds = void 0;\n intervalId = void 0;\n eventUrl = churchUrl + \"/api/v1/events/current\"\n msie = /msie/.test(navigator.userAgent.toLowerCase())\n if (msie && window.XDomainRequest) {\n var xdr = new XDomainRequest();\n xdr.open(\"get\", eventUrl);\n xdr.onload = function() {\n loadCountdown(jQuery.parseJSON(xdr.responseText))\n };\n xdr.send();\n } else {\n $.ajax({\n url: eventUrl,\n dataType: \"json\",\n crossDomain: true,\n success: function(data) {\n loadCountdown(data);\n },\n error: function(xhr, ajaxOptions, thrownError) {\n return console.log(thrownError);\n }\n });\n }\n });\n</script>\n',0,NULL),(1,33,'Master',NULL,NULL,'<style type=\"text/css\">\n #churchonline_counter { overflow: auto; width: 8000px; padding: 100px; display: none; }\n #churchonline_counter .description, #churchonline_counter .time li .label { font-size: 0.8em; color: #000000;}\n #churchonline_counter .time { list-style: none; padding: 0; margin: 10px 0 0 0; }\n #churchonline_counter .time li { float: left; padding: 0 0px; text-align: center; }\n #churchonline_counter .time li:first-child { padding-left: 0; }\n #churchonline_counter .time li span { font-size: 1.2em; }\n #churchonline_counter .live { display: none; font-weight: bold; }\n</style>\n<script type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js\"></script>\n<script type=\"text/javascript\">\n jQuery(function() {\n var days, goLive, hours, intervalId, minutes, seconds;\n\n // Your churchonline.org url\n var churchUrl = \"http://mytcbonline.churchonline.org\"\n\n goLive = function() {\n $(\"#churchonline_counter .time\").hide();\n $(\"#churchonline_counter .live\").show();\n };\n loadCountdown = function(data){\n var seconds_till;\n $(\"#churchonline_counter\").show();\n if (data.response.item.isLive) {\n return goLive();\n } else {\n // Parse ISO 8601 date string\n date = data.response.item.eventStartTime.match(/^(\\d{4})-0?(\\d+)-0?(\\d+)[T ]0?(\\d+):0?(\\d+):0?(\\d+)Z$/)\n dateString = date[2] + \"/\" + date[3] + \"/\" + date[1] + \" \" + date[4] + \":\" + date[5] + \":\" + date[6] + \" +0000\"\n seconds_till = ((new Date(dateString)) - (new Date())) / 1000;\n days = Math.floor(seconds_till / 86400);\n hours = Math.floor((seconds_till % 86400) / 3600);\n minutes = Math.floor((seconds_till % 3600) / 60);\n seconds = Math.floor(seconds_till % 60);\n return intervalId = setInterval(function() {\n if (--seconds < 0) {\n seconds = 59;\n if (--minutes < 0) {\n minutes = 59;\n if (--hours < 0) {\n hours = 23;\n if (--days < 0) {\n days = 0;\n }\n }\n }\n }\n $(\"#churchonline_counter .days\").html((days.toString().length < 2) ? \"0\" + days : days);\n $(\"#churchonline_counter .hours\").html((hours.toString().length < 2 ? \"0\" + hours : hours));\n $(\"#churchonline_counter .minutes\").html((minutes.toString().length < 2 ? \"0\" + minutes : minutes));\n $(\"#churchonline_counter .seconds\").html((seconds.toString().length < 2 ? \"0\" + seconds : seconds));\n if (seconds === 0 && minutes === 0 && hours === 0 && days === 0) {\n goLive();\n return clearInterval(intervalId);\n }\n }, 1000);\n }\n }\n days = void 0;\n hours = void 0;\n minutes = void 0;\n seconds = void 0;\n intervalId = void 0;\n eventUrl = churchUrl + \"/api/v1/events/current\"\n msie = /msie/.test(navigator.userAgent.toLowerCase())\n if (msie && window.XDomainRequest) {\n var xdr = new XDomainRequest();\n xdr.open(\"get\", eventUrl);\n xdr.onload = function() {\n loadCountdown(jQuery.parseJSON(xdr.responseText))\n };\n xdr.send();\n } else {\n $.ajax({\n url: eventUrl,\n dataType: \"json\",\n crossDomain: true,\n success: function(data) {\n loadCountdown(data);\n },\n error: function(xhr, ajaxOptions, thrownError) {\n return console.log(thrownError);\n }\n });\n }\n });\n</script>\n',0,NULL),(1,34,'Master',NULL,NULL,'<style type=\"text/css\">\n #churchonline_counter { overflow: auto; width: 8000px; padding: 100px; display: none; text-align: center; }\n #churchonline_counter .description, #churchonline_counter .time li .label { font-size: 0.8em; color: #000000;}\n #churchonline_counter .time { list-style: none; padding: 0; margin: 10px 0 0 0; }\n #churchonline_counter .time li { float: left; padding: 0 0px; text-align: center; }\n #churchonline_counter .time li:first-child { padding-left: 0; }\n #churchonline_counter .time li span { font-size: 1.2em; }\n #churchonline_counter .live { display: none; font-weight: bold; }\n</style>\n<script type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js\"></script>\n<script type=\"text/javascript\">\n jQuery(function() {\n var days, goLive, hours, intervalId, minutes, seconds;\n\n // Your churchonline.org url\n var churchUrl = \"http://mytcbonline.churchonline.org\"\n\n goLive = function() {\n $(\"#churchonline_counter .time\").hide();\n $(\"#churchonline_counter .live\").show();\n };\n loadCountdown = function(data){\n var seconds_till;\n $(\"#churchonline_counter\").show();\n if (data.response.item.isLive) {\n return goLive();\n } else {\n // Parse ISO 8601 date string\n date = data.response.item.eventStartTime.match(/^(\\d{4})-0?(\\d+)-0?(\\d+)[T ]0?(\\d+):0?(\\d+):0?(\\d+)Z$/)\n dateString = date[2] + \"/\" + date[3] + \"/\" + date[1] + \" \" + date[4] + \":\" + date[5] + \":\" + date[6] + \" +0000\"\n seconds_till = ((new Date(dateString)) - (new Date())) / 1000;\n days = Math.floor(seconds_till / 86400);\n hours = Math.floor((seconds_till % 86400) / 3600);\n minutes = Math.floor((seconds_till % 3600) / 60);\n seconds = Math.floor(seconds_till % 60);\n return intervalId = setInterval(function() {\n if (--seconds < 0) {\n seconds = 59;\n if (--minutes < 0) {\n minutes = 59;\n if (--hours < 0) {\n hours = 23;\n if (--days < 0) {\n days = 0;\n }\n }\n }\n }\n $(\"#churchonline_counter .days\").html((days.toString().length < 2) ? \"0\" + days : days);\n $(\"#churchonline_counter .hours\").html((hours.toString().length < 2 ? \"0\" + hours : hours));\n $(\"#churchonline_counter .minutes\").html((minutes.toString().length < 2 ? \"0\" + minutes : minutes));\n $(\"#churchonline_counter .seconds\").html((seconds.toString().length < 2 ? \"0\" + seconds : seconds));\n if (seconds === 0 && minutes === 0 && hours === 0 && days === 0) {\n goLive();\n return clearInterval(intervalId);\n }\n }, 1000);\n }\n }\n days = void 0;\n hours = void 0;\n minutes = void 0;\n seconds = void 0;\n intervalId = void 0;\n eventUrl = churchUrl + \"/api/v1/events/current\"\n msie = /msie/.test(navigator.userAgent.toLowerCase())\n if (msie && window.XDomainRequest) {\n var xdr = new XDomainRequest();\n xdr.open(\"get\", eventUrl);\n xdr.onload = function() {\n loadCountdown(jQuery.parseJSON(xdr.responseText))\n };\n xdr.send();\n } else {\n $.ajax({\n url: eventUrl,\n dataType: \"json\",\n crossDomain: true,\n success: function(data) {\n loadCountdown(data);\n },\n error: function(xhr, ajaxOptions, thrownError) {\n return console.log(thrownError);\n }\n });\n }\n });\n</script>\n',0,NULL),(1,35,'Master',NULL,NULL,'<style type=\"text/css\">\n #churchonline_counter { overflow: auto; width: 8000px; padding: 100px; display: inline; text-align: center; }\n #churchonline_counter .description, #churchonline_counter .time li .label { font-size: 0.8em; color: #000000;}\n #churchonline_counter .time { list-style: none; padding: 0; margin: 10px 0 0 0; }\n #churchonline_counter .time li { float: left; padding: 0 0px; text-align: center; }\n #churchonline_counter .time li:first-child { padding-left: 0; }\n #churchonline_counter .time li span { font-size: 1.2em; }\n #churchonline_counter .live { display: none; font-weight: bold; }\n</style>\n<script type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js\"></script>\n<script type=\"text/javascript\">\n jQuery(function() {\n var days, goLive, hours, intervalId, minutes, seconds;\n\n // Your churchonline.org url\n var churchUrl = \"http://mytcbonline.churchonline.org\"\n\n goLive = function() {\n $(\"#churchonline_counter .time\").hide();\n $(\"#churchonline_counter .live\").show();\n };\n loadCountdown = function(data){\n var seconds_till;\n $(\"#churchonline_counter\").show();\n if (data.response.item.isLive) {\n return goLive();\n } else {\n // Parse ISO 8601 date string\n date = data.response.item.eventStartTime.match(/^(\\d{4})-0?(\\d+)-0?(\\d+)[T ]0?(\\d+):0?(\\d+):0?(\\d+)Z$/)\n dateString = date[2] + \"/\" + date[3] + \"/\" + date[1] + \" \" + date[4] + \":\" + date[5] + \":\" + date[6] + \" +0000\"\n seconds_till = ((new Date(dateString)) - (new Date())) / 1000;\n days = Math.floor(seconds_till / 86400);\n hours = Math.floor((seconds_till % 86400) / 3600);\n minutes = Math.floor((seconds_till % 3600) / 60);\n seconds = Math.floor(seconds_till % 60);\n return intervalId = setInterval(function() {\n if (--seconds < 0) {\n seconds = 59;\n if (--minutes < 0) {\n minutes = 59;\n if (--hours < 0) {\n hours = 23;\n if (--days < 0) {\n days = 0;\n }\n }\n }\n }\n $(\"#churchonline_counter .days\").html((days.toString().length < 2) ? \"0\" + days : days);\n $(\"#churchonline_counter .hours\").html((hours.toString().length < 2 ? \"0\" + hours : hours));\n $(\"#churchonline_counter .minutes\").html((minutes.toString().length < 2 ? \"0\" + minutes : minutes));\n $(\"#churchonline_counter .seconds\").html((seconds.toString().length < 2 ? \"0\" + seconds : seconds));\n if (seconds === 0 && minutes === 0 && hours === 0 && days === 0) {\n goLive();\n return clearInterval(intervalId);\n }\n }, 1000);\n }\n }\n days = void 0;\n hours = void 0;\n minutes = void 0;\n seconds = void 0;\n intervalId = void 0;\n eventUrl = churchUrl + \"/api/v1/events/current\"\n msie = /msie/.test(navigator.userAgent.toLowerCase())\n if (msie && window.XDomainRequest) {\n var xdr = new XDomainRequest();\n xdr.open(\"get\", eventUrl);\n xdr.onload = function() {\n loadCountdown(jQuery.parseJSON(xdr.responseText))\n };\n xdr.send();\n } else {\n $.ajax({\n url: eventUrl,\n dataType: \"json\",\n crossDomain: true,\n success: function(data) {\n loadCountdown(data);\n },\n error: function(xhr, ajaxOptions, thrownError) {\n return console.log(thrownError);\n }\n });\n }\n });\n</script>\n',0,NULL),(1,36,'Master',NULL,NULL,'<style type=\"text/css\">\n #churchonline_counter { overflow: auto; padding: 0; display: inline; text-align: center; }\n #churchonline_counter .description, #churchonline_counter .time li .label { font-size: 0.8em; color: #000000;}\n #churchonline_counter .time { list-style: none; padding: 0; margin: 10px 0 0 0; }\n #churchonline_counter .time li { float: left; padding: 0 0px; text-align: center; }\n #churchonline_counter .time li:first-child { padding-left: 0; }\n #churchonline_counter .time li span { font-size: 1.2em; }\n #churchonline_counter .live { display: none; font-weight: bold; }\n</style>\n<script type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js\"></script>\n<script type=\"text/javascript\">\n jQuery(function() {\n var days, goLive, hours, intervalId, minutes, seconds;\n\n // Your churchonline.org url\n var churchUrl = \"http://mytcbonline.churchonline.org\"\n\n goLive = function() {\n $(\"#churchonline_counter .time\").hide();\n $(\"#churchonline_counter .live\").show();\n };\n loadCountdown = function(data){\n var seconds_till;\n $(\"#churchonline_counter\").show();\n if (data.response.item.isLive) {\n return goLive();\n } else {\n // Parse ISO 8601 date string\n date = data.response.item.eventStartTime.match(/^(\\d{4})-0?(\\d+)-0?(\\d+)[T ]0?(\\d+):0?(\\d+):0?(\\d+)Z$/)\n dateString = date[2] + \"/\" + date[3] + \"/\" + date[1] + \" \" + date[4] + \":\" + date[5] + \":\" + date[6] + \" +0000\"\n seconds_till = ((new Date(dateString)) - (new Date())) / 1000;\n days = Math.floor(seconds_till / 86400);\n hours = Math.floor((seconds_till % 86400) / 3600);\n minutes = Math.floor((seconds_till % 3600) / 60);\n seconds = Math.floor(seconds_till % 60);\n return intervalId = setInterval(function() {\n if (--seconds < 0) {\n seconds = 59;\n if (--minutes < 0) {\n minutes = 59;\n if (--hours < 0) {\n hours = 23;\n if (--days < 0) {\n days = 0;\n }\n }\n }\n }\n $(\"#churchonline_counter .days\").html((days.toString().length < 2) ? \"0\" + days : days);\n $(\"#churchonline_counter .hours\").html((hours.toString().length < 2 ? \"0\" + hours : hours));\n $(\"#churchonline_counter .minutes\").html((minutes.toString().length < 2 ? \"0\" + minutes : minutes));\n $(\"#churchonline_counter .seconds\").html((seconds.toString().length < 2 ? \"0\" + seconds : seconds));\n if (seconds === 0 && minutes === 0 && hours === 0 && days === 0) {\n goLive();\n return clearInterval(intervalId);\n }\n }, 1000);\n }\n }\n days = void 0;\n hours = void 0;\n minutes = void 0;\n seconds = void 0;\n intervalId = void 0;\n eventUrl = churchUrl + \"/api/v1/events/current\"\n msie = /msie/.test(navigator.userAgent.toLowerCase())\n if (msie && window.XDomainRequest) {\n var xdr = new XDomainRequest();\n xdr.open(\"get\", eventUrl);\n xdr.onload = function() {\n loadCountdown(jQuery.parseJSON(xdr.responseText))\n };\n xdr.send();\n } else {\n $.ajax({\n url: eventUrl,\n dataType: \"json\",\n crossDomain: true,\n success: function(data) {\n loadCountdown(data);\n },\n error: function(xhr, ajaxOptions, thrownError) {\n return console.log(thrownError);\n }\n });\n }\n });\n</script>\n',0,NULL),(1,37,'Master',NULL,NULL,'<style type=\"text/css\">\n #churchonline_counter { overflow: auto; padding: 0; display: inline; text-align: right; }\n #churchonline_counter .description, #churchonline_counter .time li .label { font-size: 0.8em; color: #000000;}\n #churchonline_counter .time { list-style: none; padding: 0; margin: 10px 0 0 0; }\n #churchonline_counter .time li { float: left; padding: 0 0px; text-align: center; }\n #churchonline_counter .time li:first-child { padding-left: 0; }\n #churchonline_counter .time li span { font-size: 1.2em; }\n #churchonline_counter .live { display: none; font-weight: bold; }\n</style>\n<script type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js\"></script>\n<script type=\"text/javascript\">\n jQuery(function() {\n var days, goLive, hours, intervalId, minutes, seconds;\n\n // Your churchonline.org url\n var churchUrl = \"http://mytcbonline.churchonline.org\"\n\n goLive = function() {\n $(\"#churchonline_counter .time\").hide();\n $(\"#churchonline_counter .live\").show();\n };\n loadCountdown = function(data){\n var seconds_till;\n $(\"#churchonline_counter\").show();\n if (data.response.item.isLive) {\n return goLive();\n } else {\n // Parse ISO 8601 date string\n date = data.response.item.eventStartTime.match(/^(\\d{4})-0?(\\d+)-0?(\\d+)[T ]0?(\\d+):0?(\\d+):0?(\\d+)Z$/)\n dateString = date[2] + \"/\" + date[3] + \"/\" + date[1] + \" \" + date[4] + \":\" + date[5] + \":\" + date[6] + \" +0000\"\n seconds_till = ((new Date(dateString)) - (new Date())) / 1000;\n days = Math.floor(seconds_till / 86400);\n hours = Math.floor((seconds_till % 86400) / 3600);\n minutes = Math.floor((seconds_till % 3600) / 60);\n seconds = Math.floor(seconds_till % 60);\n return intervalId = setInterval(function() {\n if (--seconds < 0) {\n seconds = 59;\n if (--minutes < 0) {\n minutes = 59;\n if (--hours < 0) {\n hours = 23;\n if (--days < 0) {\n days = 0;\n }\n }\n }\n }\n $(\"#churchonline_counter .days\").html((days.toString().length < 2) ? \"0\" + days : days);\n $(\"#churchonline_counter .hours\").html((hours.toString().length < 2 ? \"0\" + hours : hours));\n $(\"#churchonline_counter .minutes\").html((minutes.toString().length < 2 ? \"0\" + minutes : minutes));\n $(\"#churchonline_counter .seconds\").html((seconds.toString().length < 2 ? \"0\" + seconds : seconds));\n if (seconds === 0 && minutes === 0 && hours === 0 && days === 0) {\n goLive();\n return clearInterval(intervalId);\n }\n }, 1000);\n }\n }\n days = void 0;\n hours = void 0;\n minutes = void 0;\n seconds = void 0;\n intervalId = void 0;\n eventUrl = churchUrl + \"/api/v1/events/current\"\n msie = /msie/.test(navigator.userAgent.toLowerCase())\n if (msie && window.XDomainRequest) {\n var xdr = new XDomainRequest();\n xdr.open(\"get\", eventUrl);\n xdr.onload = function() {\n loadCountdown(jQuery.parseJSON(xdr.responseText))\n };\n xdr.send();\n } else {\n $.ajax({\n url: eventUrl,\n dataType: \"json\",\n crossDomain: true,\n success: function(data) {\n loadCountdown(data);\n },\n error: function(xhr, ajaxOptions, thrownError) {\n return console.log(thrownError);\n }\n });\n }\n });\n</script>\n',0,NULL),(1,38,'Master',NULL,NULL,'<style type=\"text/css\">\n #churchonline_counter { overflow: auto; padding: 0; display: inline; text-align: right; }\n #churchonline_counter .description, #churchonline_counter .time li .label { font-size: 0.8em; color: #000000;}\n #churchonline_counter .time { list-style: none; padding: 0; margin: 10px 0 0 0; }\n #churchonline_counter .time li { float: right; padding: 0 0px; text-align: center; }\n #churchonline_counter .time li:first-child { padding-left: 0; }\n #churchonline_counter .time li span { font-size: 1.2em; }\n #churchonline_counter .live { display: none; font-weight: bold; }\n</style>\n<script type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js\"></script>\n<script type=\"text/javascript\">\n jQuery(function() {\n var days, goLive, hours, intervalId, minutes, seconds;\n\n // Your churchonline.org url\n var churchUrl = \"http://mytcbonline.churchonline.org\"\n\n goLive = function() {\n $(\"#churchonline_counter .time\").hide();\n $(\"#churchonline_counter .live\").show();\n };\n loadCountdown = function(data){\n var seconds_till;\n $(\"#churchonline_counter\").show();\n if (data.response.item.isLive) {\n return goLive();\n } else {\n // Parse ISO 8601 date string\n date = data.response.item.eventStartTime.match(/^(\\d{4})-0?(\\d+)-0?(\\d+)[T ]0?(\\d+):0?(\\d+):0?(\\d+)Z$/)\n dateString = date[2] + \"/\" + date[3] + \"/\" + date[1] + \" \" + date[4] + \":\" + date[5] + \":\" + date[6] + \" +0000\"\n seconds_till = ((new Date(dateString)) - (new Date())) / 1000;\n days = Math.floor(seconds_till / 86400);\n hours = Math.floor((seconds_till % 86400) / 3600);\n minutes = Math.floor((seconds_till % 3600) / 60);\n seconds = Math.floor(seconds_till % 60);\n return intervalId = setInterval(function() {\n if (--seconds < 0) {\n seconds = 59;\n if (--minutes < 0) {\n minutes = 59;\n if (--hours < 0) {\n hours = 23;\n if (--days < 0) {\n days = 0;\n }\n }\n }\n }\n $(\"#churchonline_counter .days\").html((days.toString().length < 2) ? \"0\" + days : days);\n $(\"#churchonline_counter .hours\").html((hours.toString().length < 2 ? \"0\" + hours : hours));\n $(\"#churchonline_counter .minutes\").html((minutes.toString().length < 2 ? \"0\" + minutes : minutes));\n $(\"#churchonline_counter .seconds\").html((seconds.toString().length < 2 ? \"0\" + seconds : seconds));\n if (seconds === 0 && minutes === 0 && hours === 0 && days === 0) {\n goLive();\n return clearInterval(intervalId);\n }\n }, 1000);\n }\n }\n days = void 0;\n hours = void 0;\n minutes = void 0;\n seconds = void 0;\n intervalId = void 0;\n eventUrl = churchUrl + \"/api/v1/events/current\"\n msie = /msie/.test(navigator.userAgent.toLowerCase())\n if (msie && window.XDomainRequest) {\n var xdr = new XDomainRequest();\n xdr.open(\"get\", eventUrl);\n xdr.onload = function() {\n loadCountdown(jQuery.parseJSON(xdr.responseText))\n };\n xdr.send();\n } else {\n $.ajax({\n url: eventUrl,\n dataType: \"json\",\n crossDomain: true,\n success: function(data) {\n loadCountdown(data);\n },\n error: function(xhr, ajaxOptions, thrownError) {\n return console.log(thrownError);\n }\n });\n }\n });\n</script>\n',0,NULL),(1,39,'Master',NULL,NULL,'<style type=\"text/css\">\n #churchonline_counter { overflow: auto; padding: 0; display: inline; text-align: right; }\n #churchonline_counter .description, #churchonline_counter .time li .label { font-size: 0.8em; color: #000000;}\n #churchonline_counter .time { list-style: none; padding: 0; margin: 10px 0 0 0; }\n #churchonline_counter .time li { padding: 0 0px; text-align: center; }\n #churchonline_counter .time li:first-child { padding-left: 0; }\n #churchonline_counter .time li span { font-size: 1.2em; }\n #churchonline_counter .live { display: none; font-weight: bold; }\n</style>\n<script type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js\"></script>\n<script type=\"text/javascript\">\n jQuery(function() {\n var days, goLive, hours, intervalId, minutes, seconds;\n\n // Your churchonline.org url\n var churchUrl = \"http://mytcbonline.churchonline.org\"\n\n goLive = function() {\n $(\"#churchonline_counter .time\").hide();\n $(\"#churchonline_counter .live\").show();\n };\n loadCountdown = function(data){\n var seconds_till;\n $(\"#churchonline_counter\").show();\n if (data.response.item.isLive) {\n return goLive();\n } else {\n // Parse ISO 8601 date string\n date = data.response.item.eventStartTime.match(/^(\\d{4})-0?(\\d+)-0?(\\d+)[T ]0?(\\d+):0?(\\d+):0?(\\d+)Z$/)\n dateString = date[2] + \"/\" + date[3] + \"/\" + date[1] + \" \" + date[4] + \":\" + date[5] + \":\" + date[6] + \" +0000\"\n seconds_till = ((new Date(dateString)) - (new Date())) / 1000;\n days = Math.floor(seconds_till / 86400);\n hours = Math.floor((seconds_till % 86400) / 3600);\n minutes = Math.floor((seconds_till % 3600) / 60);\n seconds = Math.floor(seconds_till % 60);\n return intervalId = setInterval(function() {\n if (--seconds < 0) {\n seconds = 59;\n if (--minutes < 0) {\n minutes = 59;\n if (--hours < 0) {\n hours = 23;\n if (--days < 0) {\n days = 0;\n }\n }\n }\n }\n $(\"#churchonline_counter .days\").html((days.toString().length < 2) ? \"0\" + days : days);\n $(\"#churchonline_counter .hours\").html((hours.toString().length < 2 ? \"0\" + hours : hours));\n $(\"#churchonline_counter .minutes\").html((minutes.toString().length < 2 ? \"0\" + minutes : minutes));\n $(\"#churchonline_counter .seconds\").html((seconds.toString().length < 2 ? \"0\" + seconds : seconds));\n if (seconds === 0 && minutes === 0 && hours === 0 && days === 0) {\n goLive();\n return clearInterval(intervalId);\n }\n }, 1000);\n }\n }\n days = void 0;\n hours = void 0;\n minutes = void 0;\n seconds = void 0;\n intervalId = void 0;\n eventUrl = churchUrl + \"/api/v1/events/current\"\n msie = /msie/.test(navigator.userAgent.toLowerCase())\n if (msie && window.XDomainRequest) {\n var xdr = new XDomainRequest();\n xdr.open(\"get\", eventUrl);\n xdr.onload = function() {\n loadCountdown(jQuery.parseJSON(xdr.responseText))\n };\n xdr.send();\n } else {\n $.ajax({\n url: eventUrl,\n dataType: \"json\",\n crossDomain: true,\n success: function(data) {\n loadCountdown(data);\n },\n error: function(xhr, ajaxOptions, thrownError) {\n return console.log(thrownError);\n }\n });\n }\n });\n</script>\n',0,NULL); /*!40000 ALTER TABLE `wp_cjtoolbox_block_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_block_pins` -- DROP TABLE IF EXISTS `wp_cjtoolbox_block_pins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_block_pins` ( `blockId` int(11) NOT NULL, `pin` varchar(20) NOT NULL, `value` int(11) NOT NULL, `attributes` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`blockId`,`pin`,`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_block_pins` -- LOCK TABLES `wp_cjtoolbox_block_pins` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_block_pins` DISABLE KEYS */; INSERT INTO `wp_cjtoolbox_block_pins` VALUES (15,'pages',1682,0),(30,'pages',1682,0),(31,'pages',1682,0),(32,'pages',1682,0),(33,'pages',1682,0),(34,'pages',1682,0),(35,'pages',1682,0),(36,'pages',1682,0),(37,'pages',1682,0),(38,'pages',1682,0),(39,'pages',1682,0); /*!40000 ALTER TABLE `wp_cjtoolbox_block_pins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_block_templates` -- DROP TABLE IF EXISTS `wp_cjtoolbox_block_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_block_templates` ( `blockId` int(11) NOT NULL, `templateId` int(11) NOT NULL, PRIMARY KEY (`blockId`,`templateId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_block_templates` -- LOCK TABLES `wp_cjtoolbox_block_templates` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_block_templates` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_cjtoolbox_block_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_blocks` -- DROP TABLE IF EXISTS `wp_cjtoolbox_blocks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_blocks` ( `name` varchar(50) DEFAULT NULL, `description` varchar(300) DEFAULT NULL, `owner` int(11) NOT NULL, `created` datetime NOT NULL, `lastModified` datetime NOT NULL, `pinPoint` int(4) NOT NULL DEFAULT '0', `state` enum('active','inactive') DEFAULT 'inactive', `location` enum('header','footer') DEFAULT 'header', `links` text, `expressions` text, `type` enum('block','revision','metabox') DEFAULT 'block', `backupId` int(11) DEFAULT NULL, `parent` int(11) DEFAULT NULL, `flag` int(4) NOT NULL DEFAULT '0', `masterFile` int(4) NOT NULL DEFAULT '1', `id` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`,`backupId`), KEY `pinPoint` (`pinPoint`,`state`,`location`,`type`,`parent`) ) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_blocks` -- LOCK TABLES `wp_cjtoolbox_blocks` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_blocks` DISABLE KEYS */; INSERT INTO `wp_cjtoolbox_blocks` VALUES ('COP Countdown',NULL,1,'2015-10-01 14:24:56','2015-10-01 16:11:13',32,'active','footer','','','block',NULL,NULL,0,1,15),(NULL,NULL,1,'2015-10-01 16:03:36','2015-10-01 16:03:06',32,'','','','','revision',NULL,15,0,1,30),(NULL,NULL,1,'2015-10-01 16:04:18','2015-10-01 16:03:36',32,'','','','','revision',NULL,15,0,1,31),(NULL,NULL,1,'2015-10-01 16:04:47','2015-10-01 16:04:18',32,'','','','','revision',NULL,15,0,1,32),(NULL,NULL,1,'2015-10-01 16:04:55','2015-10-01 16:04:47',32,'','','','','revision',NULL,15,0,1,33),(NULL,NULL,1,'2015-10-01 16:07:26','2015-10-01 16:04:55',32,'','','','','revision',NULL,15,0,1,34),(NULL,NULL,1,'2015-10-01 16:08:13','2015-10-01 16:07:26',32,'','','','','revision',NULL,15,0,1,35),(NULL,NULL,1,'2015-10-01 16:08:42','2015-10-01 16:08:13',32,'','','','','revision',NULL,15,0,1,36),(NULL,NULL,1,'2015-10-01 16:10:17','2015-10-01 16:08:42',32,'','','','','revision',NULL,15,0,1,37),(NULL,NULL,1,'2015-10-01 16:10:43','2015-10-01 16:10:17',32,'','','','','revision',NULL,15,0,1,38),(NULL,NULL,1,'2015-10-01 16:11:13','2015-10-01 16:10:43',32,'','','','','revision',NULL,15,0,1,39); /*!40000 ALTER TABLE `wp_cjtoolbox_blocks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_form_group_parameters` -- DROP TABLE IF EXISTS `wp_cjtoolbox_form_group_parameters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_form_group_parameters` ( `groupId` int(11) NOT NULL AUTO_INCREMENT, `parameterId` int(11) NOT NULL COMMENT 'block to be associated with the form', `renderer` varchar(30) DEFAULT NULL, `description` text, `helpText` varchar(200) DEFAULT NULL, PRIMARY KEY (`parameterId`), KEY `Index 2` (`groupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_form_group_parameters` -- LOCK TABLES `wp_cjtoolbox_form_group_parameters` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_form_group_parameters` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_cjtoolbox_form_group_parameters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_form_group_xfields` -- DROP TABLE IF EXISTS `wp_cjtoolbox_form_group_xfields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_form_group_xfields` ( `groupId` int(11) NOT NULL, `text` text, UNIQUE KEY `groupId` (`groupId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_form_group_xfields` -- LOCK TABLES `wp_cjtoolbox_form_group_xfields` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_form_group_xfields` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_cjtoolbox_form_group_xfields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_form_groups` -- DROP TABLE IF EXISTS `wp_cjtoolbox_form_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_form_groups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `formId` int(11) NOT NULL COMMENT 'block to be associated with the form', `name` varchar(100) NOT NULL COMMENT 'group name/title', `description` text COMMENT 'Parameters group description', PRIMARY KEY (`id`), UNIQUE KEY `Index 3` (`formId`,`name`), KEY `formId` (`formId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_form_groups` -- LOCK TABLES `wp_cjtoolbox_form_groups` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_form_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_cjtoolbox_form_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_forms` -- DROP TABLE IF EXISTS `wp_cjtoolbox_forms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_forms` ( `blockId` int(11) NOT NULL COMMENT 'block to be associated with the form', `name` varchar(100) NOT NULL COMMENT 'Form name/title', `groupType` varchar(20) NOT NULL COMMENT 'parameters gooup type (tab, accordion, etc...)', PRIMARY KEY (`blockId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_forms` -- LOCK TABLES `wp_cjtoolbox_forms` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_forms` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_cjtoolbox_forms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_package_objects` -- DROP TABLE IF EXISTS `wp_cjtoolbox_package_objects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_package_objects` ( `packageId` int(10) unsigned NOT NULL, `objectId` int(10) unsigned NOT NULL, `objectType` enum('block','template') NOT NULL, `relType` enum('add','link') NOT NULL DEFAULT 'add', PRIMARY KEY (`packageId`,`objectId`,`objectType`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_package_objects` -- LOCK TABLES `wp_cjtoolbox_package_objects` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_package_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_cjtoolbox_package_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_packages` -- DROP TABLE IF EXISTS `wp_cjtoolbox_packages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_packages` ( `name` varchar(100) NOT NULL, `author` varchar(150) NOT NULL, `webSite` varchar(300) NOT NULL, `description` text NOT NULL, `license` text NOT NULL, `readme` text NOT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_packages` -- LOCK TABLES `wp_cjtoolbox_packages` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_packages` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_cjtoolbox_packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_parameter_typedef` -- DROP TABLE IF EXISTS `wp_cjtoolbox_parameter_typedef`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_parameter_typedef` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parameterId` int(11) NOT NULL, `text` text NOT NULL, `value` text NOT NULL, PRIMARY KEY (`id`), KEY `parameterId` (`parameterId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_parameter_typedef` -- LOCK TABLES `wp_cjtoolbox_parameter_typedef` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_parameter_typedef` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_cjtoolbox_parameter_typedef` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_parameter_typeparams` -- DROP TABLE IF EXISTS `wp_cjtoolbox_parameter_typeparams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_parameter_typeparams` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parameterId` int(11) NOT NULL, `name` text NOT NULL, `value` text NOT NULL, PRIMARY KEY (`id`), KEY `parameterId` (`parameterId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_parameter_typeparams` -- LOCK TABLES `wp_cjtoolbox_parameter_typeparams` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_parameter_typeparams` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_cjtoolbox_parameter_typeparams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_parameters` -- DROP TABLE IF EXISTS `wp_cjtoolbox_parameters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_parameters` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'paramter unique identifier', `blockId` int(11) unsigned NOT NULL, `parent` int(11) unsigned DEFAULT NULL, `name` varchar(60) NOT NULL, `type` varchar(20) NOT NULL, `defaultValue` text, `required` tinyint(1) unsigned NOT NULL DEFAULT '0', `contentParam` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`,`parent`,`blockId`), KEY `parent` (`parent`), KEY `blockId` (`blockId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_parameters` -- LOCK TABLES `wp_cjtoolbox_parameters` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_parameters` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_cjtoolbox_parameters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_template_revisions` -- DROP TABLE IF EXISTS `wp_cjtoolbox_template_revisions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_template_revisions` ( `templateId` int(11) NOT NULL, `revisionNo` int(11) NOT NULL DEFAULT '0', `version` varchar(15) DEFAULT NULL, `changeLog` varchar(600) DEFAULT NULL, `state` enum('release','beta','release-candidate','alpha','revision') NOT NULL, `attributes` int(4) unsigned NOT NULL DEFAULT '1', `dateCreated` datetime NOT NULL, `file` varchar(400) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), UNIQUE KEY `templateid-revisionNo` (`revisionNo`,`templateId`) ) ENGINE=InnoDB AUTO_INCREMENT=198 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_template_revisions` -- LOCK TABLES `wp_cjtoolbox_template_revisions` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_template_revisions` DISABLE KEYS */; INSERT INTO `wp_cjtoolbox_template_revisions` VALUES (1,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-includes/js/utils.min.js',1),(2,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-admin/js/common.min.js',2),(3,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-includes/js/wp-a11y.min.js',3),(4,1,'1.6.1','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-includes/js/tw-sack.min.js',4),(5,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-includes/js/quicktags.min.js',5),(6,1,'3517m','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-includes/js/colorpicker.min.js',6),(7,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-admin/js/editor.min.js',7),(8,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-admin/js/wp-fullscreen-stub.min.js',8),(9,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-includes/js/wp-ajax-response.min.js',9),(10,1,'20111129a','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-includes/js/wp-pointer.min.js',10),(11,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-includes/js/autosave.min.js',11),(12,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-includes/js/heartbeat.min.js',12),(13,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-includes/js/wp-auth-check.min.js',13),(14,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','/wp-includes/js/wp-lists.min.js',14),(15,1,'1.7.1','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','https://ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js',15),(16,1,'1.9.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','https://ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js',16),(17,1,'1.9.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','https://ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/builder.js',17),(18,1,'1.9.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','https://ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/dragdrop.js',18),(19,1,'1.9.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','https://ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/effects.js',19),(20,1,'1.9.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','https://ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/slider.js',20),(21,1,'1.9.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','https://ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/sound.js',21),(22,1,'1.9.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','https://ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/controls.js',22),(23,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:49','',23),(24,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/crop/cropper.js',24),(25,1,'1.11.3','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','',25),(26,1,'1.11.3','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/jquery.js',26),(27,1,'1.2.1','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/jquery-migrate.min.js',27),(28,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/core.min.js',28),(29,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect.min.js',29),(30,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-blind.min.js',30),(31,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-bounce.min.js',31),(32,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-clip.min.js',32),(33,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-drop.min.js',33),(34,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-explode.min.js',34),(35,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-fade.min.js',35),(36,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-fold.min.js',36),(37,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-highlight.min.js',37),(38,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-puff.min.js',38),(39,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-pulsate.min.js',39),(40,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-scale.min.js',40),(41,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-shake.min.js',41),(42,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-size.min.js',42),(43,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-slide.min.js',43),(44,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/effect-transfer.min.js',44),(45,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/accordion.min.js',45),(46,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/autocomplete.min.js',46),(47,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/button.min.js',47),(48,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/datepicker.min.js',48),(49,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/dialog.min.js',49),(50,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/draggable.min.js',50),(51,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/droppable.min.js',51),(52,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/menu.min.js',52),(53,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/mouse.min.js',53),(54,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/position.min.js',54),(55,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/progressbar.min.js',55),(56,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/resizable.min.js',56),(57,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/selectable.min.js',57),(58,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/selectmenu.min.js',58),(59,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/slider.min.js',59),(60,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/sortable.min.js',60),(61,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/spinner.min.js',61),(62,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/tabs.min.js',62),(63,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/tooltip.min.js',63),(64,1,'1.11.4','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/ui/widget.min.js',64),(65,1,'3.37.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/jquery.form.min.js',65),(66,1,'2.1.1','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/jquery.color.min.js',66),(67,1,'1.1-20110113','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/suggest.min.js',67),(68,1,'20m','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/jquery.schedule.js',68),(69,1,'2.1.7','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/jquery.query.js',69),(70,1,'0.2','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/jquery.serialize-object.js',70),(71,1,'0.0.2m','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/jquery.hotkeys.min.js',71),(72,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/jquery.table-hotkeys.min.js',72),(73,1,'0.2.2','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/jquery.ui.touch-punch.js',73),(74,1,'3.1.2','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/masonry.min.js',74),(75,1,'3.1.2','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jquery/jquery.masonry.min.js',75),(76,1,'3.1-20121105','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/thickbox/thickbox.js',76),(77,1,'0.9.12','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/jcrop/jquery.Jcrop.min.js',77),(78,1,'2.2-20120417','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/swfobject.js',78),(79,1,'2.1.1','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/plupload/plupload.full.min.js',79),(80,1,'2.1.1','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','',80),(81,1,'2.1.1','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','',81),(82,1,'2.1.1','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','',82),(83,1,'2.1.1','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','',83),(84,1,'2.1.1','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','',84),(85,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/plupload/handlers.min.js',85),(86,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/plupload/wp-plupload.min.js',86),(87,1,'2201-20110113','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/swfupload/swfupload.js',87),(88,1,'2201a','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/swfupload/plugins/swfupload.swfobject.js',88),(89,1,'2201','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/swfupload/plugins/swfupload.queue.js',89),(90,1,'2201','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','/wp-includes/js/swfupload/plugins/swfupload.speed.js',90),(91,1,'2201','Cached by CJT installer!','release',1,'2015-09-30 20:48:50','',91),(92,1,'2201-20110524','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/swfupload/handlers.min.js',92),(93,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/comment-reply.min.js',93),(94,1,'2011-02-23','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/json2.min.js',94),(95,1,'1.6.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/underscore.min.js',95),(96,1,'1.1.2','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/backbone.min.js',96),(97,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/wp-util.min.js',97),(98,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/wp-backbone.min.js',98),(99,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/revisions.min.js',99),(100,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/imgareaselect/jquery.imgareaselect.min.js',100),(101,1,'2.17.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/mediaelement/mediaelement-and-player.min.js',101),(102,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/mediaelement/wp-mediaelement.js',102),(103,1,'2.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/mediaelement/froogaloop.min.js',103),(104,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/mediaelement/wp-playlist.js',104),(105,1,'1.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/zxcvbn-async.min.js',105),(106,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/password-strength-meter.min.js',106),(107,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/user-profile.min.js',107),(108,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/language-chooser.min.js',108),(109,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/user-suggest.min.js',109),(110,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/admin-bar.min.js',110),(111,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/wplink.min.js',111),(112,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/wpdialog.min.js',112),(113,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/word-count.min.js',113),(114,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/media-upload.min.js',114),(115,1,'1.8.1','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/hoverIntent.min.js',115),(116,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/customize-base.min.js',116),(117,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/customize-loader.min.js',117),(118,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/customize-preview.min.js',118),(119,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/customize-models.js',119),(120,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/customize-views.js',120),(121,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/customize-controls.min.js',121),(122,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/customize-widgets.min.js',122),(123,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/customize-preview-widgets.min.js',123),(124,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/customize-nav-menus.min.js',124),(125,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/customize-preview-nav-menus.min.js',125),(126,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/accordion.min.js',126),(127,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/shortcode.min.js',127),(128,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/media-models.min.js',128),(129,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/media-views.min.js',129),(130,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/media-editor.min.js',130),(131,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/media-audiovideo.min.js',131),(132,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/mce-view.min.js',132),(133,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/tags.min.js',133),(134,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/edit-comments.min.js',134),(135,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/xfn.min.js',135),(136,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/postbox.min.js',136),(137,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/tags-box.min.js',137),(138,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/post.min.js',138),(139,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/press-this.min.js',139),(140,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/editor-expand.min.js',140),(141,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/link.min.js',141),(142,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/comment.min.js',142),(143,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/gallery.min.js',143),(144,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/widgets.min.js',144),(145,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/theme.min.js',145),(146,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/inline-edit-post.min.js',146),(147,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/inline-edit-tax.min.js',147),(148,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/plugin-install.min.js',148),(149,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/updates.min.js',149),(150,1,'1.2','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/farbtastic.js',150),(151,1,'1.0.7','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/iris.min.js',151),(152,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/color-picker.min.js',152),(153,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/dashboard.min.js',153),(154,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/wp-list-revisions.min.js',154),(155,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-includes/js/media-grid.min.js',155),(156,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/media.min.js',156),(157,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/image-edit.min.js',157),(158,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/set-post-thumbnail.min.js',158),(159,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/nav-menu.min.js',159),(160,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/custom-header.js',160),(161,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:51','/wp-admin/js/custom-background.min.js',161),(162,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/js/media-gallery.min.js',162),(163,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/js/svg-painter.js',163),(164,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','1',164),(165,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/css/wp-admin.min.css',165),(166,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/css/login.min.css',166),(167,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/css/install.min.css',167),(168,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/css/color-picker.min.css',168),(169,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/css/customize-controls.min.css',169),(170,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/css/customize-widgets.min.css',170),(171,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/css/customize-nav-menus.min.css',171),(172,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/css/press-this.min.css',172),(173,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/css/ie.min.css',173),(174,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/css/buttons.min.css',174),(175,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/css/dashicons.min.css',175),(176,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,300,400,600&subset=latin,latin-ext',176),(177,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/css/admin-bar.min.css',177),(178,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/css/wp-auth-check.min.css',178),(179,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/css/editor.min.css',179),(180,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/css/media-views.min.css',180),(181,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/css/wp-pointer.min.css',181),(182,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/css/customize-preview.min.css',182),(183,1,'0.9.8','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/js/imgareaselect/imgareaselect.css',183),(184,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/css/jquery-ui-dialog.min.css',184),(185,1,'2.17.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/js/mediaelement/mediaelementplayer.min.css',185),(186,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/js/mediaelement/wp-mediaelement.css',186),(187,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/js/thickbox/thickbox.css',187),(188,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/css/deprecated-media.min.css',188),(189,1,'1.3u1','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-admin/css/farbtastic.css',189),(190,1,'0.9.12','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','/wp-includes/js/jcrop/jquery.Jcrop.min.css',190),(191,1,'','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','',191),(192,1,'2.3.2','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','http://www.mytwincity.org/wp-content/plugins/google-calendar-events/css/jquery.qtip.min.css',192),(193,1,'2.3.2','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','http://www.mytwincity.org/wp-content/plugins/google-calendar-events/css/gce-style.css',193),(194,1,'1.11.2','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','http://www.mytwincity.org/wp-content/plugins/duplicator/assets/css/jquery-ui.css',194),(195,1,'4.1.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','http://www.mytwincity.org/wp-content/plugins/duplicator/assets/css/font-awesome.min.css',195),(196,1,'0.5.30','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','http://www.mytwincity.org/wp-content/plugins/duplicator/assets/css/style.css',196),(197,1,'4.0','Cached by CJT installer!','release',1,'2015-09-30 20:48:52','http://www.mytwincity.org/wp-content/plugins/shortcodes-ultimate/assets/css/sunrise.css',197); /*!40000 ALTER TABLE `wp_cjtoolbox_template_revisions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_cjtoolbox_templates` -- DROP TABLE IF EXISTS `wp_cjtoolbox_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_cjtoolbox_templates` ( `name` varchar(80) NOT NULL, `queueName` varchar(80) NOT NULL, `description` text, `keywords` varchar(300) DEFAULT NULL, `license` text, `type` enum('css','javascript','php','html') NOT NULL, `email` varchar(90) DEFAULT NULL, `url` varchar(200) DEFAULT NULL, `creationDate` datetime NOT NULL, `ownerId` int(11) NOT NULL, `authorId` int(11) NOT NULL, `state` enum('published','draft','trash') NOT NULL DEFAULT 'published', `attributes` int(4) NOT NULL DEFAULT '0', `guid` varchar(16) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`,`type`), UNIQUE KEY `guid` (`guid`), KEY `keywords` (`keywords`(255)), KEY `owner` (`ownerId`), KEY `author` (`authorId`), KEY `type` (`type`), KEY `attributes` (`attributes`) ) ENGINE=InnoDB AUTO_INCREMENT=198 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_cjtoolbox_templates` -- LOCK TABLES `wp_cjtoolbox_templates` WRITE; /*!40000 ALTER TABLE `wp_cjtoolbox_templates` DISABLE KEYS */; INSERT INTO `wp_cjtoolbox_templates` VALUES ('Utils','utils',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,1),('Common','common',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,2),('Wp a11y','wp-a11y',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,3),('Sack','sack',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,4),('Quicktags','quicktags',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,5),('Colorpicker','colorpicker',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,6),('Editor','editor',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,7),('Wp fullscreen stub','wp-fullscreen-stub',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,8),('Wp ajax response','wp-ajax-response',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,9),('Wp pointer','wp-pointer',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,10),('Autosave','autosave',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,11),('Heartbeat','heartbeat',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,12),('Wp auth check','wp-auth-check',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,13),('Wp lists','wp-lists',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,14),('Prototype','prototype',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,15),('Scriptaculous root','scriptaculous-root',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,16),('Scriptaculous builder','scriptaculous-builder',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,17),('Scriptaculous dragdrop','scriptaculous-dragdrop',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,18),('Scriptaculous effects','scriptaculous-effects',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,19),('Scriptaculous slider','scriptaculous-slider',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,20),('Scriptaculous sound','scriptaculous-sound',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,21),('Scriptaculous controls','scriptaculous-controls',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,22),('Scriptaculous','scriptaculous',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:49',1,1,'published',1,NULL,23),('Cropper','cropper',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,24),('Jquery','jquery',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,25),('Jquery core','jquery-core',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,26),('Jquery migrate','jquery-migrate',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,27),('Jquery ui core','jquery-ui-core',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,28),('Jquery effects core','jquery-effects-core',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,29),('Jquery effects blind','jquery-effects-blind',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,30),('Jquery effects bounce','jquery-effects-bounce',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,31),('Jquery effects clip','jquery-effects-clip',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,32),('Jquery effects drop','jquery-effects-drop',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,33),('Jquery effects explode','jquery-effects-explode',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,34),('Jquery effects fade','jquery-effects-fade',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,35),('Jquery effects fold','jquery-effects-fold',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,36),('Jquery effects highlight','jquery-effects-highlight',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,37),('Jquery effects puff','jquery-effects-puff',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,38),('Jquery effects pulsate','jquery-effects-pulsate',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,39),('Jquery effects scale','jquery-effects-scale',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,40),('Jquery effects shake','jquery-effects-shake',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,41),('Jquery effects size','jquery-effects-size',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,42),('Jquery effects slide','jquery-effects-slide',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,43),('Jquery effects transfer','jquery-effects-transfer',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,44),('Jquery ui accordion','jquery-ui-accordion',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,45),('Jquery ui autocomplete','jquery-ui-autocomplete',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,46),('Jquery ui button','jquery-ui-button',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,47),('Jquery ui datepicker','jquery-ui-datepicker',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,48),('Jquery ui dialog','jquery-ui-dialog',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,49),('Jquery ui draggable','jquery-ui-draggable',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,50),('Jquery ui droppable','jquery-ui-droppable',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,51),('Jquery ui menu','jquery-ui-menu',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,52),('Jquery ui mouse','jquery-ui-mouse',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,53),('Jquery ui position','jquery-ui-position',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,54),('Jquery ui progressbar','jquery-ui-progressbar',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,55),('Jquery ui resizable','jquery-ui-resizable',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,56),('Jquery ui selectable','jquery-ui-selectable',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,57),('Jquery ui selectmenu','jquery-ui-selectmenu',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,58),('Jquery ui slider','jquery-ui-slider',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,59),('Jquery ui sortable','jquery-ui-sortable',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,60),('Jquery ui spinner','jquery-ui-spinner',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,61),('Jquery ui tabs','jquery-ui-tabs',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,62),('Jquery ui tooltip','jquery-ui-tooltip',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,63),('Jquery ui widget','jquery-ui-widget',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,64),('Jquery form','jquery-form',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,65),('Jquery color','jquery-color',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,66),('Suggest','suggest',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,67),('Schedule','schedule',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,68),('Jquery query','jquery-query',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,69),('Jquery serialize object','jquery-serialize-object',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,70),('Jquery hotkeys','jquery-hotkeys',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,71),('Jquery table hotkeys','jquery-table-hotkeys',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,72),('Jquery touch punch','jquery-touch-punch',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,73),('Masonry','masonry',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,74),('Jquery masonry','jquery-masonry',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,75),('Thickbox','thickbox',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,76),('Jcrop','jcrop',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,77),('Swfobject','swfobject',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,78),('Plupload','plupload',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,79),('Plupload all','plupload-all',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,80),('Plupload html5','plupload-html5',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,81),('Plupload flash','plupload-flash',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,82),('Plupload silverlight','plupload-silverlight',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,83),('Plupload html4','plupload-html4',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,84),('Plupload handlers','plupload-handlers',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,85),('Wp plupload','wp-plupload',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,86),('Swfupload','swfupload',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,87),('Swfupload swfobject','swfupload-swfobject',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,88),('Swfupload queue','swfupload-queue',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,89),('Swfupload speed','swfupload-speed',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,90),('Swfupload all','swfupload-all',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:50',1,1,'published',1,NULL,91),('Swfupload handlers','swfupload-handlers',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,92),('Comment reply','comment-reply',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,93),('Json2','json2',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,94),('Underscore','underscore',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,95),('Backbone','backbone',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,96),('Wp util','wp-util',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,97),('Wp backbone','wp-backbone',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,98),('Revisions','revisions',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,99),('Imgareaselect','imgareaselect',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,100),('Mediaelement','mediaelement',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,101),('Wp mediaelement','wp-mediaelement',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,102),('Froogaloop','froogaloop',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,103),('Wp playlist','wp-playlist',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,104),('Zxcvbn async','zxcvbn-async',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,105),('Password strength meter','password-strength-meter',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,106),('User profile','user-profile',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,107),('Language chooser','language-chooser',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,108),('User suggest','user-suggest',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,109),('Admin bar','admin-bar',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,110),('Wplink','wplink',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,111),('Wpdialogs','wpdialogs',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,112),('Word count','word-count',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,113),('Media upload','media-upload',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,114),('HoverIntent','hoverIntent',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,115),('Customize base','customize-base',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,116),('Customize loader','customize-loader',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,117),('Customize preview','customize-preview',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,118),('Customize models','customize-models',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,119),('Customize views','customize-views',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,120),('Customize controls','customize-controls',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,121),('Customize widgets','customize-widgets',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,122),('Customize preview widgets','customize-preview-widgets',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,123),('Customize nav menus','customize-nav-menus',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,124),('Customize preview nav menus','customize-preview-nav-menus',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,125),('Accordion','accordion',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,126),('Shortcode','shortcode',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,127),('Media models','media-models',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,128),('Media views','media-views',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,129),('Media editor','media-editor',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,130),('Media audiovideo','media-audiovideo',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,131),('Mce view','mce-view',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,132),('Admin tags','admin-tags',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,133),('Admin comments','admin-comments',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,134),('Xfn','xfn',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,135),('Postbox','postbox',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,136),('Tags box','tags-box',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,137),('Post','post',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,138),('Press this','press-this',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,139),('Editor expand','editor-expand',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,140),('Link','link',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,141),('Comment','comment',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,142),('Admin gallery','admin-gallery',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,143),('Admin widgets','admin-widgets',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,144),('Theme','theme',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,145),('Inline edit post','inline-edit-post',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,146),('Inline edit tax','inline-edit-tax',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,147),('Plugin install','plugin-install',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,148),('Updates','updates',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,149),('Farbtastic','farbtastic',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,150),('Iris','iris',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,151),('Wp color picker','wp-color-picker',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,152),('Dashboard','dashboard',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,153),('List revisions','list-revisions',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,154),('Media grid','media-grid',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,155),('Media','media',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,156),('Image edit','image-edit',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,157),('Set post thumbnail','set-post-thumbnail',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,158),('Nav menu','nav-menu',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,159),('Custom header','custom-header',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,160),('Custom background','custom-background',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:51',1,1,'published',1,NULL,161),('Media gallery','media-gallery',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,162),('Svg painter','svg-painter',NULL,NULL,NULL,'javascript',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,163),('Colors','colors',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,164),('Wp admin','wp-admin',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,165),('Login','login',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,166),('Install','install',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,167),('Wp color picker','wp-color-picker',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,168),('Customize controls','customize-controls',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,169),('Customize widgets','customize-widgets',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,170),('Customize nav menus','customize-nav-menus',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,171),('Press this','press-this',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,172),('Ie','ie',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,173),('Buttons','buttons',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,174),('Dashicons','dashicons',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,175),('Open sans','open-sans',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,176),('Admin bar','admin-bar',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,177),('Wp auth check','wp-auth-check',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,178),('Editor buttons','editor-buttons',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,179),('Media views','media-views',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,180),('Wp pointer','wp-pointer',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,181),('Customize preview','customize-preview',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,182),('Imgareaselect','imgareaselect',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,183),('Wp jquery ui dialog','wp-jquery-ui-dialog',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,184),('Mediaelement','mediaelement',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,185),('Wp mediaelement','wp-mediaelement',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,186),('Thickbox','thickbox',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,187),('Media','media',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,188),('Farbtastic','farbtastic',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,189),('Jcrop','jcrop',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,190),('Colors fresh','colors-fresh',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,191),('Google calendar events qtip','google-calendar-events-qtip',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,192),('Google calendar events public','google-calendar-events-public',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,193),('Dup jquery ui','dup-jquery-ui',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,194),('Dup font awesome','dup-font-awesome',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,195),('Dup plugin style','dup-plugin-style',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,196),('Sunrise','sunrise',NULL,NULL,NULL,'css',NULL,NULL,'2015-09-30 20:48:52',1,1,'published',1,NULL,197); /*!40000 ALTER TABLE `wp_cjtoolbox_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_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=utf8mb4 COLLATE=utf8mb4_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_duplicator_packages` -- DROP TABLE IF EXISTS `wp_duplicator_packages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_duplicator_packages` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(250) NOT NULL, `hash` varchar(50) NOT NULL, `status` int(11) NOT NULL, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `owner` varchar(60) NOT NULL, `package` mediumblob NOT NULL, PRIMARY KEY (`id`), KEY `hash` (`hash`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_duplicator_packages` -- LOCK TABLES `wp_duplicator_packages` WRITE; /*!40000 ALTER TABLE `wp_duplicator_packages` DISABLE KEYS */; INSERT INTO `wp_duplicator_packages` VALUES (7,'20150904_twincitybaptist','5612aa34c7b0c7920151005164956',100,'2015-10-05 16:50:23','mr.eaton14','O:11:\"DUP_Package\":16:{s:2:\"ID\";i:7;s:4:\"Name\";s:24:\"20150904_twincitybaptist\";s:4:\"Hash\";s:29:\"5612aa34c7b0c7920151005164956\";s:8:\"NameHash\";s:54:\"20150904_twincitybaptist_5612aa34c7b0c7920151005164956\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:51:\"/Applications/MAMP/mysites/tcbsite/wp-snapshots/tmp\";s:8:\"StoreURL\";s:38:\"http://localhost/tcbsite/wp-snapshots/\";s:8:\"ScanFile\";s:64:\"20150904_twincitybaptist_5612aa34c7b0c7920151005164956_scan.json\";s:7:\"Runtime\";s:10:\"79.23 sec.\";s:7:\"ExeSize\";s:8:\"317.76KB\";s:7:\"ZipSize\";s:8:\"184.18MB\";s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";s:66:\"20150904_twincitybaptist_5612aa34c7b0c7920151005164956_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:34:\"/Applications/MAMP/mysites/tcbsite\";s:4:\"Size\";i:193128080;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";r:1;}s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";s:68:\"20150904_twincitybaptist_5612aa34c7b0c7920151005164956_installer.php\";s:4:\"Size\";i:325389;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:1;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:1428157;s:4:\"File\";s:67:\"20150904_twincitybaptist_5612aa34c7b0c7920151005164956_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";s:119:\"/Applications/MAMP/mysites/tcbsite/wp-snapshots/tmp/20150904_twincitybaptist_5612aa34c7b0c7920151005164956_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}'),(8,'20150904_twincitybaptist','5612b0b909bf03866151005171745',100,'2015-10-05 17:19:15','mr.eaton14','O:11:\"DUP_Package\":16:{s:2:\"ID\";i:8;s:4:\"Name\";s:24:\"20150904_twincitybaptist\";s:4:\"Hash\";s:29:\"5612b0b909bf03866151005171745\";s:8:\"NameHash\";s:54:\"20150904_twincitybaptist_5612b0b909bf03866151005171745\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:51:\"/Applications/MAMP/mysites/tcbsite/wp-snapshots/tmp\";s:8:\"StoreURL\";s:38:\"http://localhost/tcbsite/wp-snapshots/\";s:8:\"ScanFile\";s:64:\"20150904_twincitybaptist_5612b0b909bf03866151005171745_scan.json\";s:7:\"Runtime\";s:10:\"67.53 sec.\";s:7:\"ExeSize\";s:8:\"317.79KB\";s:7:\"ZipSize\";s:8:\"184.18MB\";s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";s:66:\"20150904_twincitybaptist_5612b0b909bf03866151005171745_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:34:\"/Applications/MAMP/mysites/tcbsite\";s:4:\"Size\";i:193128405;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";r:1;}s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";s:68:\"20150904_twincitybaptist_5612b0b909bf03866151005171745_installer.php\";s:4:\"Size\";i:325422;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:4:\"root\";s:10:\"OptsDBUser\";s:4:\"root\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:25:\"http://www.mytwincity.org\";s:10:\"\0*\0Package\";r:1;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:1431220;s:4:\"File\";s:67:\"20150904_twincitybaptist_5612b0b909bf03866151005171745_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";s:119:\"/Applications/MAMP/mysites/tcbsite/wp-snapshots/tmp/20150904_twincitybaptist_5612b0b909bf03866151005171745_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}'); /*!40000 ALTER TABLE `wp_duplicator_packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB AUTO_INCREMENT=13189 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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://www.mytwincity.org','yes'),(2,'home','http://www.mytwincity.org','yes'),(3,'blogname','Twin City Baptist','yes'),(4,'blogdescription','For People Like You!','yes'),(5,'users_can_register','1','yes'),(6,'admin_email','mr.eaton14@gmail.com','yes'),(7,'start_of_week','0','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','1','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','1','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'gzipcompression','0','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:9:{i:0;s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:41:\"css-javascript-toolbox/css-js-toolbox.php\";i:3;s:25:\"duplicator/duplicator.php\";i:4;s:49:\"google-calendar-events/google-calendar-events.php\";i:5;s:23:\"revslider/revslider.php\";i:6;s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";i:7;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:8;s:27:\"updraftplus/updraftplus.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'advanced_edit','0','yes'),(37,'comment_max_links','2','yes'),(38,'gmt_offset','0','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','a:5:{i:0;s:87:\"/Applications/MAMP/mysites/tcbsite/wp-content/themes/accesspress_parallax_pro/style.css\";i:2;s:87:\"/Applications/MAMP/mysites/tcbsite/wp-content/themes/accesspress_parallax_pro/index.php\";i:3;s:91:\"/Applications/MAMP/mysites/tcbsite/wp-content/themes/accesspress_parallax_pro/functions.php\";i:4;s:91:\"/Applications/MAMP/mysites/tcbsite/wp-content/themes/accesspress_parallax_pro/home-page.php\";i:5;s:88:\"/Applications/MAMP/mysites/tcbsite/wp-content/themes/accesspress_parallax_pro/footer.php\";}','no'),(41,'template','accesspress_parallax_pro','yes'),(42,'stylesheet','accesspress_parallax_pro','yes'),(43,'comment_whitelist','1','yes'),(44,'blacklist_keys','','no'),(45,'comment_registration','1','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','33056','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','0','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','page','yes'),(55,'tag_base','','yes'),(56,'show_avatars','1','yes'),(57,'avatar_rating','G','yes'),(58,'upload_url_path','','yes'),(59,'thumbnail_size_w','150','yes'),(60,'thumbnail_size_h','150','yes'),(61,'thumbnail_crop','1','yes'),(62,'medium_size_w','300','yes'),(63,'medium_size_h','300','yes'),(64,'avatar_default','mystery','yes'),(65,'large_size_w','1024','yes'),(66,'large_size_h','1024','yes'),(67,'image_default_link_type','file','yes'),(68,'image_default_size','','yes'),(69,'image_default_align','','yes'),(70,'close_comments_for_old_posts','','yes'),(71,'close_comments_days_old','14','yes'),(72,'thread_comments','1','yes'),(73,'thread_comments_depth','5','yes'),(74,'page_comments','','yes'),(75,'comments_per_page','50','yes'),(76,'default_comments_page','newest','yes'),(77,'comment_order','asc','yes'),(78,'sticky_posts','a:0:{}','yes'),(79,'widget_categories','a:3:{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;i:4;a:0:{}}','yes'),(80,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:1:{s:41:\"css-javascript-toolbox/css-js-toolbox.php\";a:2:{i:0;s:18:\"CJTMainAccessPoint\";i:1;s:9:\"uninstall\";}}','no'),(83,'timezone_string','','yes'),(84,'page_for_posts','1313','yes'),(85,'page_on_front','763','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'initial_db_version','31535','yes'),(89,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{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:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(90,'widget_search','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:6:\"Search\";}s:12:\"_multiwidget\";i:1;}','yes'),(91,'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'),(92,'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'),(93,'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'),(94,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:10:\"nav_menu-3\";}s:7:\"sidebar\";a:0:{}s:12:\"sidebar-left\";a:0:{}s:13:\"sidebar-right\";a:1:{i:0;s:26:\"accesspress_contact_info-2\";}s:8:\"footer-1\";a:2:{i:0;s:19:\"accesspress_image-2\";i:1;s:10:\"nav_menu-4\";}s:8:\"footer-2\";a:2:{i:0;s:10:\"nav_menu-5\";i:1;s:8:\"search-3\";}s:8:\"footer-3\";a:1:{i:0;s:10:\"nav_menu-6\";}s:8:\"footer-4\";a:2:{i:0;s:10:\"nav_menu-7\";i:1;s:30:\"accesspress_pro_social_icons-2\";}s:13:\"array_version\";i:3;}','yes'),(97,'cron','a:6:{i:1444111427;a:2:{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: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:1444115040;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1444133104;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1444154657;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:1444161277;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;}}}s:7:\"version\";i:2;}','yes'),(108,'_transient_random_seed','5fbaeade3721837d5c30b65a457d297e','yes'),(131,'_transient_twentyfifteen_categories','1','yes'),(134,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1437415825;s:4:\"data\";a:2:{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\";}}}}','yes'),(135,'current_theme','Accesspress Parallax Pro','yes'),(136,'theme_mods_accesspress_parallax_pro','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"topmenu\";i:35;s:7:\"primary\";i:2;}}','yes'),(137,'theme_switched','','yes'),(138,'accesspress_parallax_google_font','a:701:{i:0;a:2:{s:6:\"family\";s:7:\"ABeeZee\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:1;a:2:{s:6:\"family\";s:4:\"Abel\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:2;a:2:{s:6:\"family\";s:13:\"Abril Fatface\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:3;a:2:{s:6:\"family\";s:8:\"Aclonica\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:4;a:2:{s:6:\"family\";s:4:\"Acme\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:5;a:2:{s:6:\"family\";s:5:\"Actor\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:6;a:2:{s:6:\"family\";s:7:\"Adamina\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:7;a:2:{s:6:\"family\";s:10:\"Advent Pro\";s:8:\"variants\";a:7:{i:100;s:4:\"Thin\";i:200;s:11:\"Extra Light\";i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";}}i:8;a:2:{s:6:\"family\";s:15:\"Aguafina Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:9;a:2:{s:6:\"family\";s:7:\"Akronim\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:10;a:2:{s:6:\"family\";s:6:\"Aladin\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:11;a:2:{s:6:\"family\";s:7:\"Aldrich\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:12;a:2:{s:6:\"family\";s:4:\"Alef\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:13;a:2:{s:6:\"family\";s:8:\"Alegreya\";s:8:\"variants\";a:6:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:14;a:2:{s:6:\"family\";s:11:\"Alegreya SC\";s:8:\"variants\";a:6:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:15;a:2:{s:6:\"family\";s:13:\"Alegreya Sans\";s:8:\"variants\";a:14:{i:100;s:4:\"Thin\";s:9:\"100italic\";s:11:\"Thin Italic\";i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:500;s:6:\"Medium\";s:9:\"500italic\";s:13:\"Medium Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:800;s:10:\"Extra Bold\";s:9:\"800italic\";s:17:\"Extra Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:16;a:2:{s:6:\"family\";s:16:\"Alegreya Sans SC\";s:8:\"variants\";a:14:{i:100;s:4:\"Thin\";s:9:\"100italic\";s:11:\"Thin Italic\";i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:500;s:6:\"Medium\";s:9:\"500italic\";s:13:\"Medium Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:800;s:10:\"Extra Bold\";s:9:\"800italic\";s:17:\"Extra Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:17;a:2:{s:6:\"family\";s:10:\"Alex Brush\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:18;a:2:{s:6:\"family\";s:13:\"Alfa Slab One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:19;a:2:{s:6:\"family\";s:5:\"Alice\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:20;a:2:{s:6:\"family\";s:5:\"Alike\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:21;a:2:{s:6:\"family\";s:13:\"Alike Angular\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:22;a:2:{s:6:\"family\";s:5:\"Allan\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:23;a:2:{s:6:\"family\";s:7:\"Allerta\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:24;a:2:{s:6:\"family\";s:15:\"Allerta Stencil\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:25;a:2:{s:6:\"family\";s:6:\"Allura\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:26;a:2:{s:6:\"family\";s:8:\"Almendra\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:27;a:2:{s:6:\"family\";s:16:\"Almendra Display\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:28;a:2:{s:6:\"family\";s:11:\"Almendra SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:29;a:2:{s:6:\"family\";s:8:\"Amarante\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:30;a:2:{s:6:\"family\";s:8:\"Amaranth\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:31;a:2:{s:6:\"family\";s:9:\"Amatic SC\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:32;a:2:{s:6:\"family\";s:9:\"Amethysta\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:33;a:2:{s:6:\"family\";s:5:\"Amiri\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:34;a:2:{s:6:\"family\";s:7:\"Anaheim\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:35;a:2:{s:6:\"family\";s:6:\"Andada\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:36;a:2:{s:6:\"family\";s:6:\"Andika\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:37;a:2:{s:6:\"family\";s:6:\"Angkor\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:38;a:2:{s:6:\"family\";s:24:\"Annie Use Your Telescope\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:39;a:2:{s:6:\"family\";s:13:\"Anonymous Pro\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:40;a:2:{s:6:\"family\";s:5:\"Antic\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:41;a:2:{s:6:\"family\";s:12:\"Antic Didone\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:42;a:2:{s:6:\"family\";s:10:\"Antic Slab\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:43;a:2:{s:6:\"family\";s:5:\"Anton\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:44;a:2:{s:6:\"family\";s:6:\"Arapey\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:45;a:2:{s:6:\"family\";s:7:\"Arbutus\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:46;a:2:{s:6:\"family\";s:12:\"Arbutus Slab\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:47;a:2:{s:6:\"family\";s:19:\"Architects Daughter\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:48;a:2:{s:6:\"family\";s:13:\"Archivo Black\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:49;a:2:{s:6:\"family\";s:14:\"Archivo Narrow\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:50;a:2:{s:6:\"family\";s:5:\"Arimo\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:51;a:2:{s:6:\"family\";s:8:\"Arizonia\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:52;a:2:{s:6:\"family\";s:6:\"Armata\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:53;a:2:{s:6:\"family\";s:8:\"Artifika\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:54;a:2:{s:6:\"family\";s:4:\"Arvo\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:55;a:2:{s:6:\"family\";s:4:\"Asap\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:56;a:2:{s:6:\"family\";s:5:\"Asset\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:57;a:2:{s:6:\"family\";s:7:\"Astloch\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:58;a:2:{s:6:\"family\";s:4:\"Asul\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:59;a:2:{s:6:\"family\";s:10:\"Atomic Age\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:60;a:2:{s:6:\"family\";s:6:\"Aubrey\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:61;a:2:{s:6:\"family\";s:9:\"Audiowide\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:62;a:2:{s:6:\"family\";s:10:\"Autour One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:63;a:2:{s:6:\"family\";s:7:\"Average\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:64;a:2:{s:6:\"family\";s:12:\"Average Sans\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:65;a:2:{s:6:\"family\";s:19:\"Averia Gruesa Libre\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:66;a:2:{s:6:\"family\";s:12:\"Averia Libre\";s:8:\"variants\";a:6:{i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:67;a:2:{s:6:\"family\";s:17:\"Averia Sans Libre\";s:8:\"variants\";a:6:{i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:68;a:2:{s:6:\"family\";s:18:\"Averia Serif Libre\";s:8:\"variants\";a:6:{i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:69;a:2:{s:6:\"family\";s:10:\"Bad Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:70;a:2:{s:6:\"family\";s:9:\"Balthazar\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:71;a:2:{s:6:\"family\";s:7:\"Bangers\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:72;a:2:{s:6:\"family\";s:5:\"Basic\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:73;a:2:{s:6:\"family\";s:10:\"Battambang\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:74;a:2:{s:6:\"family\";s:7:\"Baumans\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:75;a:2:{s:6:\"family\";s:5:\"Bayon\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:76;a:2:{s:6:\"family\";s:8:\"Belgrano\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:77;a:2:{s:6:\"family\";s:7:\"Belleza\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:78;a:2:{s:6:\"family\";s:9:\"BenchNine\";s:8:\"variants\";a:3:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:79;a:2:{s:6:\"family\";s:7:\"Bentham\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:80;a:2:{s:6:\"family\";s:15:\"Berkshire Swash\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:81;a:2:{s:6:\"family\";s:5:\"Bevan\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:82;a:2:{s:6:\"family\";s:13:\"Bigelow Rules\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:83;a:2:{s:6:\"family\";s:11:\"Bigshot One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:84;a:2:{s:6:\"family\";s:5:\"Bilbo\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:85;a:2:{s:6:\"family\";s:16:\"Bilbo Swash Caps\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:86;a:2:{s:6:\"family\";s:6:\"Bitter\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";}}i:87;a:2:{s:6:\"family\";s:13:\"Black Ops One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:88;a:2:{s:6:\"family\";s:5:\"Bokor\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:89;a:2:{s:6:\"family\";s:6:\"Bonbon\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:90;a:2:{s:6:\"family\";s:8:\"Boogaloo\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:91;a:2:{s:6:\"family\";s:10:\"Bowlby One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:92;a:2:{s:6:\"family\";s:13:\"Bowlby One SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:93;a:2:{s:6:\"family\";s:7:\"Brawler\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:94;a:2:{s:6:\"family\";s:10:\"Bree Serif\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:95;a:2:{s:6:\"family\";s:14:\"Bubblegum Sans\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:96;a:2:{s:6:\"family\";s:11:\"Bubbler One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:97;a:2:{s:6:\"family\";s:4:\"Buda\";s:8:\"variants\";a:1:{i:300;s:5:\"Light\";}}i:98;a:2:{s:6:\"family\";s:7:\"Buenard\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:99;a:2:{s:6:\"family\";s:10:\"Butcherman\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:100;a:2:{s:6:\"family\";s:14:\"Butterfly Kids\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:101;a:2:{s:6:\"family\";s:5:\"Cabin\";s:8:\"variants\";a:8:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:500;s:6:\"Medium\";s:9:\"500italic\";s:13:\"Medium Italic\";i:600;s:9:\"Semi Bold\";s:9:\"600italic\";s:16:\"Semi Bold Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:102;a:2:{s:6:\"family\";s:15:\"Cabin Condensed\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";}}i:103;a:2:{s:6:\"family\";s:12:\"Cabin Sketch\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:104;a:2:{s:6:\"family\";s:15:\"Caesar Dressing\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:105;a:2:{s:6:\"family\";s:10:\"Cagliostro\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:106;a:2:{s:6:\"family\";s:14:\"Calligraffitti\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:107;a:2:{s:6:\"family\";s:6:\"Cambay\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:108;a:2:{s:6:\"family\";s:5:\"Cambo\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:109;a:2:{s:6:\"family\";s:6:\"Candal\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:110;a:2:{s:6:\"family\";s:9:\"Cantarell\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:111;a:2:{s:6:\"family\";s:11:\"Cantata One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:112;a:2:{s:6:\"family\";s:11:\"Cantora One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:113;a:2:{s:6:\"family\";s:8:\"Capriola\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:114;a:2:{s:6:\"family\";s:5:\"Cardo\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";}}i:115;a:2:{s:6:\"family\";s:5:\"Carme\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:116;a:2:{s:6:\"family\";s:14:\"Carrois Gothic\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:117;a:2:{s:6:\"family\";s:17:\"Carrois Gothic SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:118;a:2:{s:6:\"family\";s:10:\"Carter One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:119;a:2:{s:6:\"family\";s:6:\"Caudex\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:120;a:2:{s:6:\"family\";s:18:\"Cedarville Cursive\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:121;a:2:{s:6:\"family\";s:11:\"Ceviche One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:122;a:2:{s:6:\"family\";s:10:\"Changa One\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:123;a:2:{s:6:\"family\";s:6:\"Chango\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:124;a:2:{s:6:\"family\";s:18:\"Chau Philomene One\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:125;a:2:{s:6:\"family\";s:9:\"Chela One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:126;a:2:{s:6:\"family\";s:14:\"Chelsea Market\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:127;a:2:{s:6:\"family\";s:6:\"Chenla\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:128;a:2:{s:6:\"family\";s:17:\"Cherry Cream Soda\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:129;a:2:{s:6:\"family\";s:12:\"Cherry Swash\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:130;a:2:{s:6:\"family\";s:5:\"Chewy\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:131;a:2:{s:6:\"family\";s:6:\"Chicle\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:132;a:2:{s:6:\"family\";s:5:\"Chivo\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:133;a:2:{s:6:\"family\";s:6:\"Cinzel\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";i:900;s:10:\"Ultra Bold\";}}i:134;a:2:{s:6:\"family\";s:17:\"Cinzel Decorative\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";i:900;s:10:\"Ultra Bold\";}}i:135;a:2:{s:6:\"family\";s:14:\"Clicker Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:136;a:2:{s:6:\"family\";s:4:\"Coda\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:800;s:10:\"Extra Bold\";}}i:137;a:2:{s:6:\"family\";s:12:\"Coda Caption\";s:8:\"variants\";a:1:{i:800;s:10:\"Extra Bold\";}}i:138;a:2:{s:6:\"family\";s:8:\"Codystar\";s:8:\"variants\";a:2:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";}}i:139;a:2:{s:6:\"family\";s:5:\"Combo\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:140;a:2:{s:6:\"family\";s:9:\"Comfortaa\";s:8:\"variants\";a:3:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:141;a:2:{s:6:\"family\";s:11:\"Coming Soon\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:142;a:2:{s:6:\"family\";s:11:\"Concert One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:143;a:2:{s:6:\"family\";s:9:\"Condiment\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:144;a:2:{s:6:\"family\";s:7:\"Content\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:145;a:2:{s:6:\"family\";s:12:\"Contrail One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:146;a:2:{s:6:\"family\";s:11:\"Convergence\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:147;a:2:{s:6:\"family\";s:6:\"Cookie\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:148;a:2:{s:6:\"family\";s:5:\"Copse\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:149;a:2:{s:6:\"family\";s:6:\"Corben\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:150;a:2:{s:6:\"family\";s:9:\"Courgette\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:151;a:2:{s:6:\"family\";s:7:\"Cousine\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:152;a:2:{s:6:\"family\";s:8:\"Coustard\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:900;s:10:\"Ultra Bold\";}}i:153;a:2:{s:6:\"family\";s:21:\"Covered By Your Grace\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:154;a:2:{s:6:\"family\";s:12:\"Crafty Girls\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:155;a:2:{s:6:\"family\";s:9:\"Creepster\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:156;a:2:{s:6:\"family\";s:11:\"Crete Round\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:157;a:2:{s:6:\"family\";s:12:\"Crimson Text\";s:8:\"variants\";a:6:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:600;s:9:\"Semi Bold\";s:9:\"600italic\";s:16:\"Semi Bold Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:158;a:2:{s:6:\"family\";s:13:\"Croissant One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:159;a:2:{s:6:\"family\";s:7:\"Crushed\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:160;a:2:{s:6:\"family\";s:6:\"Cuprum\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:161;a:2:{s:6:\"family\";s:6:\"Cutive\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:162;a:2:{s:6:\"family\";s:11:\"Cutive Mono\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:163;a:2:{s:6:\"family\";s:6:\"Damion\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:164;a:2:{s:6:\"family\";s:14:\"Dancing Script\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:165;a:2:{s:6:\"family\";s:7:\"Dangrek\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:166;a:2:{s:6:\"family\";s:20:\"Dawning of a New Day\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:167;a:2:{s:6:\"family\";s:8:\"Days One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:168;a:2:{s:6:\"family\";s:5:\"Dekko\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:169;a:2:{s:6:\"family\";s:6:\"Delius\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:170;a:2:{s:6:\"family\";s:17:\"Delius Swash Caps\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:171;a:2:{s:6:\"family\";s:14:\"Delius Unicase\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:172;a:2:{s:6:\"family\";s:13:\"Della Respira\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:173;a:2:{s:6:\"family\";s:8:\"Denk One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:174;a:2:{s:6:\"family\";s:10:\"Devonshire\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:175;a:2:{s:6:\"family\";s:8:\"Dhurjati\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:176;a:2:{s:6:\"family\";s:13:\"Didact Gothic\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:177;a:2:{s:6:\"family\";s:9:\"Diplomata\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:178;a:2:{s:6:\"family\";s:12:\"Diplomata SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:179;a:2:{s:6:\"family\";s:6:\"Domine\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:180;a:2:{s:6:\"family\";s:11:\"Donegal One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:181;a:2:{s:6:\"family\";s:10:\"Doppio One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:182;a:2:{s:6:\"family\";s:5:\"Dorsa\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:183;a:2:{s:6:\"family\";s:5:\"Dosis\";s:8:\"variants\";a:7:{i:200;s:11:\"Extra Light\";i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";i:800;s:10:\"Extra Bold\";}}i:184;a:2:{s:6:\"family\";s:11:\"Dr Sugiyama\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:185;a:2:{s:6:\"family\";s:10:\"Droid Sans\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:186;a:2:{s:6:\"family\";s:15:\"Droid Sans Mono\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:187;a:2:{s:6:\"family\";s:11:\"Droid Serif\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:188;a:2:{s:6:\"family\";s:9:\"Duru Sans\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:189;a:2:{s:6:\"family\";s:9:\"Dynalight\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:190;a:2:{s:6:\"family\";s:11:\"EB Garamond\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:191;a:2:{s:6:\"family\";s:10:\"Eagle Lake\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:192;a:2:{s:6:\"family\";s:5:\"Eater\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:193;a:2:{s:6:\"family\";s:9:\"Economica\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:194;a:2:{s:6:\"family\";s:8:\"Ek Mukta\";s:8:\"variants\";a:7:{i:200;s:11:\"Extra Light\";i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";i:800;s:10:\"Extra Bold\";}}i:195;a:2:{s:6:\"family\";s:11:\"Electrolize\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:196;a:2:{s:6:\"family\";s:5:\"Elsie\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:900;s:10:\"Ultra Bold\";}}i:197;a:2:{s:6:\"family\";s:16:\"Elsie Swash Caps\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:900;s:10:\"Ultra Bold\";}}i:198;a:2:{s:6:\"family\";s:11:\"Emblema One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:199;a:2:{s:6:\"family\";s:12:\"Emilys Candy\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:200;a:2:{s:6:\"family\";s:10:\"Engagement\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:201;a:2:{s:6:\"family\";s:9:\"Englebert\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:202;a:2:{s:6:\"family\";s:9:\"Enriqueta\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:203;a:2:{s:6:\"family\";s:9:\"Erica One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:204;a:2:{s:6:\"family\";s:7:\"Esteban\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:205;a:2:{s:6:\"family\";s:15:\"Euphoria Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:206;a:2:{s:6:\"family\";s:5:\"Ewert\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:207;a:2:{s:6:\"family\";s:3:\"Exo\";s:8:\"variants\";a:18:{i:100;s:4:\"Thin\";s:9:\"100italic\";s:11:\"Thin Italic\";i:200;s:11:\"Extra Light\";s:9:\"200italic\";N;i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:500;s:6:\"Medium\";s:9:\"500italic\";s:13:\"Medium Italic\";i:600;s:9:\"Semi Bold\";s:9:\"600italic\";s:16:\"Semi Bold Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:800;s:10:\"Extra Bold\";s:9:\"800italic\";s:17:\"Extra Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:208;a:2:{s:6:\"family\";s:5:\"Exo 2\";s:8:\"variants\";a:18:{i:100;s:4:\"Thin\";s:9:\"100italic\";s:11:\"Thin Italic\";i:200;s:11:\"Extra Light\";s:9:\"200italic\";N;i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:500;s:6:\"Medium\";s:9:\"500italic\";s:13:\"Medium Italic\";i:600;s:9:\"Semi Bold\";s:9:\"600italic\";s:16:\"Semi Bold Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:800;s:10:\"Extra Bold\";s:9:\"800italic\";s:17:\"Extra Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:209;a:2:{s:6:\"family\";s:13:\"Expletus Sans\";s:8:\"variants\";a:8:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:500;s:6:\"Medium\";s:9:\"500italic\";s:13:\"Medium Italic\";i:600;s:9:\"Semi Bold\";s:9:\"600italic\";s:16:\"Semi Bold Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:210;a:2:{s:6:\"family\";s:12:\"Fanwood Text\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:211;a:2:{s:6:\"family\";s:9:\"Fascinate\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:212;a:2:{s:6:\"family\";s:16:\"Fascinate Inline\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:213;a:2:{s:6:\"family\";s:10:\"Faster One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:214;a:2:{s:6:\"family\";s:8:\"Fasthand\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:215;a:2:{s:6:\"family\";s:9:\"Fauna One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:216;a:2:{s:6:\"family\";s:8:\"Federant\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:217;a:2:{s:6:\"family\";s:6:\"Federo\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:218;a:2:{s:6:\"family\";s:6:\"Felipa\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:219;a:2:{s:6:\"family\";s:5:\"Fenix\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:220;a:2:{s:6:\"family\";s:12:\"Finger Paint\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:221;a:2:{s:6:\"family\";s:9:\"Fira Mono\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:222;a:2:{s:6:\"family\";s:9:\"Fira Sans\";s:8:\"variants\";a:8:{i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:500;s:6:\"Medium\";s:9:\"500italic\";s:13:\"Medium Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:223;a:2:{s:6:\"family\";s:10:\"Fjalla One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:224;a:2:{s:6:\"family\";s:9:\"Fjord One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:225;a:2:{s:6:\"family\";s:8:\"Flamenco\";s:8:\"variants\";a:2:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";}}i:226;a:2:{s:6:\"family\";s:7:\"Flavors\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:227;a:2:{s:6:\"family\";s:10:\"Fondamento\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:228;a:2:{s:6:\"family\";s:16:\"Fontdiner Swanky\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:229;a:2:{s:6:\"family\";s:5:\"Forum\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:230;a:2:{s:6:\"family\";s:12:\"Francois One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:231;a:2:{s:6:\"family\";s:12:\"Freckle Face\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:232;a:2:{s:6:\"family\";s:20:\"Fredericka the Great\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:233;a:2:{s:6:\"family\";s:11:\"Fredoka One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:234;a:2:{s:6:\"family\";s:8:\"Freehand\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:235;a:2:{s:6:\"family\";s:6:\"Fresca\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:236;a:2:{s:6:\"family\";s:7:\"Frijole\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:237;a:2:{s:6:\"family\";s:7:\"Fruktur\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:238;a:2:{s:6:\"family\";s:9:\"Fugaz One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:239;a:2:{s:6:\"family\";s:9:\"GFS Didot\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:240;a:2:{s:6:\"family\";s:15:\"GFS Neohellenic\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:241;a:2:{s:6:\"family\";s:8:\"Gabriela\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:242;a:2:{s:6:\"family\";s:6:\"Gafata\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:243;a:2:{s:6:\"family\";s:8:\"Galdeano\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:244;a:2:{s:6:\"family\";s:7:\"Galindo\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:245;a:2:{s:6:\"family\";s:13:\"Gentium Basic\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:246;a:2:{s:6:\"family\";s:18:\"Gentium Book Basic\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:247;a:2:{s:6:\"family\";s:3:\"Geo\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:248;a:2:{s:6:\"family\";s:7:\"Geostar\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:249;a:2:{s:6:\"family\";s:12:\"Geostar Fill\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:250;a:2:{s:6:\"family\";s:12:\"Germania One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:251;a:2:{s:6:\"family\";s:6:\"Gidugu\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:252;a:2:{s:6:\"family\";s:13:\"Gilda Display\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:253;a:2:{s:6:\"family\";s:14:\"Give You Glory\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:254;a:2:{s:6:\"family\";s:13:\"Glass Antiqua\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:255;a:2:{s:6:\"family\";s:6:\"Glegoo\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:256;a:2:{s:6:\"family\";s:17:\"Gloria Hallelujah\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:257;a:2:{s:6:\"family\";s:10:\"Goblin One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:258;a:2:{s:6:\"family\";s:10:\"Gochi Hand\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:259;a:2:{s:6:\"family\";s:8:\"Gorditas\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:260;a:2:{s:6:\"family\";s:21:\"Goudy Bookletter 1911\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:261;a:2:{s:6:\"family\";s:8:\"Graduate\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:262;a:2:{s:6:\"family\";s:11:\"Grand Hotel\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:263;a:2:{s:6:\"family\";s:12:\"Gravitas One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:264;a:2:{s:6:\"family\";s:11:\"Great Vibes\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:265;a:2:{s:6:\"family\";s:6:\"Griffy\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:266;a:2:{s:6:\"family\";s:6:\"Gruppo\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:267;a:2:{s:6:\"family\";s:5:\"Gudea\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";}}i:268;a:2:{s:6:\"family\";s:8:\"Gurajada\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:269;a:2:{s:6:\"family\";s:6:\"Habibi\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:270;a:2:{s:6:\"family\";s:6:\"Halant\";s:8:\"variants\";a:5:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";}}i:271;a:2:{s:6:\"family\";s:15:\"Hammersmith One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:272;a:2:{s:6:\"family\";s:7:\"Hanalei\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:273;a:2:{s:6:\"family\";s:12:\"Hanalei Fill\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:274;a:2:{s:6:\"family\";s:7:\"Handlee\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:275;a:2:{s:6:\"family\";s:7:\"Hanuman\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:276;a:2:{s:6:\"family\";s:12:\"Happy Monkey\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:277;a:2:{s:6:\"family\";s:12:\"Headland One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:278;a:2:{s:6:\"family\";s:11:\"Henny Penny\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:279;a:2:{s:6:\"family\";s:20:\"Herr Von Muellerhoff\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:280;a:2:{s:6:\"family\";s:4:\"Hind\";s:8:\"variants\";a:5:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";}}i:281;a:2:{s:6:\"family\";s:15:\"Holtwood One SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:282;a:2:{s:6:\"family\";s:14:\"Homemade Apple\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:283;a:2:{s:6:\"family\";s:8:\"Homenaje\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:284;a:2:{s:6:\"family\";s:15:\"IM Fell DW Pica\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:285;a:2:{s:6:\"family\";s:18:\"IM Fell DW Pica SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:286;a:2:{s:6:\"family\";s:19:\"IM Fell Double Pica\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:287;a:2:{s:6:\"family\";s:22:\"IM Fell Double Pica SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:288;a:2:{s:6:\"family\";s:15:\"IM Fell English\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:289;a:2:{s:6:\"family\";s:18:\"IM Fell English SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:290;a:2:{s:6:\"family\";s:20:\"IM Fell French Canon\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:291;a:2:{s:6:\"family\";s:23:\"IM Fell French Canon SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:292;a:2:{s:6:\"family\";s:20:\"IM Fell Great Primer\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:293;a:2:{s:6:\"family\";s:23:\"IM Fell Great Primer SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:294;a:2:{s:6:\"family\";s:7:\"Iceberg\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:295;a:2:{s:6:\"family\";s:7:\"Iceland\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:296;a:2:{s:6:\"family\";s:7:\"Imprima\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:297;a:2:{s:6:\"family\";s:11:\"Inconsolata\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:298;a:2:{s:6:\"family\";s:5:\"Inder\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:299;a:2:{s:6:\"family\";s:12:\"Indie Flower\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:300;a:2:{s:6:\"family\";s:5:\"Inika\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:301;a:2:{s:6:\"family\";s:12:\"Irish Grover\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:302;a:2:{s:6:\"family\";s:9:\"Istok Web\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:303;a:2:{s:6:\"family\";s:8:\"Italiana\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:304;a:2:{s:6:\"family\";s:9:\"Italianno\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:305;a:2:{s:6:\"family\";s:16:\"Jacques Francois\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:306;a:2:{s:6:\"family\";s:23:\"Jacques Francois Shadow\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:307;a:2:{s:6:\"family\";s:14:\"Jim Nightshade\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:308;a:2:{s:6:\"family\";s:10:\"Jockey One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:309;a:2:{s:6:\"family\";s:12:\"Jolly Lodger\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:310;a:2:{s:6:\"family\";s:12:\"Josefin Sans\";s:8:\"variants\";a:10:{i:100;s:4:\"Thin\";s:9:\"100italic\";s:11:\"Thin Italic\";i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:600;s:9:\"Semi Bold\";s:9:\"600italic\";s:16:\"Semi Bold Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:311;a:2:{s:6:\"family\";s:12:\"Josefin Slab\";s:8:\"variants\";a:10:{i:100;s:4:\"Thin\";s:9:\"100italic\";s:11:\"Thin Italic\";i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:600;s:9:\"Semi Bold\";s:9:\"600italic\";s:16:\"Semi Bold Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:312;a:2:{s:6:\"family\";s:8:\"Joti One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:313;a:2:{s:6:\"family\";s:6:\"Judson\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";}}i:314;a:2:{s:6:\"family\";s:5:\"Julee\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:315;a:2:{s:6:\"family\";s:15:\"Julius Sans One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:316;a:2:{s:6:\"family\";s:5:\"Junge\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:317;a:2:{s:6:\"family\";s:4:\"Jura\";s:8:\"variants\";a:4:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";}}i:318;a:2:{s:6:\"family\";s:17:\"Just Another Hand\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:319;a:2:{s:6:\"family\";s:23:\"Just Me Again Down Here\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:320;a:2:{s:6:\"family\";s:5:\"Kalam\";s:8:\"variants\";a:3:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:321;a:2:{s:6:\"family\";s:7:\"Kameron\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:322;a:2:{s:6:\"family\";s:9:\"Kantumruy\";s:8:\"variants\";a:3:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:323;a:2:{s:6:\"family\";s:5:\"Karla\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:324;a:2:{s:6:\"family\";s:5:\"Karma\";s:8:\"variants\";a:5:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";}}i:325;a:2:{s:6:\"family\";s:14:\"Kaushan Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:326;a:2:{s:6:\"family\";s:6:\"Kavoon\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:327;a:2:{s:6:\"family\";s:10:\"Kdam Thmor\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:328;a:2:{s:6:\"family\";s:10:\"Keania One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:329;a:2:{s:6:\"family\";s:10:\"Kelly Slab\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:330;a:2:{s:6:\"family\";s:5:\"Kenia\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:331;a:2:{s:6:\"family\";s:5:\"Khand\";s:8:\"variants\";a:5:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";}}i:332;a:2:{s:6:\"family\";s:5:\"Khmer\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:333;a:2:{s:6:\"family\";s:5:\"Khula\";s:8:\"variants\";a:5:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";i:800;s:10:\"Extra Bold\";}}i:334;a:2:{s:6:\"family\";s:8:\"Kite One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:335;a:2:{s:6:\"family\";s:7:\"Knewave\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:336;a:2:{s:6:\"family\";s:9:\"Kotta One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:337;a:2:{s:6:\"family\";s:6:\"Koulen\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:338;a:2:{s:6:\"family\";s:6:\"Kranky\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:339;a:2:{s:6:\"family\";s:5:\"Kreon\";s:8:\"variants\";a:3:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:340;a:2:{s:6:\"family\";s:6:\"Kristi\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:341;a:2:{s:6:\"family\";s:9:\"Krona One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:342;a:2:{s:6:\"family\";s:15:\"La Belle Aurore\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:343;a:2:{s:6:\"family\";s:5:\"Laila\";s:8:\"variants\";a:5:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";}}i:344;a:2:{s:6:\"family\";s:11:\"Lakki Reddy\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:345;a:2:{s:6:\"family\";s:8:\"Lancelot\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:346;a:2:{s:6:\"family\";s:6:\"Lateef\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:347;a:2:{s:6:\"family\";s:4:\"Lato\";s:8:\"variants\";a:10:{i:100;s:4:\"Thin\";s:9:\"100italic\";s:11:\"Thin Italic\";i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:348;a:2:{s:6:\"family\";s:13:\"League Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:349;a:2:{s:6:\"family\";s:12:\"Leckerli One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:350;a:2:{s:6:\"family\";s:6:\"Ledger\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:351;a:2:{s:6:\"family\";s:6:\"Lekton\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";}}i:352;a:2:{s:6:\"family\";s:5:\"Lemon\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:353;a:2:{s:6:\"family\";s:17:\"Libre Baskerville\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";}}i:354;a:2:{s:6:\"family\";s:11:\"Life Savers\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:355;a:2:{s:6:\"family\";s:10:\"Lilita One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:356;a:2:{s:6:\"family\";s:15:\"Lily Script One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:357;a:2:{s:6:\"family\";s:9:\"Limelight\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:358;a:2:{s:6:\"family\";s:11:\"Linden Hill\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:359;a:2:{s:6:\"family\";s:7:\"Lobster\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:360;a:2:{s:6:\"family\";s:11:\"Lobster Two\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:361;a:2:{s:6:\"family\";s:16:\"Londrina Outline\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:362;a:2:{s:6:\"family\";s:15:\"Londrina Shadow\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:363;a:2:{s:6:\"family\";s:15:\"Londrina Sketch\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:364;a:2:{s:6:\"family\";s:14:\"Londrina Solid\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:365;a:2:{s:6:\"family\";s:4:\"Lora\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:366;a:2:{s:6:\"family\";s:21:\"Love Ya Like A Sister\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:367;a:2:{s:6:\"family\";s:17:\"Loved by the King\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:368;a:2:{s:6:\"family\";s:14:\"Lovers Quarrel\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:369;a:2:{s:6:\"family\";s:12:\"Luckiest Guy\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:370;a:2:{s:6:\"family\";s:8:\"Lusitana\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:371;a:2:{s:6:\"family\";s:7:\"Lustria\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:372;a:2:{s:6:\"family\";s:7:\"Macondo\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:373;a:2:{s:6:\"family\";s:18:\"Macondo Swash Caps\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:374;a:2:{s:6:\"family\";s:5:\"Magra\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:375;a:2:{s:6:\"family\";s:13:\"Maiden Orange\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:376;a:2:{s:6:\"family\";s:4:\"Mako\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:377;a:2:{s:6:\"family\";s:8:\"Mallanna\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:378;a:2:{s:6:\"family\";s:7:\"Mandali\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:379;a:2:{s:6:\"family\";s:9:\"Marcellus\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:380;a:2:{s:6:\"family\";s:12:\"Marcellus SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:381;a:2:{s:6:\"family\";s:12:\"Marck Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:382;a:2:{s:6:\"family\";s:9:\"Margarine\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:383;a:2:{s:6:\"family\";s:9:\"Marko One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:384;a:2:{s:6:\"family\";s:8:\"Marmelad\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:385;a:2:{s:6:\"family\";s:11:\"Martel Sans\";s:8:\"variants\";a:7:{i:200;s:11:\"Extra Light\";i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";i:800;s:10:\"Extra Bold\";i:900;s:10:\"Ultra Bold\";}}i:386;a:2:{s:6:\"family\";s:6:\"Marvel\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:387;a:2:{s:6:\"family\";s:4:\"Mate\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:388;a:2:{s:6:\"family\";s:7:\"Mate SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:389;a:2:{s:6:\"family\";s:9:\"Maven Pro\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:700;s:4:\"Bold\";i:900;s:10:\"Ultra Bold\";}}i:390;a:2:{s:6:\"family\";s:7:\"McLaren\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:391;a:2:{s:6:\"family\";s:6:\"Meddon\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:392;a:2:{s:6:\"family\";s:13:\"MedievalSharp\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:393;a:2:{s:6:\"family\";s:10:\"Medula One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:394;a:2:{s:6:\"family\";s:6:\"Megrim\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:395;a:2:{s:6:\"family\";s:11:\"Meie Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:396;a:2:{s:6:\"family\";s:8:\"Merienda\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:397;a:2:{s:6:\"family\";s:12:\"Merienda One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:398;a:2:{s:6:\"family\";s:12:\"Merriweather\";s:8:\"variants\";a:8:{i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:399;a:2:{s:6:\"family\";s:17:\"Merriweather Sans\";s:8:\"variants\";a:8:{i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:800;s:10:\"Extra Bold\";s:9:\"800italic\";s:17:\"Extra Bold Italic\";}}i:400;a:2:{s:6:\"family\";s:5:\"Metal\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:401;a:2:{s:6:\"family\";s:11:\"Metal Mania\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:402;a:2:{s:6:\"family\";s:12:\"Metamorphous\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:403;a:2:{s:6:\"family\";s:11:\"Metrophobic\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:404;a:2:{s:6:\"family\";s:8:\"Michroma\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:405;a:2:{s:6:\"family\";s:7:\"Milonga\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:406;a:2:{s:6:\"family\";s:9:\"Miltonian\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:407;a:2:{s:6:\"family\";s:16:\"Miltonian Tattoo\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:408;a:2:{s:6:\"family\";s:7:\"Miniver\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:409;a:2:{s:6:\"family\";s:14:\"Miss Fajardose\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:410;a:2:{s:6:\"family\";s:5:\"Modak\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:411;a:2:{s:6:\"family\";s:14:\"Modern Antiqua\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:412;a:2:{s:6:\"family\";s:7:\"Molengo\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:413;a:2:{s:6:\"family\";s:5:\"Molle\";s:8:\"variants\";a:1:{s:6:\"italic\";s:13:\"Normal Italic\";}}i:414;a:2:{s:6:\"family\";s:5:\"Monda\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:415;a:2:{s:6:\"family\";s:8:\"Monofett\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:416;a:2:{s:6:\"family\";s:7:\"Monoton\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:417;a:2:{s:6:\"family\";s:20:\"Monsieur La Doulaise\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:418;a:2:{s:6:\"family\";s:7:\"Montaga\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:419;a:2:{s:6:\"family\";s:6:\"Montez\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:420;a:2:{s:6:\"family\";s:10:\"Montserrat\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:421;a:2:{s:6:\"family\";s:21:\"Montserrat Alternates\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:422;a:2:{s:6:\"family\";s:20:\"Montserrat Subrayada\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:423;a:2:{s:6:\"family\";s:4:\"Moul\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:424;a:2:{s:6:\"family\";s:8:\"Moulpali\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:425;a:2:{s:6:\"family\";s:22:\"Mountains of Christmas\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:426;a:2:{s:6:\"family\";s:13:\"Mouse Memoirs\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:427;a:2:{s:6:\"family\";s:10:\"Mr Bedfort\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:428;a:2:{s:6:\"family\";s:8:\"Mr Dafoe\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:429;a:2:{s:6:\"family\";s:14:\"Mr De Haviland\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:430;a:2:{s:6:\"family\";s:19:\"Mrs Saint Delafield\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:431;a:2:{s:6:\"family\";s:13:\"Mrs Sheppards\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:432;a:2:{s:6:\"family\";s:4:\"Muli\";s:8:\"variants\";a:4:{i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:433;a:2:{s:6:\"family\";s:13:\"Mystery Quest\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:434;a:2:{s:6:\"family\";s:3:\"NTR\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:435;a:2:{s:6:\"family\";s:6:\"Neucha\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:436;a:2:{s:6:\"family\";s:6:\"Neuton\";s:8:\"variants\";a:6:{i:200;s:11:\"Extra Light\";i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";i:800;s:10:\"Extra Bold\";}}i:437;a:2:{s:6:\"family\";s:10:\"New Rocker\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:438;a:2:{s:6:\"family\";s:10:\"News Cycle\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:439;a:2:{s:6:\"family\";s:7:\"Niconne\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:440;a:2:{s:6:\"family\";s:9:\"Nixie One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:441;a:2:{s:6:\"family\";s:6:\"Nobile\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:442;a:2:{s:6:\"family\";s:6:\"Nokora\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:443;a:2:{s:6:\"family\";s:7:\"Norican\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:444;a:2:{s:6:\"family\";s:7:\"Nosifer\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:445;a:2:{s:6:\"family\";s:20:\"Nothing You Could Do\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:446;a:2:{s:6:\"family\";s:12:\"Noticia Text\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:447;a:2:{s:6:\"family\";s:9:\"Noto Sans\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:448;a:2:{s:6:\"family\";s:10:\"Noto Serif\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:449;a:2:{s:6:\"family\";s:8:\"Nova Cut\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:450;a:2:{s:6:\"family\";s:9:\"Nova Flat\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:451;a:2:{s:6:\"family\";s:9:\"Nova Mono\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:452;a:2:{s:6:\"family\";s:9:\"Nova Oval\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:453;a:2:{s:6:\"family\";s:10:\"Nova Round\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:454;a:2:{s:6:\"family\";s:11:\"Nova Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:455;a:2:{s:6:\"family\";s:9:\"Nova Slim\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:456;a:2:{s:6:\"family\";s:11:\"Nova Square\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:457;a:2:{s:6:\"family\";s:6:\"Numans\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:458;a:2:{s:6:\"family\";s:6:\"Nunito\";s:8:\"variants\";a:3:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:459;a:2:{s:6:\"family\";s:14:\"Odor Mean Chey\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:460;a:2:{s:6:\"family\";s:7:\"Offside\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:461;a:2:{s:6:\"family\";s:15:\"Old Standard TT\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";}}i:462;a:2:{s:6:\"family\";s:9:\"Oldenburg\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:463;a:2:{s:6:\"family\";s:11:\"Oleo Script\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:464;a:2:{s:6:\"family\";s:22:\"Oleo Script Swash Caps\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:465;a:2:{s:6:\"family\";s:9:\"Open Sans\";s:8:\"variants\";a:10:{i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:600;s:9:\"Semi Bold\";s:9:\"600italic\";s:16:\"Semi Bold Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:800;s:10:\"Extra Bold\";s:9:\"800italic\";s:17:\"Extra Bold Italic\";}}i:466;a:2:{s:6:\"family\";s:19:\"Open Sans Condensed\";s:8:\"variants\";a:3:{i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";i:700;s:4:\"Bold\";}}i:467;a:2:{s:6:\"family\";s:11:\"Oranienbaum\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:468;a:2:{s:6:\"family\";s:8:\"Orbitron\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:700;s:4:\"Bold\";i:900;s:10:\"Ultra Bold\";}}i:469;a:2:{s:6:\"family\";s:7:\"Oregano\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:470;a:2:{s:6:\"family\";s:7:\"Orienta\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:471;a:2:{s:6:\"family\";s:15:\"Original Surfer\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:472;a:2:{s:6:\"family\";s:6:\"Oswald\";s:8:\"variants\";a:3:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:473;a:2:{s:6:\"family\";s:16:\"Over the Rainbow\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:474;a:2:{s:6:\"family\";s:8:\"Overlock\";s:8:\"variants\";a:6:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:475;a:2:{s:6:\"family\";s:11:\"Overlock SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:476;a:2:{s:6:\"family\";s:3:\"Ovo\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:477;a:2:{s:6:\"family\";s:6:\"Oxygen\";s:8:\"variants\";a:3:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:478;a:2:{s:6:\"family\";s:11:\"Oxygen Mono\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:479;a:2:{s:6:\"family\";s:7:\"PT Mono\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:480;a:2:{s:6:\"family\";s:7:\"PT Sans\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:481;a:2:{s:6:\"family\";s:15:\"PT Sans Caption\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:482;a:2:{s:6:\"family\";s:14:\"PT Sans Narrow\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:483;a:2:{s:6:\"family\";s:8:\"PT Serif\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:484;a:2:{s:6:\"family\";s:16:\"PT Serif Caption\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:485;a:2:{s:6:\"family\";s:8:\"Pacifico\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:486;a:2:{s:6:\"family\";s:7:\"Paprika\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:487;a:2:{s:6:\"family\";s:10:\"Parisienne\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:488;a:2:{s:6:\"family\";s:11:\"Passero One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:489;a:2:{s:6:\"family\";s:11:\"Passion One\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";i:900;s:10:\"Ultra Bold\";}}i:490;a:2:{s:6:\"family\";s:18:\"Pathway Gothic One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:491;a:2:{s:6:\"family\";s:12:\"Patrick Hand\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:492;a:2:{s:6:\"family\";s:15:\"Patrick Hand SC\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:493;a:2:{s:6:\"family\";s:9:\"Patua One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:494;a:2:{s:6:\"family\";s:11:\"Paytone One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:495;a:2:{s:6:\"family\";s:7:\"Peddana\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:496;a:2:{s:6:\"family\";s:7:\"Peralta\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:497;a:2:{s:6:\"family\";s:16:\"Permanent Marker\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:498;a:2:{s:6:\"family\";s:19:\"Petit Formal Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:499;a:2:{s:6:\"family\";s:7:\"Petrona\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:500;a:2:{s:6:\"family\";s:11:\"Philosopher\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:501;a:2:{s:6:\"family\";s:6:\"Piedra\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:502;a:2:{s:6:\"family\";s:13:\"Pinyon Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:503;a:2:{s:6:\"family\";s:10:\"Pirata One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:504;a:2:{s:6:\"family\";s:7:\"Plaster\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:505;a:2:{s:6:\"family\";s:4:\"Play\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:506;a:2:{s:6:\"family\";s:8:\"Playball\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:507;a:2:{s:6:\"family\";s:16:\"Playfair Display\";s:8:\"variants\";a:6:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:508;a:2:{s:6:\"family\";s:19:\"Playfair Display SC\";s:8:\"variants\";a:6:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:509;a:2:{s:6:\"family\";s:7:\"Podkova\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:510;a:2:{s:6:\"family\";s:10:\"Poiret One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:511;a:2:{s:6:\"family\";s:10:\"Poller One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:512;a:2:{s:6:\"family\";s:4:\"Poly\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:513;a:2:{s:6:\"family\";s:8:\"Pompiere\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:514;a:2:{s:6:\"family\";s:12:\"Pontano Sans\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:515;a:2:{s:6:\"family\";s:16:\"Port Lligat Sans\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:516;a:2:{s:6:\"family\";s:16:\"Port Lligat Slab\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:517;a:2:{s:6:\"family\";s:5:\"Prata\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:518;a:2:{s:6:\"family\";s:11:\"Preahvihear\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:519;a:2:{s:6:\"family\";s:14:\"Press Start 2P\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:520;a:2:{s:6:\"family\";s:14:\"Princess Sofia\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:521;a:2:{s:6:\"family\";s:8:\"Prociono\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:522;a:2:{s:6:\"family\";s:10:\"Prosto One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:523;a:2:{s:6:\"family\";s:7:\"Puritan\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:524;a:2:{s:6:\"family\";s:12:\"Purple Purse\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:525;a:2:{s:6:\"family\";s:6:\"Quando\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:526;a:2:{s:6:\"family\";s:8:\"Quantico\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:527;a:2:{s:6:\"family\";s:12:\"Quattrocento\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:528;a:2:{s:6:\"family\";s:17:\"Quattrocento Sans\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:529;a:2:{s:6:\"family\";s:9:\"Questrial\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:530;a:2:{s:6:\"family\";s:9:\"Quicksand\";s:8:\"variants\";a:3:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:531;a:2:{s:6:\"family\";s:14:\"Quintessential\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:532;a:2:{s:6:\"family\";s:7:\"Qwigley\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:533;a:2:{s:6:\"family\";s:15:\"Racing Sans One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:534;a:2:{s:6:\"family\";s:6:\"Radley\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:535;a:2:{s:6:\"family\";s:8:\"Rajdhani\";s:8:\"variants\";a:5:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";}}i:536;a:2:{s:6:\"family\";s:7:\"Raleway\";s:8:\"variants\";a:9:{i:100;s:4:\"Thin\";i:200;s:11:\"Extra Light\";i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";i:800;s:10:\"Extra Bold\";i:900;s:10:\"Ultra Bold\";}}i:537;a:2:{s:6:\"family\";s:12:\"Raleway Dots\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:538;a:2:{s:6:\"family\";s:10:\"Ramabhadra\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:539;a:2:{s:6:\"family\";s:8:\"Ramaraja\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:540;a:2:{s:6:\"family\";s:6:\"Rambla\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:541;a:2:{s:6:\"family\";s:12:\"Rammetto One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:542;a:2:{s:6:\"family\";s:8:\"Ranchers\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:543;a:2:{s:6:\"family\";s:6:\"Rancho\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:544;a:2:{s:6:\"family\";s:5:\"Ranga\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:545;a:2:{s:6:\"family\";s:9:\"Rationale\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:546;a:2:{s:6:\"family\";s:12:\"Ravi Prakash\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:547;a:2:{s:6:\"family\";s:9:\"Redressed\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:548;a:2:{s:6:\"family\";s:13:\"Reenie Beanie\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:549;a:2:{s:6:\"family\";s:7:\"Revalia\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:550;a:2:{s:6:\"family\";s:6:\"Ribeye\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:551;a:2:{s:6:\"family\";s:13:\"Ribeye Marrow\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:552;a:2:{s:6:\"family\";s:9:\"Righteous\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:553;a:2:{s:6:\"family\";s:6:\"Risque\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:554;a:2:{s:6:\"family\";s:6:\"Roboto\";s:8:\"variants\";a:12:{i:100;s:4:\"Thin\";s:9:\"100italic\";s:11:\"Thin Italic\";i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:500;s:6:\"Medium\";s:9:\"500italic\";s:13:\"Medium Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:555;a:2:{s:6:\"family\";s:16:\"Roboto Condensed\";s:8:\"variants\";a:6:{i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:556;a:2:{s:6:\"family\";s:11:\"Roboto Slab\";s:8:\"variants\";a:4:{i:100;s:4:\"Thin\";i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:557;a:2:{s:6:\"family\";s:9:\"Rochester\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:558;a:2:{s:6:\"family\";s:9:\"Rock Salt\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:559;a:2:{s:6:\"family\";s:7:\"Rokkitt\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:560;a:2:{s:6:\"family\";s:9:\"Romanesco\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:561;a:2:{s:6:\"family\";s:9:\"Ropa Sans\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:562;a:2:{s:6:\"family\";s:7:\"Rosario\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:563;a:2:{s:6:\"family\";s:8:\"Rosarivo\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:564;a:2:{s:6:\"family\";s:12:\"Rouge Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:565;a:2:{s:6:\"family\";s:9:\"Rozha One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:566;a:2:{s:6:\"family\";s:14:\"Rubik Mono One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:567;a:2:{s:6:\"family\";s:9:\"Rubik One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:568;a:2:{s:6:\"family\";s:4:\"Ruda\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";i:900;s:10:\"Ultra Bold\";}}i:569;a:2:{s:6:\"family\";s:6:\"Rufina\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:570;a:2:{s:6:\"family\";s:11:\"Ruge Boogie\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:571;a:2:{s:6:\"family\";s:6:\"Ruluko\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:572;a:2:{s:6:\"family\";s:10:\"Rum Raisin\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:573;a:2:{s:6:\"family\";s:14:\"Ruslan Display\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:574;a:2:{s:6:\"family\";s:9:\"Russo One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:575;a:2:{s:6:\"family\";s:6:\"Ruthie\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:576;a:2:{s:6:\"family\";s:3:\"Rye\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:577;a:2:{s:6:\"family\";s:10:\"Sacramento\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:578;a:2:{s:6:\"family\";s:4:\"Sail\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:579;a:2:{s:6:\"family\";s:5:\"Salsa\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:580;a:2:{s:6:\"family\";s:7:\"Sanchez\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:581;a:2:{s:6:\"family\";s:8:\"Sancreek\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:582;a:2:{s:6:\"family\";s:11:\"Sansita One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:583;a:2:{s:6:\"family\";s:6:\"Sarina\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:584;a:2:{s:6:\"family\";s:8:\"Sarpanch\";s:8:\"variants\";a:6:{s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";i:800;s:10:\"Extra Bold\";i:900;s:10:\"Ultra Bold\";}}i:585;a:2:{s:6:\"family\";s:7:\"Satisfy\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:586;a:2:{s:6:\"family\";s:5:\"Scada\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:587;a:2:{s:6:\"family\";s:12:\"Scheherazade\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:588;a:2:{s:6:\"family\";s:10:\"Schoolbell\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:589;a:2:{s:6:\"family\";s:14:\"Seaweed Script\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:590;a:2:{s:6:\"family\";s:9:\"Sevillana\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:591;a:2:{s:6:\"family\";s:11:\"Seymour One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:592;a:2:{s:6:\"family\";s:18:\"Shadows Into Light\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:593;a:2:{s:6:\"family\";s:22:\"Shadows Into Light Two\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:594;a:2:{s:6:\"family\";s:6:\"Shanti\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:595;a:2:{s:6:\"family\";s:5:\"Share\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:596;a:2:{s:6:\"family\";s:10:\"Share Tech\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:597;a:2:{s:6:\"family\";s:15:\"Share Tech Mono\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:598;a:2:{s:6:\"family\";s:9:\"Shojumaru\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:599;a:2:{s:6:\"family\";s:11:\"Short Stack\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:600;a:2:{s:6:\"family\";s:8:\"Siemreap\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:601;a:2:{s:6:\"family\";s:10:\"Sigmar One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:602;a:2:{s:6:\"family\";s:7:\"Signika\";s:8:\"variants\";a:4:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";}}i:603;a:2:{s:6:\"family\";s:16:\"Signika Negative\";s:8:\"variants\";a:4:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";}}i:604;a:2:{s:6:\"family\";s:9:\"Simonetta\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:605;a:2:{s:6:\"family\";s:7:\"Sintony\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:606;a:2:{s:6:\"family\";s:13:\"Sirin Stencil\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:607;a:2:{s:6:\"family\";s:8:\"Six Caps\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:608;a:2:{s:6:\"family\";s:7:\"Skranji\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:609;a:2:{s:6:\"family\";s:10:\"Slabo 13px\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:610;a:2:{s:6:\"family\";s:10:\"Slabo 27px\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:611;a:2:{s:6:\"family\";s:7:\"Slackey\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:612;a:2:{s:6:\"family\";s:6:\"Smokum\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:613;a:2:{s:6:\"family\";s:6:\"Smythe\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:614;a:2:{s:6:\"family\";s:7:\"Sniglet\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:800;s:10:\"Extra Bold\";}}i:615;a:2:{s:6:\"family\";s:7:\"Snippet\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:616;a:2:{s:6:\"family\";s:13:\"Snowburst One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:617;a:2:{s:6:\"family\";s:10:\"Sofadi One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:618;a:2:{s:6:\"family\";s:5:\"Sofia\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:619;a:2:{s:6:\"family\";s:10:\"Sonsie One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:620;a:2:{s:6:\"family\";s:16:\"Sorts Mill Goudy\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";}}i:621;a:2:{s:6:\"family\";s:15:\"Source Code Pro\";s:8:\"variants\";a:7:{i:200;s:11:\"Extra Light\";i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";i:900;s:10:\"Ultra Bold\";}}i:622;a:2:{s:6:\"family\";s:15:\"Source Sans Pro\";s:8:\"variants\";a:12:{i:200;s:11:\"Extra Light\";s:9:\"200italic\";N;i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:600;s:9:\"Semi Bold\";s:9:\"600italic\";s:16:\"Semi Bold Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:900;s:10:\"Ultra Bold\";s:9:\"900italic\";s:17:\"Ultra Bold Italic\";}}i:623;a:2:{s:6:\"family\";s:16:\"Source Serif Pro\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";}}i:624;a:2:{s:6:\"family\";s:13:\"Special Elite\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:625;a:2:{s:6:\"family\";s:10:\"Spicy Rice\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:626;a:2:{s:6:\"family\";s:9:\"Spinnaker\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:627;a:2:{s:6:\"family\";s:6:\"Spirax\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:628;a:2:{s:6:\"family\";s:10:\"Squada One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:629;a:2:{s:6:\"family\";s:20:\"Sree Krushnadevaraya\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:630;a:2:{s:6:\"family\";s:9:\"Stalemate\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:631;a:2:{s:6:\"family\";s:13:\"Stalinist One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:632;a:2:{s:6:\"family\";s:15:\"Stardos Stencil\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:633;a:2:{s:6:\"family\";s:21:\"Stint Ultra Condensed\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:634;a:2:{s:6:\"family\";s:20:\"Stint Ultra Expanded\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:635;a:2:{s:6:\"family\";s:5:\"Stoke\";s:8:\"variants\";a:2:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";}}i:636;a:2:{s:6:\"family\";s:6:\"Strait\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:637;a:2:{s:6:\"family\";s:19:\"Sue Ellen Francisco\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:638;a:2:{s:6:\"family\";s:9:\"Sunshiney\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:639;a:2:{s:6:\"family\";s:16:\"Supermercado One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:640;a:2:{s:6:\"family\";s:7:\"Suranna\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:641;a:2:{s:6:\"family\";s:9:\"Suravaram\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:642;a:2:{s:6:\"family\";s:11:\"Suwannaphum\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:643;a:2:{s:6:\"family\";s:18:\"Swanky and Moo Moo\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:644;a:2:{s:6:\"family\";s:9:\"Syncopate\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:645;a:2:{s:6:\"family\";s:9:\"Tangerine\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:646;a:2:{s:6:\"family\";s:6:\"Taprom\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:647;a:2:{s:6:\"family\";s:5:\"Tauri\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:648;a:2:{s:6:\"family\";s:4:\"Teko\";s:8:\"variants\";a:5:{i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:600;s:9:\"Semi Bold\";i:700;s:4:\"Bold\";}}i:649;a:2:{s:6:\"family\";s:5:\"Telex\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:650;a:2:{s:6:\"family\";s:18:\"Tenali Ramakrishna\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:651;a:2:{s:6:\"family\";s:10:\"Tenor Sans\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:652;a:2:{s:6:\"family\";s:11:\"Text Me One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:653;a:2:{s:6:\"family\";s:18:\"The Girl Next Door\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:654;a:2:{s:6:\"family\";s:6:\"Tienne\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";i:900;s:10:\"Ultra Bold\";}}i:655;a:2:{s:6:\"family\";s:7:\"Timmana\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:656;a:2:{s:6:\"family\";s:5:\"Tinos\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:657;a:2:{s:6:\"family\";s:9:\"Titan One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:658;a:2:{s:6:\"family\";s:13:\"Titillium Web\";s:8:\"variants\";a:11:{i:200;s:11:\"Extra Light\";s:9:\"200italic\";N;i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:600;s:9:\"Semi Bold\";s:9:\"600italic\";s:16:\"Semi Bold Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";i:900;s:10:\"Ultra Bold\";}}i:659;a:2:{s:6:\"family\";s:11:\"Trade Winds\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:660;a:2:{s:6:\"family\";s:7:\"Trocchi\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:661;a:2:{s:6:\"family\";s:7:\"Trochut\";s:8:\"variants\";a:3:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";}}i:662;a:2:{s:6:\"family\";s:7:\"Trykker\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:663;a:2:{s:6:\"family\";s:10:\"Tulpen One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:664;a:2:{s:6:\"family\";s:6:\"Ubuntu\";s:8:\"variants\";a:8:{i:300;s:5:\"Light\";s:9:\"300italic\";s:12:\"Light Italic\";s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:500;s:6:\"Medium\";s:9:\"500italic\";s:13:\"Medium Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:665;a:2:{s:6:\"family\";s:16:\"Ubuntu Condensed\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:666;a:2:{s:6:\"family\";s:11:\"Ubuntu Mono\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:667;a:2:{s:6:\"family\";s:5:\"Ultra\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:668;a:2:{s:6:\"family\";s:14:\"Uncial Antiqua\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:669;a:2:{s:6:\"family\";s:8:\"Underdog\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:670;a:2:{s:6:\"family\";s:9:\"Unica One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:671;a:2:{s:6:\"family\";s:14:\"UnifrakturCook\";s:8:\"variants\";a:1:{i:700;s:4:\"Bold\";}}i:672;a:2:{s:6:\"family\";s:18:\"UnifrakturMaguntia\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:673;a:2:{s:6:\"family\";s:7:\"Unkempt\";s:8:\"variants\";a:2:{s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:674;a:2:{s:6:\"family\";s:6:\"Unlock\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:675;a:2:{s:6:\"family\";s:4:\"Unna\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:676;a:2:{s:6:\"family\";s:5:\"VT323\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:677;a:2:{s:6:\"family\";s:11:\"Vampiro One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:678;a:2:{s:6:\"family\";s:6:\"Varela\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:679;a:2:{s:6:\"family\";s:12:\"Varela Round\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:680;a:2:{s:6:\"family\";s:11:\"Vast Shadow\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:681;a:2:{s:6:\"family\";s:12:\"Vesper Libre\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";i:500;s:6:\"Medium\";i:700;s:4:\"Bold\";i:900;s:10:\"Ultra Bold\";}}i:682;a:2:{s:6:\"family\";s:5:\"Vibur\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:683;a:2:{s:6:\"family\";s:8:\"Vidaloka\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:684;a:2:{s:6:\"family\";s:4:\"Viga\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:685;a:2:{s:6:\"family\";s:5:\"Voces\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:686;a:2:{s:6:\"family\";s:7:\"Volkhov\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:687;a:2:{s:6:\"family\";s:8:\"Vollkorn\";s:8:\"variants\";a:4:{s:7:\"regular\";s:6:\"Normal\";s:6:\"italic\";s:13:\"Normal Italic\";i:700;s:4:\"Bold\";s:9:\"700italic\";s:11:\"Bold Italic\";}}i:688;a:2:{s:6:\"family\";s:8:\"Voltaire\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:689;a:2:{s:6:\"family\";s:23:\"Waiting for the Sunrise\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:690;a:2:{s:6:\"family\";s:8:\"Wallpoet\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:691;a:2:{s:6:\"family\";s:15:\"Walter Turncoat\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:692;a:2:{s:6:\"family\";s:6:\"Warnes\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:693;a:2:{s:6:\"family\";s:9:\"Wellfleet\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:694;a:2:{s:6:\"family\";s:9:\"Wendy One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:695;a:2:{s:6:\"family\";s:8:\"Wire One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:696;a:2:{s:6:\"family\";s:17:\"Yanone Kaffeesatz\";s:8:\"variants\";a:4:{i:200;s:11:\"Extra Light\";i:300;s:5:\"Light\";s:7:\"regular\";s:6:\"Normal\";i:700;s:4:\"Bold\";}}i:697;a:2:{s:6:\"family\";s:10:\"Yellowtail\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:698;a:2:{s:6:\"family\";s:10:\"Yeseva One\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:699;a:2:{s:6:\"family\";s:10:\"Yesteryear\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}i:700;a:2:{s:6:\"family\";s:6:\"Zeyada\";s:8:\"variants\";a:1:{s:7:\"regular\";s:6:\"Normal\";}}}','yes'),(140,'optionsframework','a:1:{s:2:\"id\";s:24:\"accesspress_parallax_pro\";}','yes'),(144,'accesspress_parallax_count','a:6:{i:0;i:9;i:1;i:55;i:2;i:18;i:3;i:63;i:4;i:35;i:5;i:77;}','yes'),(150,'accesspress_parallax_pro','a:178:{s:15:\"enable_parallax\";s:1:\"1\";s:10:\"skin_color\";s:7:\"#E5623B\";s:11:\"theme_color\";s:7:\"#709dc4\";s:14:\"website_layout\";s:4:\"wide\";s:22:\"page_background_option\";s:4:\"none\";s:21:\"page_background_image\";a:7:{s:5:\"color\";N;s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:8:\"position\";s:10:\"top center\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";s:7:\"overlay\";s:10:\"No Overlay\";}s:21:\"page_background_color\";s:7:\"#FFFFFF\";s:23:\"page_background_pattern\";s:8:\"pattern1\";s:16:\"enable_animation\";s:1:\"1\";s:16:\"enable_preloader\";s:1:\"1\";s:16:\"select_preloader\";s:7:\"loader9\";s:8:\"fav_icon\";s:74:\"http://www.mytwincity.org/wp-content/uploads/2015/07/TC-LOGO-ICON-small.jpg\";s:18:\"share_publisher_id\";s:19:\"ra-536530f652c04fc6\";s:6:\"tab_id\";s:16:\"#options-group-6\";s:13:\"show_top_menu\";s:1:\"0\";s:17:\"top_header_height\";i:50;s:19:\"top_header_bg_color\";s:7:\"#000000\";s:20:\"topheader_typography\";a:4:{s:4:\"size\";s:4:\"13px\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:7:\"regular\";s:5:\"color\";s:7:\"#ffffff\";}s:27:\"top_header_link_hover_color\";s:7:\"#709dc4\";s:11:\"header_text\";s:0:\"\";s:13:\"header_layout\";s:9:\"logo-side\";s:15:\"header_position\";s:10:\"pos-bottom\";s:13:\"sticky_header\";s:1:\"1\";s:13:\"header_shadow\";s:1:\"0\";s:15:\"header_bg_color\";s:7:\"#FFFFFF\";s:22:\"main_header_bg_opacity\";s:3:\"0.5\";s:4:\"logo\";s:74:\"http://www.mytwincity.org/wp-content/uploads/2015/07/TCB-BANNER-WEBSITE.jpg\";s:15:\"logo_top_margin\";i:0;s:16:\"logo_left_margin\";i:0;s:17:\"logo_right_margin\";i:0;s:18:\"logo_bottom_margin\";i:0;s:14:\"favicon_iphone\";s:74:\"http://www.mytwincity.org/wp-content/uploads/2015/07/TC-LOGO-ICON-small.jpg\";s:21:\"favicon_iphone_retina\";s:74:\"http://www.mytwincity.org/wp-content/uploads/2015/07/TC-LOGO-ICON-small.jpg\";s:12:\"favicon_ipad\";s:74:\"http://www.mytwincity.org/wp-content/uploads/2015/07/TC-LOGO-ICON-small.jpg\";s:19:\"favicon_ipad_retina\";s:74:\"http://www.mytwincity.org/wp-content/uploads/2015/07/TC-LOGO-ICON-small.jpg\";s:16:\"alternative_menu\";s:1:\"0\";s:13:\"parallax_menu\";s:1:\"0\";s:9:\"home_text\";s:4:\"Home\";s:13:\"scroll_effect\";s:5:\"swing\";s:12:\"scroll_speed\";s:4:\"3000\";s:15:\"menu_typography\";a:4:{s:4:\"size\";s:4:\"22px\";s:4:\"face\";s:9:\"Ropa Sans\";s:5:\"style\";s:7:\"regular\";s:5:\"color\";s:7:\"#000000\";}s:16:\"menu_hover_color\";s:7:\"#709dc4\";s:19:\"menu_text_transform\";s:9:\"uppercase\";s:15:\"menu_top_margin\";i:0;s:16:\"menu_left_margin\";i:0;s:17:\"menu_right_margin\";i:0;s:18:\"menu_bottom_margin\";i:0;s:11:\"show_slider\";s:1:\"1\";s:11:\"slider_type\";s:10:\"rev_slider\";s:15:\"slider_category\";s:1:\"5\";s:14:\"rev_short_code\";s:23:\"[rev_slider homeslider]\";s:18:\"slider_full_window\";s:1:\"0\";s:14:\"slider_overlay\";s:1:\"0\";s:10:\"show_pager\";s:1:\"1\";s:13:\"show_controls\";s:1:\"1\";s:15:\"auto_transition\";s:1:\"1\";s:17:\"slider_transition\";s:4:\"fade\";s:12:\"slider_speed\";s:4:\"6000\";s:12:\"slider_pause\";s:4:\"6000\";s:12:\"show_caption\";s:1:\"0\";s:16:\"parallax_section\";a:6:{i:9;a:15:{s:4:\"page\";s:4:\"1705\";s:12:\"header_color\";s:7:\"#333333\";s:10:\"font_color\";s:7:\"#709dc4\";s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"image\";s:0:\"\";s:6:\"layout\";s:16:\"default_template\";s:8:\"category\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"top left\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";s:7:\"effects\";s:4:\"none\";s:10:\"show_title\";s:1:\"1\";s:12:\"show_in_menu\";s:1:\"0\";s:7:\"overlay\";s:4:\"none\";}i:55;a:15:{s:4:\"page\";s:4:\"1729\";s:12:\"header_color\";s:7:\"#333333\";s:10:\"font_color\";s:7:\"#ffffff\";s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"image\";s:67:\"http://www.mytwincity.org/wp-content/uploads/2015/10/coffeebeans.jpg\";s:6:\"layout\";s:15:\"action_template\";s:8:\"category\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:10:\"attachment\";s:5:\"fixed\";s:4:\"size\";s:5:\"cover\";s:7:\"effects\";s:8:\"parallax\";s:10:\"show_title\";s:1:\"1\";s:12:\"show_in_menu\";s:1:\"0\";s:7:\"overlay\";s:14:\"black-light-bg\";}i:18;a:15:{s:4:\"page\";s:2:\"11\";s:12:\"header_color\";s:7:\"#709dc4\";s:10:\"font_color\";s:7:\"#333333\";s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"image\";s:0:\"\";s:6:\"layout\";s:19:\"logoslider_template\";s:8:\"category\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"top left\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";s:7:\"effects\";s:4:\"none\";s:10:\"show_title\";s:1:\"0\";s:12:\"show_in_menu\";s:1:\"0\";s:7:\"overlay\";s:4:\"none\";}i:63;a:15:{s:4:\"page\";s:4:\"1212\";s:12:\"header_color\";s:7:\"#333333\";s:10:\"font_color\";s:7:\"#709dc4\";s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"image\";s:0:\"\";s:6:\"layout\";s:18:\"googlemap_template\";s:8:\"category\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"top left\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";s:7:\"effects\";s:4:\"none\";s:10:\"show_title\";s:0:\"\";s:12:\"show_in_menu\";s:1:\"0\";s:7:\"overlay\";s:4:\"none\";}i:35;a:15:{s:4:\"page\";s:4:\"1674\";s:12:\"header_color\";s:7:\"#333333\";s:10:\"font_color\";s:7:\"#709dc4\";s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"image\";s:0:\"\";s:6:\"layout\";s:15:\"action_template\";s:8:\"category\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"top left\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";s:7:\"effects\";s:4:\"none\";s:10:\"show_title\";s:1:\"0\";s:12:\"show_in_menu\";s:1:\"0\";s:7:\"overlay\";s:4:\"none\";}i:77;a:15:{s:4:\"page\";s:4:\"1381\";s:12:\"header_color\";s:7:\"#ffffff\";s:10:\"font_color\";s:7:\"#dd9e40\";s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"image\";s:76:\"http://www.mytwincity.org/wp-content/uploads/2015/08/DeathtoStock_Medium6.jpg\";s:6:\"layout\";s:16:\"default_template\";s:8:\"category\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:10:\"attachment\";s:5:\"fixed\";s:4:\"size\";s:5:\"cover\";s:7:\"effects\";s:8:\"parallax\";s:10:\"show_title\";s:1:\"0\";s:12:\"show_in_menu\";s:1:\"0\";s:7:\"overlay\";s:14:\"black-light-bg\";}}s:15:\"body_typography\";a:4:{s:4:\"size\";s:4:\"18px\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:7:\"regular\";s:5:\"color\";s:7:\"#444444\";}s:13:\"h1_typography\";a:4:{s:4:\"size\";s:4:\"44px\";s:4:\"face\";s:9:\"Russo One\";s:5:\"style\";s:7:\"regular\";s:5:\"color\";s:7:\"#333333\";}s:17:\"h1_text_transform\";s:9:\"uppercase\";s:13:\"h2_typography\";a:4:{s:4:\"size\";s:4:\"28px\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:7:\"regular\";s:5:\"color\";s:7:\"#333333\";}s:17:\"h2_text_transform\";s:9:\"uppercase\";s:13:\"h3_typography\";a:4:{s:4:\"size\";s:4:\"24px\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:7:\"regular\";s:5:\"color\";s:7:\"#333333\";}s:17:\"h3_text_transform\";s:9:\"uppercase\";s:13:\"h4_typography\";a:4:{s:4:\"size\";s:4:\"22px\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:7:\"regular\";s:5:\"color\";s:7:\"#333333\";}s:17:\"h4_text_transform\";s:9:\"uppercase\";s:13:\"h5_typography\";a:4:{s:4:\"size\";s:4:\"20px\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:7:\"regular\";s:5:\"color\";s:7:\"#333333\";}s:17:\"h5_text_transform\";s:9:\"uppercase\";s:13:\"h6_typography\";a:4:{s:4:\"size\";s:4:\"18px\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:7:\"regular\";s:5:\"color\";s:7:\"#333333\";}s:17:\"h6_text_transform\";s:9:\"uppercase\";s:22:\"widgettitle_typography\";a:4:{s:4:\"size\";s:4:\"18px\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:7:\"regular\";s:5:\"color\";s:7:\"#333333\";}s:27:\"widget_title_text_transform\";s:9:\"uppercase\";s:16:\"archive_title_bg\";s:0:\"\";s:22:\"archive_title_bg_color\";s:7:\"#FFFFFF\";s:23:\"archive_title_bg_option\";s:1:\"1\";s:19:\"archive_title_color\";s:7:\"#000000\";s:9:\"post_date\";s:1:\"0\";s:11:\"post_author\";s:1:\"0\";s:11:\"post_footer\";s:1:\"0\";s:17:\"exclude_from_blog\";a:2:{i:4;b:0;i:5;s:1:\"1\";}s:14:\"read_more_text\";s:0:\"\";s:13:\"read_all_text\";s:0:\"\";s:21:\"continue_reading_text\";s:0:\"\";s:13:\"post_title_bg\";s:0:\"\";s:19:\"post_title_bg_color\";s:7:\"#FFFFFF\";s:20:\"post_title_bg_option\";s:1:\"1\";s:16:\"post_title_color\";s:7:\"#000000\";s:16:\"single_post_date\";s:1:\"1\";s:18:\"single_post_author\";s:1:\"0\";s:19:\"post_featured_image\";s:1:\"1\";s:18:\"single_post_footer\";s:1:\"0\";s:22:\"single_post_pagination\";s:1:\"0\";s:12:\"social_share\";s:1:\"1\";s:13:\"page_title_bg\";s:0:\"\";s:19:\"page_title_bg_color\";s:7:\"#FFFFFF\";s:20:\"page_title_bg_option\";s:1:\"1\";s:16:\"page_title_color\";s:7:\"#709dc4\";s:19:\"page_featured_image\";s:1:\"1\";s:13:\"page_comments\";s:1:\"0\";s:14:\"portfolio_slug\";s:9:\"portfolio\";s:26:\"enable_fullwidth_portfolio\";s:1:\"0\";s:15:\"portfolio_space\";s:1:\"1\";s:14:\"portfolio_char\";i:180;s:22:\"portfolio_grid_columns\";s:8:\"column-4\";s:15:\"portfolio_style\";s:6:\"style1\";s:13:\"portfolio_all\";s:3:\"All\";s:27:\"enable_fullwidth_portfolio1\";s:1:\"1\";s:16:\"portfolio_space1\";s:1:\"1\";s:15:\"portfolio_char1\";i:180;s:17:\"portfolio_layout1\";s:4:\"grid\";s:23:\"portfolio_grid_columns1\";s:8:\"column-4\";s:16:\"portfolio_style1\";s:6:\"style1\";s:14:\"portfolio_all1\";s:3:\"All\";s:17:\"enable_breadcrumb\";s:1:\"0\";s:24:\"enable_breadcrumb_mobile\";s:1:\"0\";s:20:\"breadcrumb_seperator\";s:1:\"/\";s:20:\"breadcrumb_home_text\";s:4:\"Home\";s:11:\"show_social\";s:1:\"1\";s:15:\"social_bg_color\";s:7:\"#709dc4\";s:19:\"social_hov_bg_color\";s:7:\"#000000\";s:20:\"social_icon_position\";s:4:\"left\";s:8:\"facebook\";s:39:\"http://www.facebook.com/twincitybaptist\";s:7:\"twitter\";s:38:\"http://www.twitter.com/twincitybaptist\";s:11:\"google_plus\";s:0:\"\";s:7:\"youtube\";s:0:\"\";s:9:\"pinterest\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:6:\"flickr\";s:0:\"\";s:5:\"vimeo\";s:0:\"\";s:9:\"instagram\";s:0:\"\";s:8:\"dribbble\";s:0:\"\";s:7:\"myspace\";s:0:\"\";s:10:\"foursquare\";s:0:\"\";s:6:\"tumblr\";s:0:\"\";s:9:\"wordpress\";s:0:\"\";s:3:\"rss\";s:0:\"\";s:9:\"delicious\";s:0:\"\";s:6:\"lastfm\";s:0:\"\";s:6:\"github\";s:0:\"\";s:10:\"soundcloud\";s:0:\"\";s:11:\"stumbleupon\";s:0:\"\";s:5:\"skype\";s:0:\"\";s:14:\"enable_partner\";s:1:\"1\";s:15:\"partner_logo_no\";i:6;s:18:\"partner_logo_width\";i:180;s:12:\"partner_logo\";a:6:{i:1;a:2:{s:4:\"link\";s:39:\"http://www.facebook.com/twincitybaptist\";s:5:\"image\";s:62:\"http://www.mytwincity.org/wp-content/uploads/2015/07/fblogo.png\";}i:2;a:2:{s:4:\"link\";s:38:\"http://www.twitter.com/twincitybaptist\";s:5:\"image\";s:73:\"http://www.mytwincity.org/wp-content/uploads/2015/07/Twitter_logo_blue.png\";}i:3;a:2:{s:4:\"link\";s:32:\"http://www.twincitychristian.com\";s:5:\"image\";s:65:\"http://www.mytwincity.org/wp-content/uploads/2015/07/ERVEN-555.jpg\";}i:4;a:2:{s:4:\"link\";s:24:\"http://www.wcmxradio.com\";s:5:\"image\";s:75:\"http://www.mytwincity.org/wp-content/uploads/2015/09/power-logo-color-01.png\";}i:5;a:2:{s:4:\"link\";s:37:\"http://mytcbonline.churchonline.org/#\";s:5:\"image\";s:116:\"http://www.mytwincity.org/wp-content/uploads/2015/09/church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6.jpg\";}i:6;a:2:{s:4:\"link\";s:58:\"http://wwwtwincitybaptistcom.sermon.net/main/main/20477922\";s:5:\"image\";s:67:\"http://www.mytwincity.org/wp-content/uploads/2015/09/sermon.net_.jpg\";}}s:16:\"enable_googlemap\";s:1:\"1\";s:12:\"map_latitude\";s:9:\"42.585597\";s:13:\"map_longitude\";s:10:\"-71.753363\";s:10:\"map_height\";s:3:\"600\";s:8:\"map_zoom\";s:2:\"14\";s:8:\"map_type\";s:7:\"ROADMAP\";s:13:\"map_scrolling\";s:1:\"0\";s:12:\"map_controls\";s:1:\"1\";s:10:\"pin_marker\";s:1:\"1\";s:13:\"contact_title\";s:17:\"Twin City Baptist\";s:13:\"contact_phone\";s:14:\"(978) 582-4901\";s:13:\"contact_email\";s:21:\"pastor@mytwincity.org\";s:15:\"contact_website\";s:14:\"mytwincity.org\";s:15:\"contact_address\";s:38:\"194 Electric Ave.\r\nLunenburg, MA 01462\";s:14:\"contact_detail\";s:0:\"\";s:15:\"show_top_footer\";s:1:\"1\";s:13:\"top_footer_bg\";s:7:\"#424242\";s:22:\"footertitle_typography\";a:4:{s:4:\"size\";s:4:\"24px\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:3:\"700\";s:5:\"color\";s:7:\"#FFFFFF\";}s:27:\"footer_title_text_transform\";s:9:\"uppercase\";s:21:\"top_footer_font_color\";s:7:\"#EEEEEE\";s:21:\"top_footer_link_color\";s:7:\"#999999\";s:16:\"bottom_footer_bg\";s:7:\"#383838\";s:24:\"bottom_footer_text_color\";s:7:\"#d6d6d6\";s:15:\"copy_right_text\";s:108:\"2015 © Twin City Baptist Church. All Rights Reserved. 194 Electric Ave. Lunenburg, MA, 01462 (978) 582-4901\";s:17:\"right_footer_text\";s:22:\"pastor@mytwincity.org \";s:21:\"show_social_on_footer\";s:1:\"0\";s:10:\"custom_css\";s:0:\"\";s:9:\"custom_js\";s:0:\"\";}','yes'),(170,'widget_accesspress_contact_info','a:2:{i:2;a:6:{s:18:\"contact_info_title\";s:12:\"Contact Info\";s:18:\"contact_info_phone\";s:14:\"(978) 582-4901\";s:18:\"contact_info_email\";s:21:\"pastor@mytwincity.org\";s:20:\"contact_info_website\";s:18:\"www.mytwincity.org\";s:20:\"contact_info_address\";s:38:\"194 Electric Ave.\r\nLunenburg, MA 01462\";s:17:\"contact_info_time\";s:24:\"8:00-4:00 pm\r\nSat Closed\";}s:12:\"_multiwidget\";i:1;}','yes'),(171,'widget_facebook_lie_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(172,'widget_accesspress_pro_flickr_stream','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(173,'widget_accesspress_pro_icon_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(174,'widget_accesspress_image','a:3:{i:1;a:0:{}i:2;a:4:{s:11:\"image_title\";s:0:\"\";s:10:\"image_size\";s:6:\"medium\";s:11:\"image_align\";s:13:\"ap-align-left\";s:5:\"image\";s:74:\"http://www.mytwincity.org/wp-content/uploads/2015/07/TCB-BANNER-WEBSITE.jpg\";}s:12:\"_multiwidget\";i:1;}','yes'),(175,'widget_accesspress_pro_media_embed','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(176,'widget_accesspress_pro_preview_post','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(177,'widget_accesspress_pro_pricing','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(178,'widget_accesspress_pro_progress_bar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(179,'widget_accesspress_pro_social_icons','a:3:{i:1;a:0:{}i:2;a:14:{s:12:\"widget_title\";s:14:\"Like/Follow Us\";s:14:\"twitter-square\";s:38:\"http://www.twitter.com/twincitybaptist\";s:15:\"facebook-square\";s:39:\"http://www.facebook.com/twincitybaptist\";s:15:\"linkedin-square\";s:0:\"\";s:18:\"google-plus-square\";s:0:\"\";s:16:\"pinterest-square\";s:0:\"\";s:14:\"youtube-square\";s:0:\"\";s:12:\"vimeo-square\";s:0:\"\";s:6:\"flickr\";s:0:\"\";s:11:\"stumbleupon\";s:0:\"\";s:13:\"tumblr-square\";s:0:\"\";s:9:\"instagram\";s:0:\"\";s:5:\"skype\";s:0:\"\";s:10:\"soundcloud\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(180,'widget_accesspress_pro_stat_counter','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(181,'widget_accesspress_pro_team','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(182,'widget_accesspress_pro_testimonial','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(183,'widget_accesspress_pro_accordion','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(184,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(185,'widget_nav_menu','a:7:{i:1;a:0:{}i:3;a:1:{s:8:\"nav_menu\";i:2;}i:4;a:1:{s:8:\"nav_menu\";i:40;}i:5;a:2:{s:5:\"title\";s:5:\"About\";s:8:\"nav_menu\";i:41;}i:6;a:2:{s:5:\"title\";s:5:\"Media\";s:8:\"nav_menu\";i:42;}i:7;a:2:{s:5:\"title\";s:10:\"Contact Us\";s:8:\"nav_menu\";i:43;}s:12:\"_multiwidget\";i:1;}','yes'),(186,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(188,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(205,'siteorigin_panels_initial_version','2.1.4','no'),(206,'siteorigin_panels_settings','a:0:{}','yes'),(208,'revslider_checktables','1','yes'),(209,'revslider-static-css','.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n@import url(http://fonts.googleapis.com/css?family=Dancing+Script);\n@import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,700,600);\n\n.down-button a {color:#fff !important;\n width: 36px !important;\n height: 36px!important ;\n background:rgba(0,0,0,0.15);\n border-radius:90%;}\n.down-button i {margin-left: 10px;}\n.down-button a:hover {background:rgba(224,64,40,0.75);}\n.tp-caption.big_caption_3,\n.tp-caption.big_caption_2,\n.tp-caption.big_caption_4,\n.tp-caption.big_caption_5,\n.tp-caption.big_caption_6,\n.tp-caption.big_caption_7,\n.tp-caption.big_caption_8,\n.tp-caption.big_caption_9,\n.tp-caption.big_caption_10,\n.tp-caption.big_caption_11,\n.tp-caption.big_caption_13,\n.tp-caption.big_caption_15,\n.tp-caption.big_caption_3_white,\n.tp-caption.big_caption_2_white,\n.tp-caption.big_caption_4_white{\n position: absolute; \n color: #e14f4f; \n text-shadow: none; \n \n font-size: 80px; \n line-height: 80px; \n font-family: \"Open Sans\";\n border-width: 0px; \n border-style: none; \n \n \n }\n .tp-caption.big_caption_2, .tp-caption.big_caption_2_white {font-size:48px;}\n.tp-caption.big_caption_4, .tp-caption.big_caption_4_white {font-size:124px; color:#fff;}\n.tp-caption.big_caption_5 {line-height:24px;font-size:15px;color:#999;}\n.tp-caption.big_caption_6 {font-size:120px;color:#fff;}\n.tp-caption.big_caption_7, .tp-caption.big_caption_7_red {font-size:72px;color:#fff;font-weight:bold;}\n.tp-caption.big_caption_7_red {background:#E04028;padding:10px 20px;line-height:72px;}\n.tp-caption.big_caption_8 {font-size:24px;color:#fff;font-family: \"Open Sans\";}\n.tp-caption.big_caption_9 {font-size:50px;color:#333;}\n.tp-caption.big_caption_10 {font-size:55px;color:#333;font-weight:bold;}\n.tp-caption.big_caption_11 {font-size:24px;color:#fff;background:#379BDE;background:rgba(55,155,222,0.8);padding:10px 20px;line-height:30px;}\n.tp-caption.big_caption_12 {font-size:212px;color:#333;}\n.tp-caption.big_caption_13 {font-size:36px;font-weight:800;color:#fff;}\n.tp-caption.big_caption_15 {font-size:30px;font-weight:800;color:#fff;}\n.tp-caption.big_caption_14 {line-height:30px;font-size:16px;font-weight:700;color:#fff;text-transform:uppercase;}\n.tp-caption.handwriting, .tp-caption.handwriting_white{\n position: absolute; \n color: #fff; \n text-shadow: none; \n \n font-size: 144px; \n line-height: 44px; \n font-family: \"Dancing Script\";\n padding:15px 40px 15px 40px;\n margin: 0px; \n border-width: 0px; \n border-style: none; \n \n \n }\n\n.tp-caption.store_button a {\n position: absolute; \n color: #fff; \n text-shadow: none; \n height:19px;\n font-size: 18px; \n line-height: 18px; \n font-weight:bold;\n font-family: \"Open Sans\";\n padding:20px 35px 20px 35px !important;\n margin: 0px; \n cursor:pointer;\n background:#E04028;\n border-radius:5px;\n border-bottom:4px solid #cd2e16;\n \n}\n.tp-caption.store_button_white a{position: absolute; \n color: #fff; \n text-shadow: none;\n font-size:14px;\n font-weight:normal;\n padding:15px 35px !important;\n background:none;\n border:2px solid #fff;\n border-radius:40px ;\n height:24px !important;\n }\n.tp-caption.store_button_white a:hover{\n background:#E04028;\n \n }\n.tp-caption.store_button a, .tp-caption.store_button_white a {\n color: #fff !important; \n}\n.tp-caption.store_button_white a {color:#fff !important;}\n.tp-caption.store_button a:hover {background:#cd2e16;border-bottom:4px solid #E04028;}\n\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n\n.tp-caption.big_caption_3_white,\n.tp-caption.big_caption_2_white,\n.tp-caption.big_caption_4_white,\n.tp-caption.handwriting_white{\n color:#fff;\n \n }\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n\n.largeredbtn { \nfont-family: \"Raleway\", sans-serif;\nfont-weight: 900;\nfont-size: 16px;\nline-height: 60px;\ncolor: #fff !important;\ntext-decoration: none;\npadding-left: 40px;\npadding-right: 80px;\npadding-top: 22px;\npadding-bottom: 22px;\nbackground: rgb(234,91,31); /* Old browsers */\nbackground: -moz-linear-gradient(top, rgba(234,91,31,1) 0%, rgba(227,58,12,1) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(234,91,31,1)), color-stop(100%,rgba(227,58,12,1))); /* Chrome,Safari4+ */\nbackground: -webkit-linear-gradient(top, rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-linear-gradient(top, rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); /* Opera 11.10+ */\nbackground: -ms-linear-gradient(top, rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); /* IE10+ */\nbackground: linear-gradient(to bottom, rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#ea5b1f\', endColorstr=\'#e33a0c\',GradientType=0 ); /* IE6-9 */\n}\n\n.largeredbtn:hover {\nbackground: rgb(227,58,12); /* Old browsers */\nbackground: -moz-linear-gradient(top, rgba(227,58,12,1) 0%, rgba(234,91,31,1) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(227,58,12,1)), color-stop(100%,rgba(234,91,31,1))); /* Chrome,Safari4+ */\nbackground: -webkit-linear-gradient(top, rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-linear-gradient(top, rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); /* Opera 11.10+ */\nbackground: -ms-linear-gradient(top, rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); /* IE10+ */\nbackground: linear-gradient(to bottom, rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#e33a0c\', endColorstr=\'#ea5b1f\',GradientType=0 ); /* IE6-9 */ \n}\n\n.fullrounded img {\n -webkit-border-radius: 400px;\n-moz-border-radius: 400px;\nborder-radius: 400px; \n }','yes'),(210,'revslider-update-check-short','1444067839','yes'),(212,'recently_activated','a:1:{s:25:\"quickiebar/quickiebar.php\";i:1443645849;}','yes'),(215,'revslider-valid-notice','false','yes'),(458,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(962,'category_children','a:0:{}','yes'),(963,'portfolio-category_children','a:0:{}','yes'),(1344,'revslider-latest-version','5.0.9','yes'),(1413,'wpcf7','a:1:{s:7:\"version\";s:3:\"4.3\";}','yes'),(1457,'db_upgraded','','yes'),(1460,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"mr.eaton14@gmail.com\";s:7:\"version\";s:5:\"4.2.5\";s:9:\"timestamp\";i:1442851201;}','yes'),(1502,'wpgmza_xml_location','{uploads_dir}/wp-google-maps/','yes'),(1503,'wpgmza_xml_url','{uploads_url}/wp-google-maps/','yes'),(1504,'wpgmza_db_version','6.2.1','yes'),(1505,'wpgmaps_current_version','6.2.1','yes'),(1506,'WPGMZA_OTHER_SETTINGS','a:1:{s:27:\"wpgmza_settings_marker_pull\";s:1:\"0\";}','yes'),(1515,'WPGMZA_FIRST_TIME','6.2.1','yes'),(1531,'widget_siteorigin-panels-builder','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1532,'widget_siteorigin-panels-post-content','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1533,'widget_siteorigin-panels-postloop','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1534,'widget_rev-slider-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1535,'widget_black-studio-tinymce','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(2066,'qb_attribution','hidden','yes'),(2067,'qb_visibility','everywhere','yes'),(2068,'qb_email','mr.eaton14@gmail.com','yes'),(2069,'qb_fixed_compatibility','off','yes'),(2070,'qb_debug_mode','off','yes'),(2071,'qb_page_visibility','show','yes'),(2072,'qb_post_visibility','show','yes'),(2073,'qb_page_exceptions','false','yes'),(2074,'qb_post_exceptions','false','yes'),(2075,'qb_device_visibility','all','yes'),(2076,'qb_category_visibility','show','yes'),(2077,'qb_category_exceptions','false','yes'),(2078,'qb_archive_page_visibility','hide','yes'),(2079,'qb_bar_zindex','100','yes'),(2080,'qb_db_version','1.0.0','yes'),(2081,'qb_version','1.8.0','yes'),(2094,'qb_setup_complete','1','yes'),(3075,'bp-deactivated-components','a:0:{}','yes'),(3076,'bb-config-location','/Applications/MAMP/mysites/tcbsite/bb-config.php','yes'),(3077,'bp-xprofile-base-group-name','Base','yes'),(3078,'bp-xprofile-fullname-field-name','Name','yes'),(3079,'bp-blogs-first-install','','yes'),(3080,'bp-disable-profile-sync','0','yes'),(3081,'hide-loggedout-adminbar','0','yes'),(3082,'bp-disable-avatar-uploads','0','yes'),(3083,'bp-disable-group-avatar-uploads','1','yes'),(3084,'bp-disable-account-deletion','0','yes'),(3085,'bp-disable-blogforum-comments','1','yes'),(3086,'_bp_theme_package_id','legacy','yes'),(3087,'bp_restrict_group_creation','1','yes'),(3088,'_bp_enable_akismet','1','yes'),(3089,'_bp_enable_heartbeat_refresh','1','yes'),(3090,'_bp_force_buddybar','','yes'),(3091,'_bp_retain_bp_default','','yes'),(3092,'widget_bp_core_login_widget','a:2:{i:3;a:1:{s:5:\"title\";s:12:\"Member Login\";}s:12:\"_multiwidget\";i:1;}','yes'),(3093,'widget_bp_core_members_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3094,'widget_bp_core_whos_online_widget','a:2:{i:3;a:2:{s:5:\"title\";s:12:\"Who\'s Online\";s:11:\"max_members\";s:2:\"15\";}s:12:\"_multiwidget\";i:1;}','yes'),(3095,'widget_bp_core_recently_active_widget','','yes'),(3096,'widget_bp_groups_widget','','yes'),(3097,'widget_bp_messages_sitewide_notices_widget','','yes'),(3102,'registration','0','yes'),(3104,'bp-active-components','a:7:{s:8:\"xprofile\";s:1:\"1\";s:8:\"settings\";s:1:\"1\";s:7:\"friends\";s:1:\"1\";s:8:\"activity\";s:1:\"1\";s:13:\"notifications\";s:1:\"1\";s:5:\"blogs\";s:1:\"1\";s:7:\"members\";s:1:\"1\";}','yes'),(3105,'bp-pages','a:4:{s:7:\"members\";i:1397;s:8:\"activity\";i:1406;s:8:\"register\";i:1401;s:8:\"activate\";i:1396;}','yes'),(3106,'_bp_db_version','9951','yes'),(3115,'_transient_bp_active_member_count','1','yes'),(3464,'bp_disable_blogforum_comments','1','yes'),(3590,'WPLANG','','yes'),(3806,'tribe_events_calendar_options','a:21:{s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:14:\"schema-version\";s:3:\"3.9\";s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:21:\"previous_ecp_versions\";a:1:{i:0;s:1:\"0\";}s:18:\"latest_ecp_version\";s:6:\"3.11.2\";s:19:\"last-update-message\";s:6:\"3.11.2\";s:11:\"donate-link\";b:1;s:12:\"postsPerPage\";s:2:\"10\";s:17:\"liveFiltersUpdate\";b:1;s:12:\"showComments\";b:0;s:20:\"showEventsInMainLoop\";b:0;s:10:\"eventsSlug\";s:6:\"events\";s:15:\"singleEventSlug\";s:5:\"event\";s:14:\"multiDayCutoff\";s:5:\"00:00\";s:21:\"defaultCurrencySymbol\";s:1:\"$\";s:23:\"reverseCurrencyPosition\";b:0;s:15:\"embedGoogleMaps\";b:1;s:19:\"embedGoogleMapsZoom\";s:2:\"10\";s:11:\"debugEvents\";b:0;s:13:\"earliest_date\";s:19:\"2015-08-04 18:30:00\";s:11:\"latest_date\";s:19:\"2015-08-04 20:30:00\";}','yes'),(3807,'tribe_last_save_post','1438963146','yes'),(3816,'su_installed','1441209167','yes'),(3817,'su_option_version','4.9.8.1','yes'),(3820,'su_option_custom-formatting','on','yes'),(3821,'su_option_skip','on','yes'),(3822,'su_option_prefix','su_','yes'),(3823,'su_option_hotkey','alt+i','yes'),(3824,'su_option_skin','default','yes'),(3825,'su_option_custom-css','','yes'),(3826,'sunrise_defaults_su','1','yes'),(4020,'tribe_events_cat_children','a:0:{}','yes'),(4098,'su_presets_heading','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:6:{s:5:\"style\";s:7:\"default\";s:4:\"size\";s:2:\"30\";s:5:\"align\";s:5:\"right\";s:6:\"margin\";s:2:\"30\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:5:\"Serve\";}}}','yes'),(4134,'su_presets_expand','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:12:{s:9:\"more_text\";s:9:\"Show more\";s:9:\"less_text\";s:9:\"Show less\";s:6:\"height\";s:3:\"100\";s:9:\"hide_less\";s:2:\"no\";s:10:\"text_color\";s:7:\"#333333\";s:10:\"link_color\";s:7:\"#709dc4\";s:10:\"link_style\";s:6:\"button\";s:10:\"link_align\";s:4:\"left\";s:9:\"more_icon\";s:23:\"icon: arrow-circle-down\";s:9:\"less_icon\";s:23:\"icon: arrow-circle-o-up\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:388:\"God wants people to invest into other people and invite people to grow in a relationship with Him.\n\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters. Prayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. \";}}}','yes'),(4151,'su_presets_note','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:5:{s:10:\"note_color\";s:7:\"#FFFF66\";s:10:\"text_color\";s:7:\"#333333\";s:6:\"radius\";s:1:\"3\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:387:\"God wants people to invest into other people and invite people to grow in a relationship with Him. Everyone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters. Prayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. \";}}}','yes'),(4177,'su_presets_pullquote','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:3:{s:5:\"align\";s:5:\"right\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:387:\"God wants people to invest into other people and invite people to grow in a relationship with Him.\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\n\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:\";}}}','yes'),(4230,'su_presets_list','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:4:{s:4:\"icon\";s:18:\"icon: check-circle\";s:10:\"icon_color\";s:7:\"#333333\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:283:\"<ul>\n<li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li>\n<li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\n<li>Prayer by reaching people through all methods available.</li>\n</ul>\";}}}','yes'),(4285,'su_presets_box','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:7:{s:5:\"title\";s:0:\"\";s:5:\"style\";s:5:\"noise\";s:9:\"box_color\";s:7:\"#333333\";s:11:\"title_color\";s:7:\"#FFFFFF\";s:6:\"radius\";s:1:\"3\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:26:\"Bring Someone This Sunday!\";}}}','yes'),(4314,'su_presets_column','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:4:{s:4:\"size\";s:3:\"1/2\";s:6:\"center\";s:2:\"no\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:298:\"[su_list icon=\"icon: check-circle\"]\n\nPray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li>\nPraying by investing and inviting people to come on Sunday morning and connection events.\nPrayer by reaching people through all methods available.\n[/su_list]\";}}}','yes'),(4434,'su_presets_button','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:18:{s:3:\"url\";s:25:\"http://www.mytwincity.org/\";s:6:\"target\";s:5:\"blank\";s:5:\"style\";s:5:\"glass\";s:10:\"background\";s:7:\"#709dc4\";s:5:\"color\";s:7:\"#FFFFFF\";s:4:\"size\";s:1:\"8\";s:4:\"wide\";s:2:\"no\";s:6:\"center\";s:3:\"yes\";s:6:\"radius\";s:4:\"auto\";s:4:\"icon\";s:13:\"icon: th-list\";s:10:\"icon_color\";s:7:\"#FFFFFF\";s:11:\"text_shadow\";s:4:\"none\";s:4:\"desc\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:23:\"Current Teaching Series\";}}}','yes'),(4490,'su_presets_spacer','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:3:{s:4:\"size\";s:2:\"20\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:5:\"false\";}}}','yes'),(4605,'su_presets_frame','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:3:{s:5:\"align\";s:6:\"center\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:88:\"<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/08/DeathtoStock_Medium6.jpg\">\";}}}','yes'),(4770,'su_presets_service','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:6:{s:5:\"title\";s:16:\"Evaluation Tools\";s:4:\"icon\";s:10:\"icon: file\";s:10:\"icon_color\";s:7:\"#333333\";s:4:\"size\";s:2:\"32\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:19:\"Service description\";}}}','yes'),(4884,'su_presets_youtube_advanced','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:18:{s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=K48-Li7lIfA\";s:8:\"playlist\";s:0:\"\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"400\";s:10:\"responsive\";s:3:\"yes\";s:8:\"controls\";s:3:\"alt\";s:8:\"autohide\";s:3:\"alt\";s:8:\"showinfo\";s:3:\"yes\";s:8:\"autoplay\";s:2:\"no\";s:4:\"loop\";s:2:\"no\";s:3:\"rel\";s:2:\"no\";s:2:\"fs\";s:3:\"yes\";s:14:\"modestbranding\";s:2:\"no\";s:5:\"theme\";s:4:\"dark\";s:5:\"https\";s:2:\"no\";s:5:\"wmode\";s:0:\"\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:5:\"false\";}}}','yes'),(4965,'su_presets_tabs','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:5:{s:5:\"style\";s:7:\"default\";s:6:\"active\";s:1:\"1\";s:8:\"vertical\";s:3:\"yes\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:1191:\"[su_tab title=\"Admit\"]Admit that you are a sinner and deserve hell.\n\n\"For all have sinned and come short of the glory of God.\" - Romans 3:23\n\n\"For the wages of sin is death.\" - Romans 6:23a[/su_tab]\n[su_tab title=\"Believe\"] Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.\n\n\"...the gift of God is eternal life through Jesus Christ our Lord\" - Romans 6:23b\n\n\"But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.\" - Romans 5:8\n\n\"If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.\" - Romans 10:9\n[/su_tab]\n[su_tab title=\"Call\"]Call upon the Lord through prayer for salvation.\n\n\"For whosoever shall call upon the name of the Lord shall be saved.\" - Romans 10:3\n[/su_tab]\n[su_tab title=\"Pray\"]Pray today and receive Jesus Christ as your personal Lord and Savior.\n\n\"...now is the accepted time, behold, now is the day of salvation.\" - II Corinthians 6:2\n\n\"But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.\" - John 1:12[/su_tab]\";}}}','yes'),(5422,'su_presets_youtube','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:7:{s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=_90SFev_iFk\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"400\";s:10:\"responsive\";s:2:\"no\";s:8:\"autoplay\";s:2:\"no\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:5:\"false\";}}}','yes'),(6397,'ecwd_settings_general','a:12:{s:9:\"time_zone\";s:0:\"\";s:11:\"date_format\";s:5:\"m/d/Y\";s:11:\"time_format\";s:3:\"H:i\";s:9:\"time_type\";s:1:\"A\";s:11:\"week_starts\";s:1:\"0\";s:14:\"enable_rewrite\";s:1:\"1\";s:11:\"events_slug\";s:0:\"\";s:10:\"event_slug\";s:0:\"\";s:9:\"cpt_order\";s:9:\"post_name\";s:12:\"social_icons\";s:1:\"1\";s:14:\"related_events\";s:1:\"1\";s:13:\"save_settings\";i:1;}','yes'),(6398,'ecwd_slug_changed','0','yes'),(6399,'ecwd_single_slug','','yes'),(6400,'ecwd_slug','','yes'),(6401,'ecwd_cpt_setup','1','yes'),(6403,'ecwd_settings','','yes'),(6414,'ecwd_event_category_38','a:2:{s:19:\"ecwd_taxonomy_image\";s:0:\"\";s:5:\"color\";s:0:\"\";}','yes'),(6417,'ecwd_event_category_39','a:2:{s:19:\"ecwd_taxonomy_image\";s:0:\"\";s:5:\"color\";s:0:\"\";}','yes'),(6418,'ecwd_event_category_children','a:0:{}','yes'),(6497,'gce_settings_general','a:2:{s:13:\"save_settings\";i:1;s:14:\"always_enqueue\";i:1;}','yes'),(6498,'gce_cpt_setup','1','yes'),(6499,'gce_version','2.3.2','yes'),(6842,'updraftplus_dismisseddashnotice','1472831542','yes'),(6845,'su_vote','no','yes'),(6853,'duplicator_settings','a:11:{s:7:\"version\";s:6:\"0.5.30\";s:18:\"uninstall_settings\";s:1:\"1\";s:15:\"uninstall_files\";s:1:\"1\";s:16:\"uninstall_tables\";s:1:\"0\";s:13:\"package_debug\";s:1:\"0\";s:17:\"package_mysqldump\";s:1:\"1\";s:22:\"package_mysqldump_path\";s:23:\"/usr/services/vux/mysql\";s:24:\"package_phpdump_qrylimit\";s:2:\"20\";s:17:\"package_zip_flush\";s:1:\"0\";s:20:\"storage_htaccess_off\";s:1:\"0\";s:17:\"wpfront_integrate\";s:1:\"0\";}','yes'),(6854,'duplicator_version_plugin','0.5.30','yes'),(8731,'duplicator_package_active','O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:24:\"20150904_twincitybaptist\";s:4:\"Hash\";s:29:\"5612b0b909bf03866151005171745\";s:8:\"NameHash\";s:54:\"20150904_twincitybaptist_5612b0b909bf03866151005171745\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:51:\"/Applications/MAMP/mysites/tcbsite/wp-snapshots/tmp\";s:8:\"StoreURL\";s:38:\"http://www.mytwincity.org/wp-snapshots/\";s:8:\"ScanFile\";s:64:\"20150904_twincitybaptist_5612b0b909bf03866151005171745_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:34:\"/Applications/MAMP/mysites/tcbsite\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:24:\"20150904_twincitybaptist\";s:4:\"Hash\";s:29:\"5612b0b909bf03866151005171745\";s:8:\"NameHash\";s:54:\"20150904_twincitybaptist_5612b0b909bf03866151005171745\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:51:\"/Applications/MAMP/mysites/tcbsite/wp-snapshots/tmp\";s:8:\"StoreURL\";s:38:\"http://www.mytwincity.org/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:4:\"root\";s:10:\"OptsDBUser\";s:4:\"root\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:25:\"http://www.mytwincity.org\";s:10:\"\0*\0Package\";r:45;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:45;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:9:\"Installer\";r:60;s:8:\"Database\";r:73;}','yes'),(9121,'_site_transient_timeout_browser_1d4a17af3320da63d33c395b065916bc','1443790689','yes'),(9122,'_site_transient_browser_1d4a17af3320da63d33c395b065916bc','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"45.0.2454.99\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(9311,'finished_splitting_shared_terms','1','yes'),(9313,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.3.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.3.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.3.1\";s:7:\"version\";s:5:\"4.3.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1444073266;s:15:\"version_checked\";s:5:\"4.3.1\";s:12:\"translations\";a:0:{}}','yes'),(9319,'can_compress_scripts','1','yes'),(10444,'widget_gce_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(10445,'widget_shortcodes-ultimate','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(10581,'_transient_timeout_plugin_slugs','1443732509','no'),(10582,'_transient_plugin_slugs','a:13:{i:0;s:19:\"akismet/akismet.php\";i:1;s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:41:\"css-javascript-toolbox/css-js-toolbox.php\";i:4;s:25:\"duplicator/duplicator.php\";i:5;s:49:\"google-calendar-events/google-calendar-events.php\";i:6;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:7;s:25:\"quickiebar/quickiebar.php\";i:8;s:23:\"revslider/revslider.php\";i:9;s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";i:10;s:39:\"so-widgets-bundle/so-widgets-bundle.php\";i:11;s:27:\"updraftplus/updraftplus.php\";i:12;s:19:\"wptouch/wptouch.php\";}','no'),(10588,'qb_custom_post_type_visibility','hide','yes'),(10589,'gce_upgrade_has_run','1','yes'),(10605,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1443656669','yes'),(10606,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"5223\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3269\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3204\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"2734\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2503\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2001\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"1906\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1836\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1787\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1769\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1738\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1728\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1621\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1419\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1357\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1299\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1207\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1165\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1150\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1021\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"975\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:3:\"942\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"932\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"896\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"865\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"853\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"806\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"791\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"767\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"743\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:3:\"738\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"736\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"695\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"687\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"682\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"669\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"649\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"645\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"640\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"639\";}}','yes'),(10617,'state.CJTInstallerModel.operations','a:1:{s:3:\"1.6\";a:1:{s:10:\"operations\";a:1:{s:7:\"install\";a:5:{s:14:\"builtinAuthors\";a:2:{s:4:\"name\";s:14:\"builtinAuthors\";s:5:\"state\";s:9:\"installed\";}s:8:\"database\";a:2:{s:4:\"name\";s:8:\"database\";s:5:\"state\";s:9:\"installed\";}s:10:\"fileSystem\";a:2:{s:4:\"name\";s:10:\"fileSystem\";s:5:\"state\";s:9:\"installed\";}s:8:\"finalize\";a:2:{s:4:\"name\";s:8:\"finalize\";s:5:\"state\";s:9:\"installed\";}s:18:\"wordpressTemplates\";a:2:{s:4:\"name\";s:18:\"wordpressTemplates\";s:5:\"state\";s:9:\"installed\";}}}}}','yes'),(10644,'cjtoolbox_db_version','1.6','yes'),(10651,'meta-box-order_cjtoolbox','a:1:{s:6:\"normal\";s:12:\"cjtoolbox-15\";}','yes'),(11298,'_transient_timeout_gce_feed_ids','1444499087','no'),(11299,'_transient_gce_feed_ids','a:1:{i:1589;s:9:\"TCB Teens\";}','no'),(11300,'_transient_timeout_su/generator/popup','1444067087','no'),(11301,'_transient_su/generator/popup',' <div id=\"su-generator-wrap\" style=\"display:none\">\n <div id=\"su-generator\">\n <div id=\"su-generator-header\">\n <div id=\"su-generator-tools\"><a href=\"http://www.mytwincity.org/wp-admin/admin.php?page=shortcodes-ultimate#tab-1\" target=\"_blank\" title=\"Settings\">Plugin settings</a> <span></span> <a href=\"http://gndev.info/shortcodes-ultimate/\" target=\"_blank\" title=\"Plugin homepage\">Plugin homepage</a> <span></span> <a href=\"http://wordpress.org/support/plugin/shortcodes-ultimate/\" target=\"_blank\" title=\"Support forums\">Support forums</a> <span></span> <a href=\"http://www.mytwincity.org/wp-admin/admin.php?page=shortcodes-ultimate-addons\" target=\"_blank\" title=\"Add-ons\" class=\"su-add-ons\">Add-ons</a></div>\n <input type=\"text\" name=\"su_generator_search\" id=\"su-generator-search\" value=\"\" placeholder=\"Search for shortcodes\" />\n <p id=\"su-generator-search-pro-tip\"><strong>Pro Tip:</strong> Hit enter to select highlighted shortcode, while searching</p>\n <div id=\"su-generator-filter\">\n <strong>Filter by type</strong>\n <a href=\"#\" data-filter=\"all\">All</a><a href=\"#\" data-filter=\"content\">Content</a><a href=\"#\" data-filter=\"box\">Box</a><a href=\"#\" data-filter=\"media\">Media</a><a href=\"#\" data-filter=\"gallery\">Gallery</a><a href=\"#\" data-filter=\"data\">Data</a><a href=\"#\" data-filter=\"other\">Other</a> </div>\n <div id=\"su-generator-choices\" class=\"su-generator-clearfix\">\n <span data-name=\"Heading\" data-shortcode=\"heading\" title=\"Styled heading\" data-desc=\"Styled heading\" data-group=\"content\"><i class=\"fa fa-h-square\"></i>Heading</span>\n<span data-name=\"Tabs\" data-shortcode=\"tabs\" title=\"Tabs container\" data-desc=\"Tabs container\" data-group=\"box\"><i class=\"fa fa-list-alt\"></i>Tabs</span>\n<span data-name=\"Tab\" data-shortcode=\"tab\" title=\"Single tab\" data-desc=\"Single tab\" data-group=\"box\"><i class=\"fa fa-list-alt\"></i>Tab</span>\n<span data-name=\"Spoiler\" data-shortcode=\"spoiler\" title=\"Spoiler with hidden content\" data-desc=\"Spoiler with hidden content\" data-group=\"box\"><i class=\"fa fa-list-ul\"></i>Spoiler</span>\n<span data-name=\"Accordion\" data-shortcode=\"accordion\" title=\"Accordion with spoilers\" data-desc=\"Accordion with spoilers\" data-group=\"box\"><i class=\"fa fa-list\"></i>Accordion</span>\n<span data-name=\"Divider\" data-shortcode=\"divider\" title=\"Content divider with optional TOP link\" data-desc=\"Content divider with optional TOP link\" data-group=\"content\"><i class=\"fa fa-ellipsis-h\"></i>Divider</span>\n<span data-name=\"Spacer\" data-shortcode=\"spacer\" title=\"Empty space with adjustable height\" data-desc=\"Empty space with adjustable height\" data-group=\"content other\"><i class=\"fa fa-arrows-v\"></i>Spacer</span>\n<span data-name=\"Highlight\" data-shortcode=\"highlight\" title=\"Highlighted text\" data-desc=\"Highlighted text\" data-group=\"content\"><i class=\"fa fa-pencil\"></i>Highlight</span>\n<span data-name=\"Label\" data-shortcode=\"label\" title=\"Styled label\" data-desc=\"Styled label\" data-group=\"content\"><i class=\"fa fa-tag\"></i>Label</span>\n<span data-name=\"Quote\" data-shortcode=\"quote\" title=\"Blockquote alternative\" data-desc=\"Blockquote alternative\" data-group=\"box\"><i class=\"fa fa-quote-right\"></i>Quote</span>\n<span data-name=\"Pullquote\" data-shortcode=\"pullquote\" title=\"Pullquote\" data-desc=\"Pullquote\" data-group=\"box\"><i class=\"fa fa-quote-left\"></i>Pullquote</span>\n<span data-name=\"Dropcap\" data-shortcode=\"dropcap\" title=\"Dropcap\" data-desc=\"Dropcap\" data-group=\"content\"><i class=\"fa fa-bold\"></i>Dropcap</span>\n<span data-name=\"Frame\" data-shortcode=\"frame\" title=\"Styled image frame\" data-desc=\"Styled image frame\" data-group=\"content\"><i class=\"fa fa-picture-o\"></i>Frame</span>\n<span data-name=\"Row\" data-shortcode=\"row\" title=\"Row for flexible columns\" data-desc=\"Row for flexible columns\" data-group=\"box\"><i class=\"fa fa-columns\"></i>Row</span>\n<span data-name=\"Column\" data-shortcode=\"column\" title=\"Flexible and responsive columns\" data-desc=\"Flexible and responsive columns\" data-group=\"box\"><i class=\"fa fa-columns\"></i>Column</span>\n<span data-name=\"List\" data-shortcode=\"list\" title=\"Styled unordered list\" data-desc=\"Styled unordered list\" data-group=\"content\"><i class=\"fa fa-list-ol\"></i>List</span>\n<span data-name=\"Button\" data-shortcode=\"button\" title=\"Styled button\" data-desc=\"Styled button\" data-group=\"content\"><i class=\"fa fa-heart\"></i>Button</span>\n<span data-name=\"Service\" data-shortcode=\"service\" title=\"Service box with title\" data-desc=\"Service box with title\" data-group=\"box\"><i class=\"fa fa-check-square-o\"></i>Service</span>\n<span data-name=\"Box\" data-shortcode=\"box\" title=\"Colored box with caption\" data-desc=\"Colored box with caption\" data-group=\"box\"><i class=\"fa fa-list-alt\"></i>Box</span>\n<span data-name=\"Note\" data-shortcode=\"note\" title=\"Colored box\" data-desc=\"Colored box\" data-group=\"box\"><i class=\"fa fa-list-alt\"></i>Note</span>\n<span data-name=\"Expand\" data-shortcode=\"expand\" title=\"Expandable text block\" data-desc=\"Expandable text block\" data-group=\"box\"><i class=\"fa fa-sort-amount-asc\"></i>Expand</span>\n<span data-name=\"Lightbox\" data-shortcode=\"lightbox\" title=\"Lightbox window with custom content\" data-desc=\"Lightbox window with custom content\" data-group=\"gallery\"><i class=\"fa fa-external-link\"></i>Lightbox</span>\n<span data-name=\"Lightbox content\" data-shortcode=\"lightbox_content\" title=\"Inline content for lightbox\" data-desc=\"Inline content for lightbox\" data-group=\"gallery\"><i class=\"fa fa-external-link\"></i>Lightbox content</span>\n<span data-name=\"Tooltip\" data-shortcode=\"tooltip\" title=\"Tooltip window with custom content\" data-desc=\"Tooltip window with custom content\" data-group=\"other\"><i class=\"fa fa-comment-o\"></i>Tooltip</span>\n<span data-name=\"Private\" data-shortcode=\"private\" title=\"Private note for post authors\" data-desc=\"Private note for post authors\" data-group=\"other\"><i class=\"fa fa-lock\"></i>Private</span>\n<span data-name=\"YouTube\" data-shortcode=\"youtube\" title=\"YouTube video\" data-desc=\"YouTube video\" data-group=\"media\"><i class=\"fa fa-youtube-play\"></i>YouTube</span>\n<span data-name=\"YouTube Advanced\" data-shortcode=\"youtube_advanced\" title=\"YouTube video player with advanced settings\" data-desc=\"YouTube video player with advanced settings\" data-group=\"media\"><i class=\"fa fa-youtube-play\"></i>YouTube Advanced</span>\n<span data-name=\"Vimeo\" data-shortcode=\"vimeo\" title=\"Vimeo video\" data-desc=\"Vimeo video\" data-group=\"media\"><i class=\"fa fa-youtube-play\"></i>Vimeo</span>\n<span data-name=\"Screenr\" data-shortcode=\"screenr\" title=\"Screenr video\" data-desc=\"Screenr video\" data-group=\"media\"><i class=\"fa fa-youtube-play\"></i>Screenr</span>\n<span data-name=\"Dailymotion\" data-shortcode=\"dailymotion\" title=\"Dailymotion video\" data-desc=\"Dailymotion video\" data-group=\"media\"><i class=\"fa fa-youtube-play\"></i>Dailymotion</span>\n<span data-name=\"Audio\" data-shortcode=\"audio\" title=\"Custom audio player\" data-desc=\"Custom audio player\" data-group=\"media\"><i class=\"fa fa-play-circle\"></i>Audio</span>\n<span data-name=\"Video\" data-shortcode=\"video\" title=\"Custom video player\" data-desc=\"Custom video player\" data-group=\"media\"><i class=\"fa fa-play-circle\"></i>Video</span>\n<span data-name=\"Table\" data-shortcode=\"table\" title=\"Styled table from HTML or CSV file\" data-desc=\"Styled table from HTML or CSV file\" data-group=\"content\"><i class=\"fa fa-table\"></i>Table</span>\n<span data-name=\"Permalink\" data-shortcode=\"permalink\" title=\"Permalink to specified post/page\" data-desc=\"Permalink to specified post/page\" data-group=\"content other\"><i class=\"fa fa-link\"></i>Permalink</span>\n<span data-name=\"Members\" data-shortcode=\"members\" title=\"Content for logged in members only\" data-desc=\"Content for logged in members only\" data-group=\"other\"><i class=\"fa fa-lock\"></i>Members</span>\n<span data-name=\"Guests\" data-shortcode=\"guests\" title=\"Content for guests only\" data-desc=\"Content for guests only\" data-group=\"other\"><i class=\"fa fa-user\"></i>Guests</span>\n<span data-name=\"RSS Feed\" data-shortcode=\"feed\" title=\"Feed grabber\" data-desc=\"Feed grabber\" data-group=\"content other\"><i class=\"fa fa-rss\"></i>RSS Feed</span>\n<span data-name=\"Menu\" data-shortcode=\"menu\" title=\"Custom menu by name\" data-desc=\"Custom menu by name\" data-group=\"other\"><i class=\"fa fa-bars\"></i>Menu</span>\n<span data-name=\"Sub pages\" data-shortcode=\"subpages\" title=\"List of sub pages\" data-desc=\"List of sub pages\" data-group=\"other\"><i class=\"fa fa-bars\"></i>Sub pages</span>\n<span data-name=\"Siblings\" data-shortcode=\"siblings\" title=\"List of cureent page siblings\" data-desc=\"List of cureent page siblings\" data-group=\"other\"><i class=\"fa fa-bars\"></i>Siblings</span>\n<span data-name=\"Document\" data-shortcode=\"document\" title=\"Document viewer by Google\" data-desc=\"Document viewer by Google\" data-group=\"media\"><i class=\"fa fa-file-text\"></i>Document</span>\n<span data-name=\"Gmap\" data-shortcode=\"gmap\" title=\"Maps by Google\" data-desc=\"Maps by Google\" data-group=\"media\"><i class=\"fa fa-globe\"></i>Gmap</span>\n<span data-name=\"Slider\" data-shortcode=\"slider\" title=\"Customizable image slider\" data-desc=\"Customizable image slider\" data-group=\"gallery\"><i class=\"fa fa-picture-o\"></i>Slider</span>\n<span data-name=\"Carousel\" data-shortcode=\"carousel\" title=\"Customizable image carousel\" data-desc=\"Customizable image carousel\" data-group=\"gallery\"><i class=\"fa fa-picture-o\"></i>Carousel</span>\n<span data-name=\"Gallery\" data-shortcode=\"custom_gallery\" title=\"Customizable image gallery\" data-desc=\"Customizable image gallery\" data-group=\"gallery\"><i class=\"fa fa-picture-o\"></i>Gallery</span>\n<span data-name=\"Posts\" data-shortcode=\"posts\" title=\"Custom posts query with customizable template\" data-desc=\"Custom posts query with customizable template\" data-group=\"other\"><i class=\"fa fa-th-list\"></i>Posts</span>\n<span data-name=\"Dummy text\" data-shortcode=\"dummy_text\" title=\"Text placeholder\" data-desc=\"Text placeholder\" data-group=\"content\"><i class=\"fa fa-text-height\"></i>Dummy text</span>\n<span data-name=\"Dummy image\" data-shortcode=\"dummy_image\" title=\"Image placeholder with random image\" data-desc=\"Image placeholder with random image\" data-group=\"content\"><i class=\"fa fa-picture-o\"></i>Dummy image</span>\n<span data-name=\"Animation\" data-shortcode=\"animate\" title=\"Wrapper for animation. Any nested element will be animated\" data-desc=\"Wrapper for animation. Any nested element will be animated\" data-group=\"other\"><i class=\"fa fa-bolt\"></i>Animation</span>\n<span data-name=\"Meta\" data-shortcode=\"meta\" title=\"Post meta\" data-desc=\"Post meta\" data-group=\"data\"><i class=\"fa fa-info-circle\"></i>Meta</span>\n<span data-name=\"User\" data-shortcode=\"user\" title=\"User data\" data-desc=\"User data\" data-group=\"data\"><i class=\"fa fa-info-circle\"></i>User</span>\n<span data-name=\"Post\" data-shortcode=\"post\" title=\"Post data\" data-desc=\"Post data\" data-group=\"data\"><i class=\"fa fa-info-circle\"></i>Post</span>\n<span data-name=\"Template\" data-shortcode=\"template\" title=\"Theme template\" data-desc=\"Theme template\" data-group=\"other\"><i class=\"fa fa-puzzle-piece\"></i>Template</span>\n<span data-name=\"QR code\" data-shortcode=\"qrcode\" title=\"Advanced QR code generator\" data-desc=\"Advanced QR code generator\" data-group=\"content\"><i class=\"fa fa-qrcode\"></i>QR code</span>\n<span data-name=\"Scheduler\" data-shortcode=\"scheduler\" title=\"Allows to show the content only at the specified time period\" data-desc=\"Allows to show the content only at the specified time period\" data-group=\"other\"><i class=\"fa fa-clock-o\"></i>Scheduler</span>\n </div>\n </div>\n <div id=\"su-generator-settings\"></div>\n <input type=\"hidden\" name=\"su-generator-selected\" id=\"su-generator-selected\" value=\"http://www.mytwincity.org/wp-content/plugins/shortcodes-ultimate\" />\n <input type=\"hidden\" name=\"su-generator-url\" id=\"su-generator-url\" value=\"http://www.mytwincity.org/wp-content/plugins/shortcodes-ultimate\" />\n <input type=\"hidden\" name=\"su-compatibility-mode-prefix\" id=\"su-compatibility-mode-prefix\" value=\"su_\" />\n <div id=\"su-generator-result\" style=\"display:none\"></div>\n </div>\n </div>\n ','no'),(12861,'_transient_is_multi_author','0','yes'),(13021,'_site_transient_timeout_available_translations','1444072834','yes'),(13022,'_site_transient_available_translations','a:65:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-18 00:32:07\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-12 20:42:00\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.1/ary.zip\";s:3:\"iso\";a:2:{i:1;s:5:\"ar_MA\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-22 14:16:17\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-17 10:33:13\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-16 05:09:40\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-18 21:20:44\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-18 04:19:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-19 09:17:13\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-18 19:34:34\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Fortsæt\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-30 07:30:55\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-10-02 05:19:03\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-30 07:31:54\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.3.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-03 22:30:30\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-17 20:57:21\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-13 23:56:05\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-17 22:20:50\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-14 00:38:16\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-16 10:50:33\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-19 14:33:57\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-30 19:20:19\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:6:\"4.3-RC\";s:7:\"updated\";s:19:\"2015-08-04 06:10:33\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.3-RC/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-10-01 15:56:07\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-26 22:31:40\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-05 16:34:02\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-25 13:32:40\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-20 13:36:08\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-15 15:41:04\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-06 20:37:24\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-17 08:31:03\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-24 15:25:30\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-18 23:34:00\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.1.8\";s:7:\"updated\";s:19:\"2015-03-26 15:20:27\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.8/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-10-03 20:07:26\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-10-01 20:42:02\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-15 15:59:46\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-17 13:36:47\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-08 17:47:38\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-22 13:47:37\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-22 11:59:17\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-30 16:23:05\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-17 22:59:51\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-18 07:48:28\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:5:\"4.1.8\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.8/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-17 18:45:19\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-30 10:30:52\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-17 18:56:13\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.3-RC\";s:7:\"updated\";s:19:\"2015-08-02 07:53:33\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.3-RC/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-27 13:38:57\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:5:\"4.1.8\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.8/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-20 02:24:55\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-10-02 08:35:41\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-18 16:44:05\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-03 10:08:50\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-30 13:29:00\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-06 16:10:24\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-18 17:16:31\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-17 18:31:56\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-19 10:43:45\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-18 14:10:42\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-20 03:52:15\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-28 11:00:22\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.1.8\";s:7:\"updated\";s:19:\"2015-03-26 16:45:38\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.8/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-10-04 22:25:50\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.3.1/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-20 19:10:20\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-09-21 11:18:12\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','yes'),(13094,'duplicator_ui_view_state','a:3:{s:22:\"dup-pack-storage-panel\";s:1:\"1\";s:22:\"dup-pack-archive-panel\";s:1:\"1\";s:24:\"dup-pack-installer-panel\";s:1:\"1\";}','yes'),(13118,'updraftplus_dismissedautobackup','1451325832','yes'),(13160,'_site_transient_timeout_theme_roots','1444075065','yes'),(13161,'_site_transient_theme_roots','a:4:{s:24:\"accesspress_parallax_pro\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";}','yes'),(13162,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1444073267;s:7:\"checked\";a:4:{s:24:\"accesspress_parallax_pro\";s:1:\"2\";s:13:\"twentyfifteen\";s:3:\"1.2\";s:14:\"twentyfourteen\";s:3:\"1.4\";s:14:\"twentythirteen\";s:3:\"1.5\";}s:8:\"response\";a:3:{s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.1.3.zip\";}s:14:\"twentyfourteen\";a:4:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.1.5.zip\";}s:14:\"twentythirteen\";a:4:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.1.6.zip\";}}s:12:\"translations\";a:0:{}}','yes'),(13163,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1444091002;s:8:\"response\";a:2:{s:39:\"so-widgets-bundle/so-widgets-bundle.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"50709\";s:4:\"slug\";s:17:\"so-widgets-bundle\";s:6:\"plugin\";s:39:\"so-widgets-bundle/so-widgets-bundle.php\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/so-widgets-bundle/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/so-widgets-bundle.1.5.zip\";}s:19:\"wptouch/wptouch.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3265\";s:4:\"slug\";s:7:\"wptouch\";s:6:\"plugin\";s:19:\"wptouch/wptouch.php\";s:11:\"new_version\";s:5:\"3.8.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/wptouch/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/wptouch.3.8.8.zip\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"3.1.4\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.1.4.zip\";}s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"27008\";s:4:\"slug\";s:27:\"black-studio-tinymce-widget\";s:6:\"plugin\";s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";s:11:\"new_version\";s:5:\"2.2.8\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/black-studio-tinymce-widget/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/black-studio-tinymce-widget.2.2.8.zip\";s:14:\"upgrade_notice\";s:124:\"Version 2.x is a major update. If you are upgrading from version 1.x please ensure to backup your database before upgrading.\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"790\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.3.zip\";}s:41:\"css-javascript-toolbox/css-js-toolbox.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"25361\";s:4:\"slug\";s:22:\"css-javascript-toolbox\";s:6:\"plugin\";s:41:\"css-javascript-toolbox/css-js-toolbox.php\";s:11:\"new_version\";s:5:\"8.0.4\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/css-javascript-toolbox/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/css-javascript-toolbox.8.0.4.zip\";}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"22600\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:6:\"0.5.30\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.0.5.30.zip\";}s:49:\"google-calendar-events/google-calendar-events.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"15794\";s:4:\"slug\";s:22:\"google-calendar-events\";s:6:\"plugin\";s:49:\"google-calendar-events/google-calendar-events.php\";s:11:\"new_version\";s:5:\"2.4.0\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/google-calendar-events/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/google-calendar-events.2.4.0.zip\";}s:39:\"siteorigin-panels/siteorigin-panels.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"40030\";s:4:\"slug\";s:17:\"siteorigin-panels\";s:6:\"plugin\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/siteorigin-panels/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/siteorigin-panels.2.2.zip\";}s:25:\"quickiebar/quickiebar.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"57542\";s:4:\"slug\";s:10:\"quickiebar\";s:6:\"plugin\";s:25:\"quickiebar/quickiebar.php\";s:11:\"new_version\";s:5:\"1.8.0\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/quickiebar/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/quickiebar.1.8.0.zip\";}s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"21713\";s:4:\"slug\";s:19:\"shortcodes-ultimate\";s:6:\"plugin\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";s:11:\"new_version\";s:7:\"4.9.8.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/shortcodes-ultimate/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/shortcodes-ultimate.zip\";}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"31679\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:7:\"1.11.12\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/updraftplus.1.11.12.zip\";}}}','yes'),(13188,'rewrite_rules','a:103:{s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:59:\"portfolio-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:47:\"portfolio-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio-category/([^/]+)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:36:\"gce_feed/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"gce_feed/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"gce_feed/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"gce_feed/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"gce_feed/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"gce_feed/([^/]+)/trackback/?$\";s:35:\"index.php?gce_feed=$matches[1]&tb=1\";s:37:\"gce_feed/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?gce_feed=$matches[1]&paged=$matches[2]\";s:44:\"gce_feed/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?gce_feed=$matches[1]&cpage=$matches[2]\";s:29:\"gce_feed/([^/]+)(/[0-9]+)?/?$\";s:47:\"index.php?gce_feed=$matches[1]&page=$matches[2]\";s:25:\"gce_feed/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"gce_feed/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"gce_feed/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"gce_feed/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"gce_feed/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"portfolio/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:45:\"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:30:\"portfolio/([^/]+)(/[0-9]+)?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:26:\"portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";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:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=763&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: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:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s: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:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=2243 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 (4,5,'_wp_attached_file','2015/07/TC-LOGO-ICON-small.jpg'),(5,5,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2015/07/TC-LOGO-ICON-small.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"TC-LOGO-ICON-small-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:30:\"TC-LOGO-ICON-small-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:30:\"TC-LOGO-ICON-small-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:30:\"TC-LOGO-ICON-small-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:30:\"TC-LOGO-ICON-small-500x350.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:30:\"TC-LOGO-ICON-small-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6,6,'_wp_attached_file','2015/07/TCB-BANNER-WEBSITE.jpg'),(7,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:274;s:6:\"height\";i:50;s:4:\"file\";s:30:\"2015/07/TCB-BANNER-WEBSITE.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"TCB-BANNER-WEBSITE-150x50.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(8,7,'_wp_attached_file','2015/07/ERVEN-555.jpg'),(9,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:555;s:6:\"height\";i:555;s:4:\"file\";s:21:\"2015/07/ERVEN-555.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"ERVEN-555-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:\"ERVEN-555-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:21:\"ERVEN-555-555x300.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:21:\"ERVEN-555-555x450.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:21:\"ERVEN-555-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:21:\"ERVEN-555-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(10,8,'_wp_attached_file','2015/07/Twitter_logo_blue.png'),(11,8,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1139;s:6:\"height\";i:926;s:4:\"file\";s:29:\"2015/07/Twitter_logo_blue.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Twitter_logo_blue-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Twitter_logo_blue-300x244.png\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Twitter_logo_blue-1024x833.png\";s:5:\"width\";i:1024;s:6:\"height\";i:833;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:29:\"Twitter_logo_blue-900x300.png\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:29:\"Twitter_logo_blue-560x450.png\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:29:\"Twitter_logo_blue-540x350.png\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:29:\"Twitter_logo_blue-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(12,9,'_wp_attached_file','2015/07/fblogo.png'),(13,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:18:\"2015/07/fblogo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"fblogo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(14,10,'_wp_attached_file','2015/07/tceec_ogo_white.jpg'),(15,10,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:213;s:4:\"file\";s:27:\"2015/07/tceec_ogo_white.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"tceec_ogo_white-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:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(16,11,'_edit_last','1'),(17,11,'_edit_lock','1443640659:1'),(18,11,'_wp_page_template','default'),(19,11,'slide_template','default'),(20,11,'accesspress_pro_sidebar_layout','right-sidebar'),(26,15,'_edit_last','1'),(27,15,'_wp_page_template','default'),(28,15,'slide_template','default'),(29,15,'accesspress_pro_sidebar_layout','no-sidebar'),(30,15,'_edit_lock','1441297551:1'),(31,17,'_edit_last','1'),(32,17,'_edit_lock','1444061889:1'),(33,17,'_wp_page_template','default'),(34,17,'slide_template','default'),(35,17,'accesspress_pro_sidebar_layout','right-sidebar'),(36,19,'_edit_last','1'),(37,19,'_wp_page_template','default'),(38,19,'slide_template','default'),(39,19,'accesspress_pro_sidebar_layout','right-sidebar'),(40,19,'_edit_lock','1443627395:1'),(41,21,'_edit_last','1'),(42,21,'_wp_page_template','default'),(43,21,'slide_template','default'),(44,21,'accesspress_pro_sidebar_layout','no-sidebar'),(45,21,'_edit_lock','1443543875:1'),(46,23,'_edit_last','1'),(47,23,'_wp_page_template','default'),(48,23,'slide_template','default'),(49,23,'accesspress_pro_sidebar_layout','no-sidebar'),(50,23,'_edit_lock','1443543992:1'),(56,27,'_edit_last','1'),(57,27,'_wp_page_template','default'),(58,27,'slide_template','default'),(59,27,'accesspress_pro_sidebar_layout','no-sidebar'),(60,27,'_edit_lock','1443544778:1'),(61,29,'_edit_last','1'),(62,29,'_edit_lock','1441310271:1'),(63,29,'_wp_page_template','default'),(64,29,'slide_template','default'),(65,29,'accesspress_pro_sidebar_layout','right-sidebar'),(66,31,'_edit_last','1'),(67,31,'_wp_page_template','default'),(68,31,'slide_template',''),(69,31,'accesspress_pro_sidebar_layout','right-sidebar'),(70,31,'_edit_lock','1443627730:1'),(71,33,'_edit_last','1'),(72,33,'_edit_lock','1443627565:1'),(73,33,'_wp_page_template','default'),(74,33,'slide_template','default'),(75,33,'accesspress_pro_sidebar_layout','no-sidebar'),(76,35,'_edit_last','1'),(77,35,'_edit_lock','1443640038:1'),(78,35,'_wp_page_template','default'),(79,35,'slide_template','default'),(80,35,'accesspress_pro_sidebar_layout','no-sidebar'),(81,37,'_edit_last','1'),(82,37,'_wp_page_template','default'),(83,37,'slide_template','default'),(84,37,'accesspress_pro_sidebar_layout','no-sidebar'),(85,37,'_edit_lock','1438787733:1'),(86,39,'_edit_last','1'),(87,39,'_edit_lock','1443543804:1'),(88,39,'_wp_page_template','default'),(89,39,'slide_template','default'),(90,39,'accesspress_pro_sidebar_layout','no-sidebar'),(91,41,'_edit_last','1'),(92,41,'_edit_lock','1437422505:1'),(93,41,'_wp_page_template','default'),(94,41,'slide_template','default'),(95,41,'accesspress_pro_sidebar_layout','right-sidebar'),(96,43,'_edit_last','1'),(97,43,'_edit_lock','1443624906:1'),(98,43,'_wp_page_template','default'),(99,43,'slide_template','default'),(100,43,'accesspress_pro_sidebar_layout','right-sidebar'),(101,45,'_edit_last','1'),(102,45,'_edit_lock','1443541862:1'),(103,45,'_wp_page_template','default'),(104,45,'slide_template','default'),(105,45,'accesspress_pro_sidebar_layout','no-sidebar'),(106,47,'_edit_last','1'),(107,47,'_edit_lock','1441313822:1'),(108,47,'_wp_page_template','default'),(109,47,'slide_template','default'),(110,47,'accesspress_pro_sidebar_layout','right-sidebar'),(111,49,'_edit_last','1'),(112,49,'_wp_page_template','default'),(113,49,'slide_template','default'),(114,49,'accesspress_pro_sidebar_layout','right-sidebar'),(115,49,'_edit_lock','1443185982:1'),(116,51,'_edit_last','1'),(117,51,'_wp_page_template','default'),(118,51,'slide_template','default'),(119,51,'accesspress_pro_sidebar_layout','right-sidebar'),(120,51,'_edit_lock','1443185945:1'),(121,53,'_edit_last','1'),(122,53,'_edit_lock','1441382154:1'),(123,53,'_wp_page_template','default'),(124,53,'slide_template','default'),(125,53,'accesspress_pro_sidebar_layout','right-sidebar'),(186,79,'_edit_last','1'),(187,79,'_edit_lock','1437686147:1'),(188,79,'_wp_page_template','default'),(189,79,'slide_template','default'),(190,79,'accesspress_pro_sidebar_layout','no-sidebar'),(335,97,'_menu_item_type','post_type'),(336,97,'_menu_item_menu_item_parent','0'),(337,97,'_menu_item_object_id','17'),(338,97,'_menu_item_object','page'),(339,97,'_menu_item_target',''),(340,97,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(341,97,'_menu_item_xfn',''),(342,97,'_menu_item_url',''),(344,98,'_menu_item_type','post_type'),(345,98,'_menu_item_menu_item_parent','97'),(346,98,'_menu_item_object_id','39'),(347,98,'_menu_item_object','page'),(348,98,'_menu_item_target',''),(349,98,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(350,98,'_menu_item_xfn',''),(351,98,'_menu_item_url',''),(353,99,'_menu_item_type','post_type'),(354,99,'_menu_item_menu_item_parent','97'),(355,99,'_menu_item_object_id','37'),(356,99,'_menu_item_object','page'),(357,99,'_menu_item_target',''),(358,99,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(359,99,'_menu_item_xfn',''),(360,99,'_menu_item_url',''),(371,101,'_menu_item_type','post_type'),(372,101,'_menu_item_menu_item_parent','0'),(373,101,'_menu_item_object_id','23'),(374,101,'_menu_item_object','page'),(375,101,'_menu_item_target',''),(376,101,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(377,101,'_menu_item_xfn',''),(378,101,'_menu_item_url',''),(389,103,'_menu_item_type','post_type'),(390,103,'_menu_item_menu_item_parent','0'),(391,103,'_menu_item_object_id','19'),(392,103,'_menu_item_object','page'),(393,103,'_menu_item_target',''),(394,103,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(395,103,'_menu_item_xfn',''),(396,103,'_menu_item_url',''),(398,104,'_menu_item_type','post_type'),(399,104,'_menu_item_menu_item_parent','103'),(400,104,'_menu_item_object_id','43'),(401,104,'_menu_item_object','page'),(402,104,'_menu_item_target',''),(403,104,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(404,104,'_menu_item_xfn',''),(405,104,'_menu_item_url',''),(407,105,'_menu_item_type','post_type'),(408,105,'_menu_item_menu_item_parent','103'),(409,105,'_menu_item_object_id','53'),(410,105,'_menu_item_object','page'),(411,105,'_menu_item_target',''),(412,105,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(413,105,'_menu_item_xfn',''),(414,105,'_menu_item_url',''),(416,106,'_menu_item_type','post_type'),(417,106,'_menu_item_menu_item_parent','103'),(418,106,'_menu_item_object_id','45'),(419,106,'_menu_item_object','page'),(420,106,'_menu_item_target',''),(421,106,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(422,106,'_menu_item_xfn',''),(423,106,'_menu_item_url',''),(434,108,'_menu_item_type','post_type'),(435,108,'_menu_item_menu_item_parent','103'),(436,108,'_menu_item_object_id','49'),(437,108,'_menu_item_object','page'),(438,108,'_menu_item_target',''),(439,108,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(440,108,'_menu_item_xfn',''),(441,108,'_menu_item_url',''),(461,111,'_menu_item_type','post_type'),(462,111,'_menu_item_menu_item_parent','103'),(463,111,'_menu_item_object_id','51'),(464,111,'_menu_item_object','page'),(465,111,'_menu_item_target',''),(466,111,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(467,111,'_menu_item_xfn',''),(468,111,'_menu_item_url',''),(470,112,'_menu_item_type','post_type'),(471,112,'_menu_item_menu_item_parent','103'),(472,112,'_menu_item_object_id','47'),(473,112,'_menu_item_object','page'),(474,112,'_menu_item_target',''),(475,112,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(476,112,'_menu_item_xfn',''),(477,112,'_menu_item_url',''),(488,114,'_menu_item_type','post_type'),(489,114,'_menu_item_menu_item_parent','0'),(490,114,'_menu_item_object_id','27'),(491,114,'_menu_item_object','page'),(492,114,'_menu_item_target',''),(493,114,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(494,114,'_menu_item_xfn',''),(495,114,'_menu_item_url',''),(497,115,'_menu_item_type','post_type'),(498,115,'_menu_item_menu_item_parent','114'),(499,115,'_menu_item_object_id','79'),(500,115,'_menu_item_object','page'),(501,115,'_menu_item_target',''),(502,115,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(503,115,'_menu_item_xfn',''),(504,115,'_menu_item_url',''),(524,118,'_menu_item_type','post_type'),(525,118,'_menu_item_menu_item_parent','0'),(526,118,'_menu_item_object_id','15'),(527,118,'_menu_item_object','page'),(528,118,'_menu_item_target',''),(529,118,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(530,118,'_menu_item_xfn',''),(531,118,'_menu_item_url',''),(533,119,'_menu_item_type','post_type'),(534,119,'_menu_item_menu_item_parent','118'),(535,119,'_menu_item_object_id','31'),(536,119,'_menu_item_object','page'),(537,119,'_menu_item_target',''),(538,119,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(539,119,'_menu_item_xfn',''),(540,119,'_menu_item_url',''),(551,121,'_menu_item_type','post_type'),(552,121,'_menu_item_menu_item_parent','118'),(553,121,'_menu_item_object_id','33'),(554,121,'_menu_item_object','page'),(555,121,'_menu_item_target',''),(556,121,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(557,121,'_menu_item_xfn',''),(558,121,'_menu_item_url',''),(560,122,'_menu_item_type','post_type'),(561,122,'_menu_item_menu_item_parent','118'),(562,122,'_menu_item_object_id','29'),(563,122,'_menu_item_object','page'),(564,122,'_menu_item_target',''),(565,122,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(566,122,'_menu_item_xfn',''),(567,122,'_menu_item_url',''),(578,124,'_menu_item_type','post_type'),(579,124,'_menu_item_menu_item_parent','0'),(580,124,'_menu_item_object_id','21'),(581,124,'_menu_item_object','page'),(582,124,'_menu_item_target',''),(583,124,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(584,124,'_menu_item_xfn',''),(585,124,'_menu_item_url',''),(659,133,'_edit_last','1'),(660,133,'_edit_lock','1441384760:1'),(661,133,'_wp_page_template','default'),(662,133,'slide_template','default'),(663,133,'accesspress_pro_sidebar_layout','no-sidebar'),(664,135,'_menu_item_type','post_type'),(665,135,'_menu_item_menu_item_parent','103'),(666,135,'_menu_item_object_id','133'),(667,135,'_menu_item_object','page'),(668,135,'_menu_item_target',''),(669,135,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(670,135,'_menu_item_xfn',''),(671,135,'_menu_item_url',''),(682,137,'_wp_attached_file','2015/07/ALQ_WEBwide_wide.jpg'),(683,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:480;s:4:\"file\";s:28:\"2015/07/ALQ_WEBwide_wide.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ALQ_WEBwide_wide-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:\"ALQ_WEBwide_wide-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:28:\"ALQ_WEBwide_wide-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:28:\"ALQ_WEBwide_wide-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:28:\"ALQ_WEBwide_wide-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:28:\"ALQ_WEBwide_wide-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(685,138,'_wp_attached_file','revslider/light-opus/slideshow-clean-line-separator.png'),(686,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:436;s:6:\"height\";i:16;s:4:\"file\";s:55:\"revslider/light-opus/slideshow-clean-line-separator.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"slideshow-clean-line-separator-150x16.png\";s:5:\"width\";i:150;s:6:\"height\";i:16;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"slideshow-clean-line-separator-300x11.png\";s:5:\"width\";i:300;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:41:\"slideshow-clean-line-separator-380x16.png\";s:5:\"width\";i:380;s:6:\"height\";i:16;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(687,139,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-1.png'),(688,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:351;s:4:\"file\";s:48:\"revslider/light-opus/slideshow-clean-image-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"slideshow-clean-image-1-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:35:\"slideshow-clean-image-1-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:35:\"slideshow-clean-image-1-900x300.png\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:35:\"slideshow-clean-image-1-560x351.png\";s:5:\"width\";i:560;s:6:\"height\";i:351;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:35:\"slideshow-clean-image-1-540x350.png\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:35:\"slideshow-clean-image-1-380x351.png\";s:5:\"width\";i:380;s:6:\"height\";i:351;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(689,140,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-pen-21.png'),(690,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:166;s:6:\"height\";i:351;s:4:\"file\";s:53:\"revslider/light-opus/slideshow-clean-image-pen-21.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"slideshow-clean-image-pen-21-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:40:\"slideshow-clean-image-pen-21-142x300.png\";s:5:\"width\";i:142;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:40:\"slideshow-clean-image-pen-21-166x300.png\";s:5:\"width\";i:166;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:40:\"slideshow-clean-image-pen-21-166x350.png\";s:5:\"width\";i:166;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(691,141,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-notebook.png'),(692,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:274;s:6:\"height\";i:277;s:4:\"file\";s:55:\"revslider/light-opus/slideshow-clean-image-notebook.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"slideshow-clean-image-notebook-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(693,142,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-pen-1.png'),(694,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:166;s:6:\"height\";i:351;s:4:\"file\";s:52:\"revslider/light-opus/slideshow-clean-image-pen-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"slideshow-clean-image-pen-1-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:39:\"slideshow-clean-image-pen-1-142x300.png\";s:5:\"width\";i:142;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:39:\"slideshow-clean-image-pen-1-166x300.png\";s:5:\"width\";i:166;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:39:\"slideshow-clean-image-pen-1-166x350.png\";s:5:\"width\";i:166;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(695,143,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-clip-1.png'),(696,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:79;s:6:\"height\";i:150;s:4:\"file\";s:53:\"revslider/light-opus/slideshow-clean-image-clip-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"slideshow-clean-image-clip-1-79x150.png\";s:5:\"width\";i:79;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(697,144,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-clip-4.png'),(698,144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:127;s:6:\"height\";i:106;s:4:\"file\";s:53:\"revslider/light-opus/slideshow-clean-image-clip-4.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(699,145,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-clip-2.png'),(700,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:140;s:6:\"height\";i:77;s:4:\"file\";s:53:\"revslider/light-opus/slideshow-clean-image-clip-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(701,146,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-clip-3.png'),(702,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:140;s:6:\"height\";i:77;s:4:\"file\";s:53:\"revslider/light-opus/slideshow-clean-image-clip-3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(703,147,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-coffee-cup.png'),(704,147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:206;s:6:\"height\";i:198;s:4:\"file\";s:57:\"revslider/light-opus/slideshow-clean-image-coffee-cup.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"slideshow-clean-image-coffee-cup-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(705,148,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-grain-1.png'),(706,148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:31;s:6:\"height\";i:31;s:4:\"file\";s:54:\"revslider/light-opus/slideshow-clean-image-grain-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(707,149,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-grain-3.png'),(708,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:39;s:6:\"height\";i:31;s:4:\"file\";s:54:\"revslider/light-opus/slideshow-clean-image-grain-3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(709,150,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-grain-2.png'),(710,150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:31;s:6:\"height\";i:31;s:4:\"file\";s:54:\"revslider/light-opus/slideshow-clean-image-grain-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(711,151,'_wp_attached_file','revslider/light-opus/slideshow-clean-image-pencil.png'),(712,151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:136;s:6:\"height\";i:351;s:4:\"file\";s:53:\"revslider/light-opus/slideshow-clean-image-pencil.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"slideshow-clean-image-pencil-136x150.png\";s:5:\"width\";i:136;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"slideshow-clean-image-pencil-116x300.png\";s:5:\"width\";i:116;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:40:\"slideshow-clean-image-pencil-136x300.png\";s:5:\"width\";i:136;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:40:\"slideshow-clean-image-pencil-136x350.png\";s:5:\"width\";i:136;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(713,152,'_wp_attached_file','revslider/light-opus/background-slideshow-12.png'),(714,152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:354;s:6:\"height\";i:146;s:4:\"file\";s:48:\"revslider/light-opus/background-slideshow-12.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"background-slideshow-12-150x146.png\";s:5:\"width\";i:150;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"background-slideshow-12-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(715,153,'_wp_attached_file','revslider/light-opus/ipad-slideshow-opus-1.png'),(716,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:520;s:6:\"height\";i:334;s:4:\"file\";s:46:\"revslider/light-opus/ipad-slideshow-opus-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"ipad-slideshow-opus-1-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:33:\"ipad-slideshow-opus-1-300x193.png\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:33:\"ipad-slideshow-opus-1-520x300.png\";s:5:\"width\";i:520;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:33:\"ipad-slideshow-opus-1-380x334.png\";s:5:\"width\";i:380;s:6:\"height\";i:334;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(717,154,'_wp_attached_file','revslider/light-opus/iphone-white-opus-2.png'),(718,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:202;s:4:\"file\";s:44:\"revslider/light-opus/iphone-white-opus-2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"iphone-white-opus-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"iphone-white-opus-2-300x202.png\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(719,155,'_wp_attached_file','revslider/light-opus/krogi.png'),(720,155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:305;s:4:\"file\";s:30:\"revslider/light-opus/krogi.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"krogi-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"krogi-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:17:\"krogi-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(721,156,'_wp_attached_file','revslider/light-opus/hands_PNG903.png'),(722,156,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:305;s:4:\"file\";s:37:\"revslider/light-opus/hands_PNG903.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"hands_PNG903-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:\"hands_PNG903-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:24:\"hands_PNG903-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(723,157,'_wp_attached_file','revslider/light-opus/polygon-background.jpg'),(724,157,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:43:\"revslider/light-opus/polygon-background.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"polygon-background-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:30:\"polygon-background-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"polygon-background-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:30:\"polygon-background-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:30:\"polygon-background-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:30:\"polygon-background-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:30:\"polygon-background-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(744,162,'_menu_item_type','custom'),(745,162,'_menu_item_menu_item_parent','0'),(746,162,'_menu_item_object_id','162'),(747,162,'_menu_item_object','custom'),(748,162,'_menu_item_target',''),(749,162,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(750,162,'_menu_item_xfn',''),(751,162,'_menu_item_url','http://www.mytwincity.org/'),(753,1108,'_wp_attached_file','2015/01/banner1.jpg'),(754,1108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2015/01/banner1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"banner1-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:18:\"banner1-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"banner1-1024x323.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:19:\"banner1-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:19:\"banner1-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:19:\"banner1-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:19:\"banner1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(755,1111,'_wp_attached_file','2015/01/banner2.jpg'),(756,1111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2015/01/banner2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"banner2-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:18:\"banner2-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"banner2-1024x323.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:19:\"banner2-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:19:\"banner2-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:19:\"banner2-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:19:\"banner2-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(757,1130,'_wp_attached_file','2014/09/team1.jpg'),(758,1130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:555;s:6:\"height\";i:555;s:4:\"file\";s:17:\"2014/09/team1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:17:\"team1-555x300.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:17:\"team1-555x450.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"team1-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:17:\"team1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(759,1131,'_wp_attached_file','2014/09/team2.jpg'),(760,1131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:555;s:6:\"height\";i:555;s:4:\"file\";s:17:\"2014/09/team2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:17:\"team2-555x300.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:17:\"team2-555x450.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"team2-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:17:\"team2-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(761,1132,'_wp_attached_file','2014/09/team3.jpg'),(762,1132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:555;s:6:\"height\";i:555;s:4:\"file\";s:17:\"2014/09/team3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:17:\"team3-555x300.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:17:\"team3-555x450.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"team3-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:17:\"team3-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(763,1133,'_wp_attached_file','2014/09/team4.jpg'),(764,1133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:555;s:6:\"height\";i:555;s:4:\"file\";s:17:\"2014/09/team4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:17:\"team4-555x300.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:17:\"team4-555x450.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"team4-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:17:\"team4-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(765,1134,'_wp_attached_file','2014/09/team6.jpg'),(766,1134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:555;s:6:\"height\";i:555;s:4:\"file\";s:17:\"2014/09/team6.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:17:\"team6-555x300.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:17:\"team6-555x450.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"team6-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:17:\"team6-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(767,1135,'_wp_attached_file','2014/09/team7.jpg'),(768,1135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:555;s:6:\"height\";i:555;s:4:\"file\";s:17:\"2014/09/team7.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:17:\"team7-555x300.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:17:\"team7-555x450.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"team7-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:17:\"team7-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(769,1136,'_wp_attached_file','2014/09/team8.jpg'),(770,1136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:555;s:6:\"height\";i:555;s:4:\"file\";s:17:\"2014/09/team8.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:17:\"team8-555x300.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:17:\"team8-555x450.jpg\";s:5:\"width\";i:555;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"team8-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:17:\"team8-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(771,1145,'_wp_attached_file','2014/09/client1.jpg'),(772,1145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:19:\"2014/09/client1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(773,1146,'_wp_attached_file','2014/09/client2.jpg'),(774,1146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:19:\"2014/09/client2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(775,1147,'_wp_attached_file','2014/09/client3.jpg'),(776,1147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:19:\"2014/09/client3.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(777,1152,'_wp_attached_file','2014/12/blog1.png'),(778,1152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:450;s:4:\"file\";s:17:\"2014/12/blog1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog1-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:17:\"blog1-560x300.png\";s:5:\"width\";i:560;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"blog1-540x350.png\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:17:\"blog1-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(779,1153,'_wp_attached_file','2014/12/blog2.png'),(780,1153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:450;s:4:\"file\";s:17:\"2014/12/blog2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog2-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:17:\"blog2-560x300.png\";s:5:\"width\";i:560;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"blog2-540x350.png\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:17:\"blog2-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(781,1156,'_wp_attached_file','2014/12/blog3.png'),(782,1156,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:450;s:4:\"file\";s:17:\"2014/12/blog3.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog3-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:17:\"blog3-560x300.png\";s:5:\"width\";i:560;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"blog3-540x350.png\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:17:\"blog3-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(783,1158,'_wp_attached_file','2014/09/24x7.png'),(784,1158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:16:\"2014/09/24x7.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(785,1159,'_wp_attached_file','2014/09/clean-coding.png'),(786,1159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:24:\"2014/09/clean-coding.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(787,1160,'_wp_attached_file','2014/09/customizable.png'),(788,1160,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:24:\"2014/09/customizable.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(789,1161,'_wp_attached_file','2014/09/html5.png'),(790,1161,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:17:\"2014/09/html5.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(791,1162,'_wp_attached_file','2014/09/multipurpose.png'),(792,1162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:24:\"2014/09/multipurpose.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(793,1163,'_wp_attached_file','2014/09/theme-options.png'),(794,1163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:25:\"2014/09/theme-options.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(795,1164,'_wp_attached_file','2015/01/logo1.jpg'),(796,1164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2015/01/logo1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo1-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(797,1165,'_wp_attached_file','2015/01/logo2.jpg'),(798,1165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2015/01/logo2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo2-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(799,1166,'_wp_attached_file','2015/01/logo3.jpg'),(800,1166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2015/01/logo3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo3-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(801,1167,'_wp_attached_file','2015/01/logo4.jpg'),(802,1167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2015/01/logo4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo4-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(803,1168,'_wp_attached_file','2015/01/logo5.jpg'),(804,1168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2015/01/logo5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo5-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(805,1169,'_wp_attached_file','2015/01/logo6.jpg'),(806,1169,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2015/01/logo6.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo6-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(807,1170,'_wp_attached_file','2015/01/logo7.jpg'),(808,1170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2015/01/logo7.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo7-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(809,1172,'_wp_attached_file','2014/12/mobile2.png'),(810,1172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:213;s:6:\"height\";i:402;s:4:\"file\";s:19:\"2014/12/mobile2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mobile2-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:19:\"mobile2-159x300.png\";s:5:\"width\";i:159;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:19:\"mobile2-213x300.png\";s:5:\"width\";i:213;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:19:\"mobile2-213x350.png\";s:5:\"width\";i:213;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:19:\"mobile2-213x380.png\";s:5:\"width\";i:213;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(811,1184,'_wp_attached_file','2014/11/iphone1.png'),(812,1184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:191;s:6:\"height\";i:377;s:4:\"file\";s:19:\"2014/11/iphone1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"iphone1-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:19:\"iphone1-152x300.png\";s:5:\"width\";i:152;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:19:\"iphone1-191x300.png\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:19:\"iphone1-191x350.png\";s:5:\"width\";i:191;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(813,1189,'_wp_attached_file','2015/01/logo.png'),(814,1189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:274;s:6:\"height\";i:50;s:4:\"file\";s:16:\"2015/01/logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"logo-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(815,1190,'_wp_attached_file','2015/01/ipad.png'),(816,1190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:612;s:4:\"file\";s:16:\"2015/01/ipad.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"ipad-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:16:\"ipad-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"ipad-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:16:\"ipad-900x300.png\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:16:\"ipad-560x450.png\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:16:\"ipad-540x350.png\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:16:\"ipad-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(817,1191,'_wp_attached_file','2015/01/photography.png'),(818,1191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:412;s:6:\"height\";i:412;s:4:\"file\";s:23:\"2015/01/photography.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"photography-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"photography-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:23:\"photography-412x300.png\";s:5:\"width\";i:412;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:23:\"photography-412x350.png\";s:5:\"width\";i:412;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:23:\"photography-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(819,1192,'_wp_attached_file','2015/01/buildings.jpg'),(820,1192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"2015/01/buildings.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"buildings-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:\"buildings-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"buildings-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:21:\"buildings-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:21:\"buildings-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:21:\"buildings-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:21:\"buildings-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(821,1194,'_wp_attached_file','2015/01/oak.jpg'),(822,1194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1296;s:4:\"file\";s:15:\"2015/01/oak.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"oak-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:15:\"oak-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"oak-1024x691.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:15:\"oak-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:15:\"oak-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:15:\"oak-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:15:\"oak-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(823,1195,'_wp_attached_file','2015/01/agsquare.png'),(824,1195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:20:\"2015/01/agsquare.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(825,1197,'_wp_attached_file','2015/01/long-road-straight.jpg'),(826,1197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1140;s:4:\"file\";s:30:\"2015/01/long-road-straight.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"long-road-straight-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:30:\"long-road-straight-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"long-road-straight-1024x584.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:30:\"long-road-straight-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:30:\"long-road-straight-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:30:\"long-road-straight-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:30:\"long-road-straight-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(827,1198,'_wp_attached_file','2015/01/black-pattern.png'),(828,1198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2015/01/black-pattern.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"black-pattern-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:25:\"black-pattern-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:25:\"black-pattern-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"black-pattern-480x450.png\";s:5:\"width\";i:480;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:25:\"black-pattern-480x350.png\";s:5:\"width\";i:480;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:25:\"black-pattern-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(829,1199,'_wp_attached_file','2014/12/portfolio1.jpg'),(830,1199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2014/12/portfolio1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"portfolio1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:22:\"portfolio1-800x300.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio1-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio1-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(831,1200,'_wp_attached_file','2014/12/portfolio2.jpg'),(832,1200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2014/12/portfolio2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"portfolio2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:22:\"portfolio2-800x300.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio2-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio2-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio2-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(833,1204,'_wp_attached_file','2014/12/portfolio3.jpg'),(834,1204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2014/12/portfolio3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"portfolio3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:22:\"portfolio3-800x300.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio3-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio3-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio3-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(835,1205,'_wp_attached_file','2014/12/portfolio4.jpg'),(836,1205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2014/12/portfolio4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"portfolio4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:22:\"portfolio4-800x300.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio4-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio4-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio4-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(837,1206,'_wp_attached_file','2014/12/portfolio5.jpg'),(838,1206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2014/12/portfolio5.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"portfolio5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:22:\"portfolio5-800x300.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio5-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio5-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio5-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(839,1207,'_wp_attached_file','2014/12/portfolio6.jpg'),(840,1207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2014/12/portfolio6.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"portfolio6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:22:\"portfolio6-800x300.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio6-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio6-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio6-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(841,1208,'_wp_attached_file','2014/12/portfolio7.jpg'),(842,1208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2014/12/portfolio7.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"portfolio7-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:22:\"portfolio7-800x300.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio7-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio7-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio7-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(843,1209,'_wp_attached_file','2014/06/portfolio8.jpg'),(844,1209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2014/06/portfolio8.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"portfolio8-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:22:\"portfolio8-800x300.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio8-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio8-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:22:\"portfolio8-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(845,1210,'_menu_item_type','custom'),(846,1210,'_menu_item_menu_item_parent','0'),(847,1210,'_menu_item_object_id','1210'),(848,1210,'_menu_item_object','custom'),(849,1210,'_menu_item_target',''),(850,1210,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(851,1210,'_menu_item_xfn',''),(852,1210,'_menu_item_url','http://accesspressthemes.com/accesspress-parallaxpro/'),(868,1212,'_wp_page_template','default'),(869,1212,'slide_template','default'),(870,1212,'accesspress_pro_sidebar_layout','right-sidebar'),(904,763,'_wp_page_template','home-page.php'),(905,763,'slide_template','default'),(906,763,'accesspress_pro_sidebar_layout','right-sidebar'),(973,1220,'_thumbnail_id','1205'),(974,1220,'slide_template','default'),(975,1220,'accesspress_pro_sidebar_layout','right-sidebar'),(976,1221,'slide_template','default'),(977,1221,'_thumbnail_id','1206'),(978,1221,'accesspress_pro_sidebar_layout','right-sidebar'),(979,574,'slide_template','default'),(980,574,'_thumbnail_id','1209'),(981,574,'accesspress_pro_sidebar_layout','right-sidebar'),(982,575,'slide_template','default'),(983,575,'accesspress_pro_sidebar_layout','right-sidebar'),(984,575,'_thumbnail_id','1199'),(985,625,'slide_template','default'),(986,625,'_thumbnail_id','1200'),(987,625,'accesspress_pro_sidebar_layout','right-sidebar'),(988,626,'slide_template','default'),(989,626,'_thumbnail_id','1204'),(990,626,'accesspress_pro_sidebar_layout','right-sidebar'),(991,709,'slide_template','default'),(992,709,'accesspress_pro_sidebar_layout','right-sidebar'),(993,709,'_thumbnail_id','1208'),(994,710,'slide_template','default'),(995,710,'accesspress_pro_sidebar_layout','right-sidebar'),(996,710,'_thumbnail_id','1207'),(1121,1240,'_menu_item_type','post_type'),(1122,1240,'_menu_item_menu_item_parent','0'),(1123,1240,'_menu_item_object_id','763'),(1124,1240,'_menu_item_object','page'),(1125,1240,'_menu_item_target',''),(1126,1240,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1127,1240,'_menu_item_xfn',''),(1128,1240,'_menu_item_url',''),(1271,1290,'_edit_last','1'),(1272,1290,'_edit_lock','1437580895:1'),(1273,1291,'_wp_attached_file','2015/07/CU-wide_wide.jpg'),(1274,1291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:480;s:4:\"file\";s:24:\"2015/07/CU-wide_wide.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"CU-wide_wide-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:\"CU-wide_wide-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:24:\"CU-wide_wide-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:24:\"CU-wide_wide-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:24:\"CU-wide_wide-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:24:\"CU-wide_wide-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1275,1290,'_thumbnail_id','1291'),(1277,1290,'slide_template','default'),(1278,1293,'_edit_last','1'),(1279,1293,'_edit_lock','1443896990:1'),(1280,1294,'_wp_attached_file','2015/07/ALQ_WEBwide_wide-1.jpg'),(1281,1294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:480;s:4:\"file\";s:30:\"2015/07/ALQ_WEBwide_wide-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"ALQ_WEBwide_wide-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:30:\"ALQ_WEBwide_wide-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:30:\"ALQ_WEBwide_wide-1-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:30:\"ALQ_WEBwide_wide-1-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:30:\"ALQ_WEBwide_wide-1-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:30:\"ALQ_WEBwide_wide-1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1284,1293,'slide_template','default'),(1285,1296,'_edit_last','1'),(1286,1296,'_edit_lock','1437676676:1'),(1287,1297,'_wp_attached_file','2015/07/TCCS-WEB-SLIDER_wide.jpg'),(1288,1297,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:480;s:4:\"file\";s:32:\"2015/07/TCCS-WEB-SLIDER_wide.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"TCCS-WEB-SLIDER_wide-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:32:\"TCCS-WEB-SLIDER_wide-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:32:\"TCCS-WEB-SLIDER_wide-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:32:\"TCCS-WEB-SLIDER_wide-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:32:\"TCCS-WEB-SLIDER_wide-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:32:\"TCCS-WEB-SLIDER_wide-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1289,1296,'_thumbnail_id','1297'),(1291,1296,'slide_template',''),(1292,1299,'_wp_attached_file','2015/07/vimeo_icon_white_on_blue_rounded-e1437583462603.png'),(1293,1299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:59:\"2015/07/vimeo_icon_white_on_blue_rounded-e1437583462603.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1296,1299,'_edit_lock','1437583840:1'),(1297,1299,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:36:\"vimeo_icon_white_on_blue_rounded.png\";}}'),(1298,1299,'_edit_last','1'),(1299,1301,'_edit_last','1'),(1300,1301,'_wp_page_template','default'),(1301,1301,'slide_template','default'),(1302,1301,'accesspress_pro_sidebar_layout','no-sidebar'),(1303,1301,'_edit_lock','1438870397:1'),(1304,1303,'_menu_item_type','post_type'),(1305,1303,'_menu_item_menu_item_parent','0'),(1306,1303,'_menu_item_object_id','1301'),(1307,1303,'_menu_item_object','page'),(1308,1303,'_menu_item_target',''),(1309,1303,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1310,1303,'_menu_item_xfn',''),(1311,1303,'_menu_item_url',''),(1313,1304,'_form','<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Best Email (required)<br />\n [email* your-email] </p>\n\n<p>Best Phone<br />\n [tel tel-885] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>'),(1314,1304,'_mail','a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:34:\"[your-name] <mr.eaton14@gmail.com>\";s:4:\"body\";s:179:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Twin City Baptist (http://www.mytwincity.org)\";s:9:\"recipient\";s:20:\"mr.eaton14@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1315,1304,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:40:\"Twin City Baptist <mr.eaton14@gmail.com>\";s:4:\"body\";s:121:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Twin City Baptist (http://www.mytwincity.org)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:30:\"Reply-To: mr.eaton14@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1316,1304,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}'),(1317,1304,'_additional_settings',''),(1318,1304,'_locale','en_US'),(1319,1307,'_edit_last','1'),(1320,1307,'_wp_page_template','default'),(1321,1307,'slide_template','default'),(1322,1307,'accesspress_pro_sidebar_layout','right-sidebar'),(1323,1307,'_edit_lock','1441298168:1'),(1324,1309,'_edit_last','1'),(1325,1309,'_edit_lock','1437665403:1'),(1326,1309,'_wp_page_template','default'),(1327,1309,'slide_template','default'),(1328,1309,'accesspress_pro_sidebar_layout','right-sidebar'),(1329,1311,'_edit_last','1'),(1330,1311,'_edit_lock','1437665437:1'),(1331,1311,'_wp_page_template','default'),(1332,1311,'slide_template','default'),(1333,1311,'accesspress_pro_sidebar_layout','right-sidebar'),(1334,1313,'_edit_last','1'),(1335,1313,'_wp_page_template','default'),(1336,1313,'slide_template','default'),(1337,1313,'accesspress_pro_sidebar_layout','right-sidebar'),(1338,1313,'_edit_lock','1437665453:1'),(1339,1315,'_edit_last','1'),(1340,1315,'_wp_page_template','default'),(1341,1315,'slide_template','default'),(1342,1315,'accesspress_pro_sidebar_layout','right-sidebar'),(1343,1315,'_edit_lock','1437665478:1'),(1344,1317,'_menu_item_type','post_type'),(1345,1317,'_menu_item_menu_item_parent','0'),(1346,1317,'_menu_item_object_id','1307'),(1347,1317,'_menu_item_object','page'),(1348,1317,'_menu_item_target',''),(1349,1317,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1350,1317,'_menu_item_xfn',''),(1351,1317,'_menu_item_url',''),(1389,1322,'_menu_item_type','custom'),(1390,1322,'_menu_item_menu_item_parent','1317'),(1391,1322,'_menu_item_object_id','1322'),(1392,1322,'_menu_item_object','custom'),(1393,1322,'_menu_item_target',''),(1394,1322,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1395,1322,'_menu_item_xfn',''),(1396,1322,'_menu_item_url','http://mytcbonline.churchonline.org/#'),(1398,1323,'_menu_item_type','custom'),(1399,1323,'_menu_item_menu_item_parent','1317'),(1400,1323,'_menu_item_object_id','1323'),(1401,1323,'_menu_item_object','custom'),(1402,1323,'_menu_item_target',''),(1403,1323,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1404,1323,'_menu_item_xfn',''),(1405,1323,'_menu_item_url','http://wwwtwincitybaptistcom.sermon.net/main/main/20477922'),(1411,1374,'_menu_item_type','custom'),(1412,1374,'_menu_item_menu_item_parent','0'),(1413,1374,'_menu_item_object_id','1374'),(1414,1374,'_menu_item_object','custom'),(1415,1374,'_menu_item_target',''),(1416,1374,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1417,1374,'_menu_item_xfn',''),(1418,1374,'_menu_item_url','?phpinclude(TEMPLATEPATH.\'/searchform.php\');?'),(1420,1375,'_edit_last','1'),(1421,1375,'_edit_lock','1437688871:1'),(1422,1375,'_wp_page_template','default'),(1423,1375,'slide_template','default'),(1424,1375,'accesspress_pro_sidebar_layout','right-sidebar'),(1425,1378,'_wp_attached_file','2015/08/5tctMGNx.jpg'),(1426,1378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:256;s:6:\"height\";i:256;s:4:\"file\";s:20:\"2015/08/5tctMGNx.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"5tctMGNx-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:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1430,1380,'_wp_attached_file','2015/08/DeathtoStock_Medium6-e1438870641766.jpg'),(1431,1380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:400;s:4:\"file\";s:47:\"2015/08/DeathtoStock_Medium6-e1438870641766.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"DeathtoStock_Medium6-e1438870615327-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:46:\"DeathtoStock_Medium6-e1438870615327-300x60.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"DeathtoStock_Medium6-e1438870615327-1024x205.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:47:\"DeathtoStock_Medium6-e1438870615327-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:47:\"DeathtoStock_Medium6-e1438870615327-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:47:\"DeathtoStock_Medium6-e1438870615327-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:47:\"DeathtoStock_Medium6-e1438870615327-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:2.20000000000000017763568394002504646778106689453125;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1420039063;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1432,1381,'_edit_last','1'),(1433,1381,'_edit_lock','1438695079:1'),(1434,1381,'_wp_page_template','default'),(1435,1381,'slide_template','default'),(1436,1381,'accesspress_pro_sidebar_layout','right-sidebar'),(1453,1387,'_form','<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Best Email (required)<br />\n [email* your-email] </p>\n\n<p>Best Phone<br />\n [tel tel-885] </p>\n\n<p>Ministry<br />\n [select* subject \"Connect Team\" \"City Kids Team\" \"City Teens Team\" \"City University Team\" \"Music Team\" \"Audio/Video/Tech Team\" \"Creative Arts Team\" \"City Cafe\' Team\" \"Maintenance Team\" \"I just want to serve.\"] </p> \n\n<p>Comments/Questions<br />\n [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>'),(1454,1387,'_mail','a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:34:\"[your-name] <mr.eaton14@gmail.com>\";s:4:\"body\";s:185:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a Serve Request form on Twin City Baptist (http://www.mytwincity.org)\";s:9:\"recipient\";s:19:\"lbzford@hotmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1455,1387,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:40:\"Twin City Baptist <mr.eaton14@gmail.com>\";s:4:\"body\";s:121:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Twin City Baptist (http://www.mytwincity.org)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:30:\"Reply-To: mr.eaton14@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1456,1387,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}'),(1457,1387,'_additional_settings',''),(1458,1387,'_locale','en_US'),(1465,1394,'_menu_item_type','custom'),(1466,1394,'_menu_item_menu_item_parent','103'),(1467,1394,'_menu_item_object_id','1394'),(1468,1394,'_menu_item_object','custom'),(1469,1394,'_menu_item_target',''),(1470,1394,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1471,1394,'_menu_item_xfn',''),(1472,1394,'_menu_item_url','http://www.twincitychristian.com'),(1474,1395,'_menu_item_type','custom'),(1475,1395,'_menu_item_menu_item_parent','103'),(1476,1395,'_menu_item_object_id','1395'),(1477,1395,'_menu_item_object','custom'),(1478,1395,'_menu_item_target',''),(1479,1395,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1480,1395,'_menu_item_xfn',''),(1481,1395,'_menu_item_url','http://wcmxradio.com/index.html'),(1540,1410,'_EventOrigin','events-calendar'),(1541,1410,'_edit_lock','1438717990:1'),(1542,1410,'_edit_last','1'),(1543,1411,'_wp_attached_file','2015/08/volleyball-520259_1920.jpg'),(1544,1411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1103;s:4:\"file\";s:34:\"2015/08/volleyball-520259_1920.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"volleyball-520259_1920-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:34:\"volleyball-520259_1920-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"volleyball-520259_1920-1024x588.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:34:\"volleyball-520259_1920-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:34:\"volleyball-520259_1920-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:34:\"volleyball-520259_1920-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:34:\"volleyball-520259_1920-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1545,1410,'_thumbnail_id','1411'),(1546,1410,'slide_template','default'),(1547,1410,'_EventShowMapLink','1'),(1548,1410,'_EventShowMap','1'),(1549,1412,'_VenueOrigin','events-calendar'),(1550,1412,'_EventShowMapLink',''),(1551,1412,'_EventShowMap',''),(1552,1412,'_VenueVenue','Twin City Larson Center'),(1553,1412,'_VenueAddress','194 Electric Ave.'),(1554,1412,'_VenueCity','Lunenburg'),(1555,1412,'_VenueCountry','United States'),(1556,1412,'_VenueProvince',''),(1557,1412,'_VenueState','MA'),(1558,1412,'_VenueZip','01462'),(1559,1412,'_VenuePhone','9785824901'),(1560,1412,'_VenueURL',''),(1561,1412,'_VenueStateProvince','MA'),(1562,1410,'_EventStartDate','2015-08-04 18:30:00'),(1563,1410,'_EventEndDate','2015-08-04 20:30:00'),(1564,1410,'_EventDuration','7200'),(1565,1410,'_EventVenueID','1412'),(1566,1410,'_EventCurrencySymbol',''),(1567,1410,'_EventCurrencyPosition','prefix'),(1569,1410,'_EventURL','https://www.facebook.com/events/408701986004019/'),(1572,1412,'_edit_lock','1438714486:1'),(1582,1410,'_EventCost',''),(1583,1410,'_EventOrganizerID','0'),(1584,1412,'_edit_last','1'),(1585,1412,'_VenueShowMap','true'),(1586,1412,'_VenueShowMapLink','true'),(1587,1412,'slide_template','default'),(1599,1443,'_edit_lock','1443927748:1'),(1600,1443,'_edit_last','1'),(1602,1443,'_wp_page_template','default'),(1603,1443,'slide_template','default'),(1604,1443,'accesspress_pro_sidebar_layout','no-sidebar'),(1605,1445,'_menu_item_type','post_type'),(1606,1445,'_menu_item_menu_item_parent','101'),(1607,1445,'_menu_item_object_id','1443'),(1608,1445,'_menu_item_object','page'),(1609,1445,'_menu_item_target',''),(1610,1445,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1611,1445,'_menu_item_xfn',''),(1612,1445,'_menu_item_url',''),(1615,1480,'_wp_attached_file','2015/08/water-drops-baptism-still-e1438796792947.jpg'),(1616,1480,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1915;s:6:\"height\";i:259;s:4:\"file\";s:52:\"2015/08/water-drops-baptism-still-e1438796792947.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"water-drops-baptism-still-e1438796792947-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:51:\"water-drops-baptism-still-e1438796792947-300x41.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"water-drops-baptism-still-e1438796792947-1024x138.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:52:\"water-drops-baptism-still-e1438796792947-900x259.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:52:\"water-drops-baptism-still-e1438796792947-560x259.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:52:\"water-drops-baptism-still-e1438796792947-540x259.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:52:\"water-drops-baptism-still-e1438796792947-380x259.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1617,1493,'_wp_attached_file','2015/08/volunteer-map-still-e1438796752414.jpg'),(1618,1493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1910;s:6:\"height\";i:326;s:4:\"file\";s:46:\"2015/08/volunteer-map-still-e1438796752414.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"volunteer-map-still-e1438796752414-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"volunteer-map-still-e1438796752414-300x51.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:51;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"volunteer-map-still-e1438796752414-1024x175.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:46:\"volunteer-map-still-e1438796752414-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:46:\"volunteer-map-still-e1438796752414-560x326.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:326;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:46:\"volunteer-map-still-e1438796752414-540x326.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:326;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:46:\"volunteer-map-still-e1438796752414-380x326.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:326;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1619,1496,'_wp_attached_file','2015/08/students-703003_1920-e1438796556159.jpg'),(1620,1496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1915;s:6:\"height\";i:518;s:4:\"file\";s:47:\"2015/08/students-703003_1920-e1438796556159.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"students-703003_1920-e1438796556159-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:46:\"students-703003_1920-e1438796556159-300x81.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"students-703003_1920-e1438796556159-1024x277.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:47:\"students-703003_1920-e1438796556159-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:47:\"students-703003_1920-e1438796556159-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:47:\"students-703003_1920-e1438796556159-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:47:\"students-703003_1920-e1438796556159-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1622,1496,'_edit_lock','1438796426:1'),(1623,1496,'_wp_attachment_backup_sizes','a:8:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:1284;s:4:\"file\";s:24:\"students-703003_1920.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:32:\"students-703003_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:32:\"students-703003_1920-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:33:\"students-703003_1920-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"blog-header-orig\";a:4:{s:4:\"file\";s:32:\"students-703003_1920-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"portfolio-thumbnail-orig\";a:4:{s:4:\"file\";s:32:\"students-703003_1920-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"medium-thumbnail-orig\";a:4:{s:4:\"file\";s:32:\"students-703003_1920-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"team-thumbnail-orig\";a:4:{s:4:\"file\";s:32:\"students-703003_1920-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1624,1496,'su_slide_link',''),(1625,1496,'_edit_last','1'),(1626,1493,'_wp_attachment_backup_sizes','a:8:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:23:\"volunteer-map-still.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:31:\"volunteer-map-still-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:31:\"volunteer-map-still-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:32:\"volunteer-map-still-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"blog-header-orig\";a:4:{s:4:\"file\";s:31:\"volunteer-map-still-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"portfolio-thumbnail-orig\";a:4:{s:4:\"file\";s:31:\"volunteer-map-still-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"medium-thumbnail-orig\";a:4:{s:4:\"file\";s:31:\"volunteer-map-still-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"team-thumbnail-orig\";a:4:{s:4:\"file\";s:31:\"volunteer-map-still-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1627,1480,'_wp_attachment_backup_sizes','a:8:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:29:\"water-drops-baptism-still.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:37:\"water-drops-baptism-still-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:37:\"water-drops-baptism-still-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:38:\"water-drops-baptism-still-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"blog-header-orig\";a:4:{s:4:\"file\";s:37:\"water-drops-baptism-still-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"portfolio-thumbnail-orig\";a:4:{s:4:\"file\";s:37:\"water-drops-baptism-still-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"medium-thumbnail-orig\";a:4:{s:4:\"file\";s:37:\"water-drops-baptism-still-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"team-thumbnail-orig\";a:4:{s:4:\"file\";s:37:\"water-drops-baptism-still-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1630,1380,'_edit_lock','1438870243:1'),(1631,1380,'_wp_attachment_backup_sizes','a:19:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:5552;s:6:\"height\";i:3701;s:4:\"file\";s:24:\"DeathtoStock_Medium6.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:33:\"DeathtoStock_Medium6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"blog-header-orig\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium6-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"portfolio-thumbnail-orig\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium6-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"medium-thumbnail-orig\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium6-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"team-thumbnail-orig\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium6-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1438870471184\";a:3:{s:5:\"width\";i:5552;s:6:\"height\";i:1165;s:4:\"file\";s:39:\"DeathtoStock_Medium6-e1438870369244.jpg\";}s:18:\"full-1438870559551\";a:3:{s:5:\"width\";i:1800;s:6:\"height\";i:378;s:4:\"file\";s:39:\"DeathtoStock_Medium6-e1438870471184.jpg\";}s:18:\"full-1438870565822\";a:3:{s:5:\"width\";i:1800;s:6:\"height\";i:378;s:4:\"file\";s:39:\"DeathtoStock_Medium6-e1438870559551.jpg\";}s:23:\"thumbnail-1438870565822\";a:4:{s:4:\"file\";s:47:\"DeathtoStock_Medium6-e1438870369244-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"medium-1438870565822\";a:4:{s:4:\"file\";s:46:\"DeathtoStock_Medium6-e1438870369244-300x63.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"large-1438870565822\";a:4:{s:4:\"file\";s:48:\"DeathtoStock_Medium6-e1438870369244-1024x215.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"blog-header-1438870565822\";a:4:{s:4:\"file\";s:47:\"DeathtoStock_Medium6-e1438870369244-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:33:\"portfolio-thumbnail-1438870565822\";a:4:{s:4:\"file\";s:47:\"DeathtoStock_Medium6-e1438870369244-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"medium-thumbnail-1438870565822\";a:4:{s:4:\"file\";s:47:\"DeathtoStock_Medium6-e1438870369244-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"team-thumbnail-1438870565822\";a:4:{s:4:\"file\";s:47:\"DeathtoStock_Medium6-e1438870369244-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1438870641766\";a:3:{s:5:\"width\";i:5552;s:6:\"height\";i:1110;s:4:\"file\";s:39:\"DeathtoStock_Medium6-e1438870615327.jpg\";}}'),(1632,1380,'su_slide_link',''),(1633,1380,'_edit_last','1'),(1635,1301,'accesspress_pro_page_header_image','http://www.mytwincity.org/wp-content/uploads/2015/08/DeathtoStock_Medium6-e1438870471184.jpg'),(1636,1503,'_wp_attached_file','2015/08/volunteer-652383-e1438870964817.jpg'),(1637,1503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1857;s:6:\"height\";i:465;s:4:\"file\";s:43:\"2015/08/volunteer-652383-e1438870964817.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"volunteer-652383-e1438870964817-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:\"volunteer-652383-e1438870964817-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"volunteer-652383-e1438870964817-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:43:\"volunteer-652383-e1438870964817-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:43:\"volunteer-652383-e1438870964817-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:43:\"volunteer-652383-e1438870964817-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:43:\"volunteer-652383-e1438870964817-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1638,1504,'_wp_attached_file','2015/08/hands-462296_1920-e1438870998784.jpg'),(1639,1504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1910;s:6:\"height\";i:513;s:4:\"file\";s:44:\"2015/08/hands-462296_1920-e1438870998784.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"hands-462296_1920-e1438870998784-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:43:\"hands-462296_1920-e1438870998784-300x81.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"hands-462296_1920-e1438870998784-1024x275.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:44:\"hands-462296_1920-e1438870998784-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:44:\"hands-462296_1920-e1438870998784-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:44:\"hands-462296_1920-e1438870998784-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:44:\"hands-462296_1920-e1438870998784-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1640,1503,'_wp_attachment_backup_sizes','a:8:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:20:\"volunteer-652383.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:28:\"volunteer-652383-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:28:\"volunteer-652383-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:29:\"volunteer-652383-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"blog-header-orig\";a:4:{s:4:\"file\";s:28:\"volunteer-652383-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"portfolio-thumbnail-orig\";a:4:{s:4:\"file\";s:28:\"volunteer-652383-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"medium-thumbnail-orig\";a:4:{s:4:\"file\";s:28:\"volunteer-652383-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"team-thumbnail-orig\";a:4:{s:4:\"file\";s:28:\"volunteer-652383-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1641,1504,'_wp_attachment_backup_sizes','a:8:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:1147;s:4:\"file\";s:21:\"hands-462296_1920.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:29:\"hands-462296_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:29:\"hands-462296_1920-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:30:\"hands-462296_1920-1024x612.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"blog-header-orig\";a:4:{s:4:\"file\";s:29:\"hands-462296_1920-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"portfolio-thumbnail-orig\";a:4:{s:4:\"file\";s:29:\"hands-462296_1920-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"medium-thumbnail-orig\";a:4:{s:4:\"file\";s:29:\"hands-462296_1920-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"team-thumbnail-orig\";a:4:{s:4:\"file\";s:29:\"hands-462296_1920-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1643,1505,'_wp_attached_file','2015/08/clasped-hands-541849_1920-e1438871603978.jpg'),(1644,1505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1915;s:6:\"height\";i:355;s:4:\"file\";s:52:\"2015/08/clasped-hands-541849_1920-e1438871603978.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"clasped-hands-541849_1920-e1438871603978-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:51:\"clasped-hands-541849_1920-e1438871603978-300x56.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:56;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"clasped-hands-541849_1920-e1438871603978-1024x190.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:52:\"clasped-hands-541849_1920-e1438871603978-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:52:\"clasped-hands-541849_1920-e1438871603978-560x355.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:52:\"clasped-hands-541849_1920-e1438871603978-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:52:\"clasped-hands-541849_1920-e1438871603978-380x355.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1645,1505,'_wp_attachment_backup_sizes','a:16:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:1536;s:4:\"file\";s:29:\"clasped-hands-541849_1920.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:37:\"clasped-hands-541849_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:37:\"clasped-hands-541849_1920-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:38:\"clasped-hands-541849_1920-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"blog-header-orig\";a:4:{s:4:\"file\";s:37:\"clasped-hands-541849_1920-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"portfolio-thumbnail-orig\";a:4:{s:4:\"file\";s:37:\"clasped-hands-541849_1920-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"medium-thumbnail-orig\";a:4:{s:4:\"file\";s:37:\"clasped-hands-541849_1920-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"team-thumbnail-orig\";a:4:{s:4:\"file\";s:37:\"clasped-hands-541849_1920-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1438871603978\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:604;s:4:\"file\";s:44:\"clasped-hands-541849_1920-e1438871350841.jpg\";}s:23:\"thumbnail-1438871603978\";a:4:{s:4:\"file\";s:52:\"clasped-hands-541849_1920-e1438871350841-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"medium-1438871603978\";a:4:{s:4:\"file\";s:51:\"clasped-hands-541849_1920-e1438871350841-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"large-1438871603978\";a:4:{s:4:\"file\";s:53:\"clasped-hands-541849_1920-e1438871350841-1024x322.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"blog-header-1438871603978\";a:4:{s:4:\"file\";s:52:\"clasped-hands-541849_1920-e1438871350841-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:33:\"portfolio-thumbnail-1438871603978\";a:4:{s:4:\"file\";s:52:\"clasped-hands-541849_1920-e1438871350841-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"medium-thumbnail-1438871603978\";a:4:{s:4:\"file\";s:52:\"clasped-hands-541849_1920-e1438871350841-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"team-thumbnail-1438871603978\";a:4:{s:4:\"file\";s:52:\"clasped-hands-541849_1920-e1438871350841-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1647,1506,'_edit_last','1'),(1648,1506,'_wp_page_template','default'),(1649,1506,'slide_template','default'),(1650,1506,'accesspress_pro_sidebar_layout','right-sidebar'),(1651,1506,'_edit_lock','1438963455:1'),(1661,1511,'_edit_lock','1438962811:1'),(1662,1511,'_edit_last','1'),(1663,1511,'_thumbnail_id','1411'),(1664,1511,'ecwd_event_location','194 Electric Avenue, Lunenburg, MA, United States'),(1665,1511,'ecwd_lat_long','42.5855941, -71.75338039999997'),(1666,1511,'ecwd_event_show_map','1'),(1667,1511,'ecwd_map_zoom','9'),(1668,1511,'ecwd_event_date_from','2015/08/11 18:30'),(1669,1511,'ecwd_event_date_to','2015/08/11 20:30'),(1670,1511,'ecwd_event_url','https://www.facebook.com/events/1385582071741424/'),(1671,1511,'ecwd_event_repeat_event','weekly'),(1672,1511,'ecwd_event_day','a:1:{i:0;s:7:\"tuesday\";}'),(1673,1511,'ecwd_event_repeat_how','1'),(1674,1511,'ecwd_event_repeat_month_on_days','1'),(1675,1511,'ecwd_event_repeat_year_on_days','1'),(1676,1511,'ecwd_event_repeat_repeat_until','2015/12/29'),(1677,1511,'slide_template',''),(1755,1518,'gce_expand_recurring','1'),(1756,1518,'gce_retrieve_from','today'),(1757,1518,'gce_retrieve_until','end_time'),(1758,1518,'gce_cache','43200'),(1759,1518,'gce_paging','1'),(1760,1518,'gce_list_start_offset_num','0'),(1761,1518,'gce_feed_end_num','2'),(1762,1518,'gce_feed_start_num','1'),(1763,1518,'gce_feed_end','years'),(1764,1518,'gce_feed_start','months'),(1765,1518,'gce_show_tooltips','1'),(1766,1518,'gce_display_start','time-date'),(1767,1518,'gce_display_start_text','Starts:'),(1768,1518,'gce_display_end','time-date'),(1769,1518,'gce_display_end_text','Ends:'),(1770,1518,'gce_display_separator',', '),(1771,1518,'gce_display_location_text','Location:'),(1772,1518,'gce_display_description_text','Description:'),(1773,1518,'gce_display_link','1'),(1774,1518,'gce_display_link_text','More Details'),(1775,1518,'_edit_lock','1441295410:1'),(1776,1518,'_edit_last','1'),(1777,1518,'slide_template','default'),(1778,1518,'gce_feed_url','napvhm3drlr71u0kddte7cvhvnpcds2o@import.calendar.google.com'),(1779,1518,'gce_date_format',''),(1780,1518,'gce_time_format',''),(1781,1518,'gce_multi_day_events','1'),(1782,1518,'gce_display_mode','grid'),(1783,1518,'gce_search_query',''),(1784,1518,'gce_events_per_page','days'),(1785,1518,'gce_per_page_num','7'),(1786,1518,'gce_list_start_offset_direction','back'),(1787,1518,'gce_feed_range_start',''),(1788,1518,'gce_feed_range_end',''),(1789,1518,'gce_display_description_max',''),(1790,1518,'gce_display_link_tab','1'),(1791,1518,'gce_display_simple','1'),(1792,1518,'gce_display_description','1'),(1793,1520,'_menu_item_type','post_type'),(1794,1520,'_menu_item_menu_item_parent','101'),(1795,1520,'_menu_item_object_id','1506'),(1796,1520,'_menu_item_object','page'),(1797,1520,'_menu_item_target',''),(1798,1520,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1799,1520,'_menu_item_xfn',''),(1800,1520,'_menu_item_url',''),(1803,1523,'_wp_attached_file','2015/07/STRONGER-SERMON-MAINpsd.jpg'),(1804,1523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1890;s:6:\"height\";i:1181;s:4:\"file\";s:35:\"2015/07/STRONGER-SERMON-MAINpsd.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"STRONGER-SERMON-MAINpsd-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:35:\"STRONGER-SERMON-MAINpsd-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"STRONGER-SERMON-MAINpsd-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:35:\"STRONGER-SERMON-MAINpsd-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:35:\"STRONGER-SERMON-MAINpsd-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:35:\"STRONGER-SERMON-MAINpsd-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:35:\"STRONGER-SERMON-MAINpsd-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1806,1524,'_edit_lock','1441209382:1'),(1807,1524,'_edit_last','1'),(1808,1525,'_wp_attached_file','2015/09/WCMX-WEB_wide.jpg'),(1809,1525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:480;s:4:\"file\";s:25:\"2015/09/WCMX-WEB_wide.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"WCMX-WEB_wide-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:\"WCMX-WEB_wide-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:25:\"WCMX-WEB_wide-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"WCMX-WEB_wide-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:25:\"WCMX-WEB_wide-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:25:\"WCMX-WEB_wide-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1810,1524,'_thumbnail_id','1525'),(1812,1524,'slide_template','default'),(1813,1527,'_wp_attached_file','2015/09/church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6.jpg'),(1814,1527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:72:\"2015/09/church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:72:\"church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6-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:72:\"church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:72:\"church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:72:\"church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:72:\"church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6-500x350.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:72:\"church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1815,1531,'_wp_attached_file','2015/09/power-logo-color-01.png'),(1816,1531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1737;s:6:\"height\";i:1062;s:4:\"file\";s:31:\"2015/09/power-logo-color-01.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"power-logo-color-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"power-logo-color-01-300x183.png\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"power-logo-color-01-1024x626.png\";s:5:\"width\";i:1024;s:6:\"height\";i:626;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:31:\"power-logo-color-01-900x300.png\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:31:\"power-logo-color-01-560x450.png\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:31:\"power-logo-color-01-540x350.png\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:31:\"power-logo-color-01-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1817,1532,'_wp_attached_file','2015/09/sermon.net_.jpg'),(1818,1532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:138;s:6:\"height\";i:138;s:4:\"file\";s:23:\"2015/09/sermon.net_.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1819,1533,'_menu_item_type','custom'),(1820,1533,'_menu_item_menu_item_parent','1317'),(1821,1533,'_menu_item_object_id','1533'),(1822,1533,'_menu_item_object','custom'),(1823,1533,'_menu_item_target',''),(1824,1533,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1825,1533,'_menu_item_xfn',''),(1826,1533,'_menu_item_url','http://www.facebook.com/twincitybaptist'),(1828,1534,'_menu_item_type','custom'),(1829,1534,'_menu_item_menu_item_parent','1317'),(1830,1534,'_menu_item_object_id','1534'),(1831,1534,'_menu_item_object','custom'),(1832,1534,'_menu_item_target',''),(1833,1534,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1834,1534,'_menu_item_xfn',''),(1835,1534,'_menu_item_url','http://www.twitter.com/twincitybaptist'),(1837,19,'_panels_data_preview','a:3:{s:7:\"widgets\";a:10:{i:0;a:5:{s:6:\"filter\";s:1:\"1\";s:4:\"text\";s:249:\"<h3>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.[/ap_tagline_box]</h3><p> </p>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:30:\"WP_Widget_Black_Studio_TinyMCE\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;}}i:1;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-rocket\";s:18:\"icon_text_readmore\";s:9:\"City Kids\";s:23:\"icon_text_readmore_link\";s:43:\"http://www.mytwincity.org/connect/city-kids/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:16:\"fa fa-tachometer\";s:18:\"icon_text_readmore\";s:10:\"City Teens\";s:23:\"icon_text_readmore_link\";s:44:\"http://www.mytwincity.org/connect/city-teens/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:16:\"fa fa-university\";s:18:\"icon_text_readmore\";s:15:\"City University\";s:23:\"icon_text_readmore_link\";s:46:\"http://www.mytwincity.org/connect/c-university/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-coffee\";s:18:\"icon_text_readmore\";s:9:\"City Life\";s:23:\"icon_text_readmore_link\";s:46:\"http://www.mytwincity.org/connect/young-adults/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:10:\"fa fa-male\";s:18:\"icon_text_readmore\";s:14:\"Men\'s Ministry\";s:23:\"icon_text_readmore_link\";s:37:\"http://www.mytwincity.org/connect/men/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-female\";s:18:\"icon_text_readmore\";s:16:\"Women\'s Ministry\";s:23:\"icon_text_readmore_link\";s:39:\"http://www.mytwincity.org/connect/women/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:13:\"fa fa-compass\";s:18:\"icon_text_readmore\";s:25:\"Senior Citizen\'s Ministry\";s:23:\"icon_text_readmore_link\";s:46:\"http://www.mytwincity.org/connect/city-seniors/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:7;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:20:\"fa fa-graduation-cap\";s:18:\"icon_text_readmore\";s:16:\"Christian School\";s:23:\"icon_text_readmore_link\";s:33:\"http://www.twincitychristian.com/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:8;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:11:\"fa fa-music\";s:18:\"icon_text_readmore\";s:24:\"\"The Power\" AM 1000 WCMX\";s:23:\"icon_text_readmore_link\";s:21:\"http://wcmxradio.com/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:9;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1838,19,'panels_data','a:3:{s:7:\"widgets\";a:10:{i:0;a:5:{s:6:\"filter\";s:1:\"1\";s:4:\"text\";s:249:\"<h3>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.[/ap_tagline_box]</h3><p> </p>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:30:\"WP_Widget_Black_Studio_TinyMCE\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;}}i:1;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-rocket\";s:18:\"icon_text_readmore\";s:9:\"City Kids\";s:23:\"icon_text_readmore_link\";s:43:\"http://www.mytwincity.org/connect/city-kids/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:16:\"fa fa-tachometer\";s:18:\"icon_text_readmore\";s:10:\"City Teens\";s:23:\"icon_text_readmore_link\";s:44:\"http://www.mytwincity.org/connect/city-teens/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:16:\"fa fa-university\";s:18:\"icon_text_readmore\";s:15:\"City University\";s:23:\"icon_text_readmore_link\";s:46:\"http://www.mytwincity.org/connect/c-university/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-coffee\";s:18:\"icon_text_readmore\";s:9:\"City Life\";s:23:\"icon_text_readmore_link\";s:46:\"http://www.mytwincity.org/connect/young-adults/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:10:\"fa fa-male\";s:18:\"icon_text_readmore\";s:14:\"Men\'s Ministry\";s:23:\"icon_text_readmore_link\";s:37:\"http://www.mytwincity.org/connect/men/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-female\";s:18:\"icon_text_readmore\";s:16:\"Women\'s Ministry\";s:23:\"icon_text_readmore_link\";s:39:\"http://www.mytwincity.org/connect/women/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:13:\"fa fa-compass\";s:18:\"icon_text_readmore\";s:25:\"Senior Citizen\'s Ministry\";s:23:\"icon_text_readmore_link\";s:46:\"http://www.mytwincity.org/connect/city-seniors/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:7;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:20:\"fa fa-graduation-cap\";s:18:\"icon_text_readmore\";s:16:\"Christian School\";s:23:\"icon_text_readmore_link\";s:33:\"http://www.twincitychristian.com/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:8;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:11:\"fa fa-music\";s:18:\"icon_text_readmore\";s:24:\"\"The Power\" AM 1000 WCMX\";s:23:\"icon_text_readmore_link\";s:21:\"http://wcmxradio.com/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:9;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1839,1547,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:5:{s:6:\"filter\";s:1:\"1\";s:4:\"text\";s:249:\"<h3>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.[/ap_tagline_box]</h3><p> </p>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:30:\"WP_Widget_Black_Studio_TinyMCE\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;}}i:1;a:7:{s:15:\"icon_text_title\";s:9:\"City Kids\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-rocket\";s:18:\"icon_text_readmore\";s:0:\"\";s:23:\"icon_text_readmore_link\";s:43:\"http://www.mytwincity.org/connect/city-kids/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1840,1545,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:5:{s:6:\"filter\";s:1:\"1\";s:4:\"text\";s:249:\"<h3>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.[/ap_tagline_box]</h3><p> </p>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:30:\"WP_Widget_Black_Studio_TinyMCE\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;}}i:1;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-rocket\";s:18:\"icon_text_readmore\";s:9:\"City Kids\";s:23:\"icon_text_readmore_link\";s:43:\"http://www.mytwincity.org/connect/city-kids/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1841,1545,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:5:{s:6:\"filter\";s:1:\"1\";s:4:\"text\";s:249:\"<h3>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.[/ap_tagline_box]</h3><p> </p>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:30:\"WP_Widget_Black_Studio_TinyMCE\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;}}i:1;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-rocket\";s:18:\"icon_text_readmore\";s:9:\"City Kids\";s:23:\"icon_text_readmore_link\";s:43:\"http://www.mytwincity.org/connect/city-kids/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1842,1545,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:5:{s:6:\"filter\";s:1:\"1\";s:4:\"text\";s:249:\"<h3>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.[/ap_tagline_box]</h3><p> </p>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:30:\"WP_Widget_Black_Studio_TinyMCE\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;}}i:1;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-rocket\";s:18:\"icon_text_readmore\";s:9:\"City Kids\";s:23:\"icon_text_readmore_link\";s:43:\"http://www.mytwincity.org/connect/city-kids/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1843,1545,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:5:{s:6:\"filter\";s:1:\"1\";s:4:\"text\";s:249:\"<h3>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.[/ap_tagline_box]</h3><p> </p>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:30:\"WP_Widget_Black_Studio_TinyMCE\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;}}i:1;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-rocket\";s:18:\"icon_text_readmore\";s:9:\"City Kids\";s:23:\"icon_text_readmore_link\";s:43:\"http://www.mytwincity.org/connect/city-kids/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1844,1545,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:5:{s:6:\"filter\";s:1:\"1\";s:4:\"text\";s:249:\"<h3>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.[/ap_tagline_box]</h3><p> </p>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:30:\"WP_Widget_Black_Studio_TinyMCE\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;}}i:1;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-rocket\";s:18:\"icon_text_readmore\";s:9:\"City Kids\";s:23:\"icon_text_readmore_link\";s:43:\"http://www.mytwincity.org/connect/city-kids/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1845,1545,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:5:{s:6:\"filter\";s:1:\"1\";s:4:\"text\";s:249:\"<h3>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.[/ap_tagline_box]</h3><p> </p>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:30:\"WP_Widget_Black_Studio_TinyMCE\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;}}i:1;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-rocket\";s:18:\"icon_text_readmore\";s:9:\"City Kids\";s:23:\"icon_text_readmore_link\";s:43:\"http://www.mytwincity.org/connect/city-kids/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1846,1545,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:5:{s:6:\"filter\";s:1:\"1\";s:4:\"text\";s:249:\"<h3>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.[/ap_tagline_box]</h3><p> </p>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:30:\"WP_Widget_Black_Studio_TinyMCE\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;}}i:1;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-rocket\";s:18:\"icon_text_readmore\";s:9:\"City Kids\";s:23:\"icon_text_readmore_link\";s:43:\"http://www.mytwincity.org/connect/city-kids/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1847,1548,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:5:{s:6:\"filter\";s:1:\"1\";s:4:\"text\";s:249:\"<h3>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.[/ap_tagline_box]</h3><p> </p>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:30:\"WP_Widget_Black_Studio_TinyMCE\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;}}i:1;a:7:{s:15:\"icon_text_title\";s:0:\"\";s:17:\"icon_text_content\";s:0:\"\";s:14:\"icon_text_icon\";s:12:\"fa fa-rocket\";s:18:\"icon_text_readmore\";s:9:\"City Kids\";s:23:\"icon_text_readmore_link\";s:43:\"http://www.mytwincity.org/connect/city-kids/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1848,1558,'_edit_lock','1441298679:1'),(1849,1558,'_edit_last','1'),(1850,1558,'_wp_page_template','default'),(1851,1558,'slide_template','default'),(1852,1558,'accesspress_pro_sidebar_layout','right-sidebar'),(1853,1560,'_menu_item_type','post_type'),(1854,1560,'_menu_item_menu_item_parent','118'),(1855,1560,'_menu_item_object_id','1558'),(1856,1560,'_menu_item_object','page'),(1857,1560,'_menu_item_target',''),(1858,1560,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1859,1560,'_menu_item_xfn',''),(1860,1560,'_menu_item_url',''),(1862,1567,'_wp_attached_file','2015/07/FOUNDER.jpg'),(1863,1567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:432;s:6:\"height\";i:379;s:4:\"file\";s:19:\"2015/07/FOUNDER.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"FOUNDER-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:19:\"FOUNDER-300x263.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:19:\"FOUNDER-432x300.jpg\";s:5:\"width\";i:432;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:19:\"FOUNDER-432x350.jpg\";s:5:\"width\";i:432;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:19:\"FOUNDER-380x379.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1864,1568,'_wp_attached_file','2015/07/family-pic.jpg'),(1865,1568,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:327;s:4:\"file\";s:22:\"2015/07/family-pic.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"family-pic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"family-pic-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:22:\"family-pic-500x300.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:22:\"family-pic-380x327.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1866,1585,'_wp_attached_file','2015/07/CITY-TEENS-BANNER_wide.jpg'),(1867,1585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:480;s:4:\"file\";s:34:\"2015/07/CITY-TEENS-BANNER_wide.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"CITY-TEENS-BANNER_wide-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:34:\"CITY-TEENS-BANNER_wide-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:34:\"CITY-TEENS-BANNER_wide-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:34:\"CITY-TEENS-BANNER_wide-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:34:\"CITY-TEENS-BANNER_wide-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:34:\"CITY-TEENS-BANNER_wide-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1868,1589,'gce_expand_recurring','1'),(1869,1589,'gce_retrieve_from','today'),(1870,1589,'gce_retrieve_until','end_time'),(1871,1589,'gce_cache','43200'),(1872,1589,'gce_paging','1'),(1873,1589,'gce_list_start_offset_num','0'),(1874,1589,'gce_feed_end_num','2'),(1875,1589,'gce_feed_start_num','1'),(1876,1589,'gce_feed_end','years'),(1877,1589,'gce_feed_start','months'),(1878,1589,'gce_show_tooltips','1'),(1879,1589,'gce_display_start','time'),(1880,1589,'gce_display_start_text','Starts:'),(1881,1589,'gce_display_end','time-date'),(1882,1589,'gce_display_end_text','Ends:'),(1883,1589,'gce_display_separator',', '),(1884,1589,'gce_display_location_text','Location:'),(1885,1589,'gce_display_description_text','Description:'),(1886,1589,'gce_display_link','1'),(1887,1589,'gce_display_link_text','More Details'),(1888,1589,'_edit_last','1'),(1889,1589,'slide_template','default'),(1890,1589,'gce_feed_url','igc9vu86897302rbneak64urbg@group.calendar.google.com'),(1891,1589,'gce_date_format',''),(1892,1589,'gce_time_format',''),(1893,1589,'gce_display_mode','grid'),(1894,1589,'gce_search_query',''),(1895,1589,'gce_events_per_page','days'),(1896,1589,'gce_per_page_num','7'),(1897,1589,'gce_list_start_offset_direction','back'),(1898,1589,'gce_feed_range_start',''),(1899,1589,'gce_feed_range_end',''),(1900,1589,'gce_display_description_max',''),(1901,1589,'_edit_lock','1441313115:1'),(1902,1597,'_wp_attached_file','2015/07/man-on-wall.jpeg'),(1903,1597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1459;s:4:\"file\";s:24:\"2015/07/man-on-wall.jpeg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"man-on-wall-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"man-on-wall-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"man-on-wall-1024x576.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:24:\"man-on-wall-900x300.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:24:\"man-on-wall-560x450.jpeg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:24:\"man-on-wall-540x350.jpeg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:24:\"man-on-wall-380x380.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1904,1600,'_wp_attached_file','2015/07/womantablet.jpeg'),(1905,1600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5000;s:6:\"height\";i:3333;s:4:\"file\";s:24:\"2015/07/womantablet.jpeg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"womantablet-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"womantablet-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"womantablet-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:24:\"womantablet-900x300.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:24:\"womantablet-560x450.jpeg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:24:\"womantablet-540x350.jpeg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:24:\"womantablet-380x380.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1906,33,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:1570;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1441382593;}'),(1915,45,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:1591;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1443541972;}'),(1916,1620,'_menu_item_type','post_type'),(1917,1620,'_menu_item_menu_item_parent','118'),(1918,1620,'_menu_item_object_id','35'),(1919,1620,'_menu_item_object','page'),(1920,1620,'_menu_item_target',''),(1921,1620,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1922,1620,'_menu_item_xfn',''),(1923,1620,'_menu_item_url',''),(1925,1623,'_wp_attached_file','2015/07/moritzfam.jpg'),(1926,1623,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:667;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2015/07/moritzfam.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"moritzfam-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:\"moritzfam-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:21:\"moritzfam-667x300.jpg\";s:5:\"width\";i:667;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:21:\"moritzfam-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:21:\"moritzfam-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:21:\"moritzfam-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1927,1636,'_menu_item_type','post_type'),(1928,1636,'_menu_item_menu_item_parent','0'),(1929,1636,'_menu_item_object_id','1311'),(1930,1636,'_menu_item_object','page'),(1931,1636,'_menu_item_target',''),(1932,1636,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1933,1636,'_menu_item_xfn',''),(1934,1636,'_menu_item_url',''),(1936,1637,'_menu_item_type','custom'),(1937,1637,'_menu_item_menu_item_parent','0'),(1938,1637,'_menu_item_object_id','1637'),(1939,1637,'_menu_item_object','custom'),(1940,1637,'_menu_item_target',''),(1941,1637,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1942,1637,'_menu_item_xfn',''),(1943,1637,'_menu_item_url','http://www.mytwincity.org/new/'),(1945,1638,'_menu_item_type','custom'),(1946,1638,'_menu_item_menu_item_parent','0'),(1947,1638,'_menu_item_object_id','1638'),(1948,1638,'_menu_item_object','custom'),(1949,1638,'_menu_item_target',''),(1950,1638,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1951,1638,'_menu_item_xfn',''),(1952,1638,'_menu_item_url','http://www.mytwincity.org/new/'),(1954,1639,'_menu_item_type','post_type'),(1955,1639,'_menu_item_menu_item_parent','0'),(1956,1639,'_menu_item_object_id','1381'),(1957,1639,'_menu_item_object','page'),(1958,1639,'_menu_item_target',''),(1959,1639,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1960,1639,'_menu_item_xfn',''),(1961,1639,'_menu_item_url',''),(1963,1640,'_menu_item_type','custom'),(1964,1640,'_menu_item_menu_item_parent','0'),(1965,1640,'_menu_item_object_id','1640'),(1966,1640,'_menu_item_object','custom'),(1967,1640,'_menu_item_target',''),(1968,1640,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1969,1640,'_menu_item_xfn',''),(1970,1640,'_menu_item_url','http://www.mytwincity.org/give/'),(1972,1641,'_menu_item_type','custom'),(1973,1641,'_menu_item_menu_item_parent','0'),(1974,1641,'_menu_item_object_id','1641'),(1975,1641,'_menu_item_object','custom'),(1976,1641,'_menu_item_target',''),(1977,1641,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1978,1641,'_menu_item_xfn',''),(1979,1641,'_menu_item_url','http://www.mytwincity.org/new/doctrine/'),(1981,1642,'_menu_item_type','post_type'),(1982,1642,'_menu_item_menu_item_parent','0'),(1983,1642,'_menu_item_object_id','33'),(1984,1642,'_menu_item_object','page'),(1985,1642,'_menu_item_target',''),(1986,1642,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1987,1642,'_menu_item_xfn',''),(1988,1642,'_menu_item_url',''),(2017,1646,'_menu_item_type','post_type'),(2018,1646,'_menu_item_menu_item_parent','0'),(2019,1646,'_menu_item_object_id','133'),(2020,1646,'_menu_item_object','page'),(2021,1646,'_menu_item_target',''),(2022,1646,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2023,1646,'_menu_item_xfn',''),(2024,1646,'_menu_item_url',''),(2053,1650,'_menu_item_type','post_type'),(2054,1650,'_menu_item_menu_item_parent','0'),(2055,1650,'_menu_item_object_id','1315'),(2056,1650,'_menu_item_object','page'),(2057,1650,'_menu_item_target',''),(2058,1650,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2059,1650,'_menu_item_xfn',''),(2060,1650,'_menu_item_url',''),(2062,1651,'_menu_item_type','post_type'),(2063,1651,'_menu_item_menu_item_parent','0'),(2064,1651,'_menu_item_object_id','1313'),(2065,1651,'_menu_item_object','page'),(2066,1651,'_menu_item_target',''),(2067,1651,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2068,1651,'_menu_item_xfn',''),(2069,1651,'_menu_item_url',''),(2071,1652,'_menu_item_type','post_type'),(2072,1652,'_menu_item_menu_item_parent','0'),(2073,1652,'_menu_item_object_id','1311'),(2074,1652,'_menu_item_object','page'),(2075,1652,'_menu_item_target',''),(2076,1652,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2077,1652,'_menu_item_xfn',''),(2078,1652,'_menu_item_url',''),(2080,1653,'_menu_item_type','post_type'),(2081,1653,'_menu_item_menu_item_parent','0'),(2082,1653,'_menu_item_object_id','1309'),(2083,1653,'_menu_item_object','page'),(2084,1653,'_menu_item_target',''),(2085,1653,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2086,1653,'_menu_item_xfn',''),(2087,1653,'_menu_item_url',''),(2089,1654,'_menu_item_type','custom'),(2090,1654,'_menu_item_menu_item_parent','0'),(2091,1654,'_menu_item_object_id','1654'),(2092,1654,'_menu_item_object','custom'),(2093,1654,'_menu_item_target',''),(2094,1654,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2095,1654,'_menu_item_xfn',''),(2096,1654,'_menu_item_url','http://www.facebook.com/twincitybaptist'),(2098,1655,'_menu_item_type','custom'),(2099,1655,'_menu_item_menu_item_parent','0'),(2100,1655,'_menu_item_object_id','1655'),(2101,1655,'_menu_item_object','custom'),(2102,1655,'_menu_item_target',''),(2103,1655,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2104,1655,'_menu_item_xfn',''),(2105,1655,'_menu_item_url','http://www.twitter.com/twincitybaptist'),(2107,1656,'_menu_item_type','post_type'),(2108,1656,'_menu_item_menu_item_parent','0'),(2109,1656,'_menu_item_object_id','39'),(2110,1656,'_menu_item_object','page'),(2111,1656,'_menu_item_target',''),(2112,1656,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2113,1656,'_menu_item_xfn',''),(2114,1656,'_menu_item_url',''),(2116,1657,'_menu_item_type','post_type'),(2117,1657,'_menu_item_menu_item_parent','0'),(2118,1657,'_menu_item_object_id','37'),(2119,1657,'_menu_item_object','page'),(2120,1657,'_menu_item_target',''),(2121,1657,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2122,1657,'_menu_item_xfn',''),(2123,1657,'_menu_item_url',''),(2134,1659,'_menu_item_type','custom'),(2135,1659,'_menu_item_menu_item_parent','0'),(2136,1659,'_menu_item_object_id','1659'),(2137,1659,'_menu_item_object','custom'),(2138,1659,'_menu_item_target',''),(2139,1659,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2140,1659,'_menu_item_xfn',''),(2141,1659,'_menu_item_url','http://www.mytwincity.org/contact-2/'),(2143,1660,'_menu_item_type','custom'),(2144,1660,'_menu_item_menu_item_parent','0'),(2145,1660,'_menu_item_object_id','1660'),(2146,1660,'_menu_item_object','custom'),(2147,1660,'_menu_item_target',''),(2148,1660,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2149,1660,'_menu_item_xfn',''),(2150,1660,'_menu_item_url','http://www.mytwincity.org/belong/'),(2152,1674,'_edit_lock','1443929262:1'),(2153,1674,'_edit_last','1'),(2154,1674,'_wp_page_template','default'),(2155,1674,'slide_template','default'),(2156,1674,'accesspress_pro_sidebar_layout','right-sidebar'),(2157,1682,'_edit_lock','1443894476:1'),(2158,1682,'_edit_last','1'),(2159,1682,'_wp_page_template','default'),(2160,1682,'slide_template','default'),(2161,1682,'accesspress_pro_sidebar_layout','no-sidebar'),(2162,1687,'_wp_attached_file','2015/09/BE-HAPPY_MAIN.jpg'),(2163,1687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1890;s:6:\"height\";i:1181;s:4:\"file\";s:25:\"2015/09/BE-HAPPY_MAIN.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"BE-HAPPY_MAIN-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:\"BE-HAPPY_MAIN-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"BE-HAPPY_MAIN-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:25:\"BE-HAPPY_MAIN-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"BE-HAPPY_MAIN-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:25:\"BE-HAPPY_MAIN-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:25:\"BE-HAPPY_MAIN-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(2164,1688,'_wp_attached_file','2015/09/Trunk-O-Treat-Full-Blue.jpg'),(2165,1688,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4320;s:6:\"height\";i:2788;s:4:\"file\";s:35:\"2015/09/Trunk-O-Treat-Full-Blue.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Trunk-O-Treat-Full-Blue-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:35:\"Trunk-O-Treat-Full-Blue-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Trunk-O-Treat-Full-Blue-1024x661.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:35:\"Trunk-O-Treat-Full-Blue-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:35:\"Trunk-O-Treat-Full-Blue-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:35:\"Trunk-O-Treat-Full-Blue-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:35:\"Trunk-O-Treat-Full-Blue-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:8;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1442546971;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(2166,1701,'_wp_attached_file','2015/10/Plain_Wood.jpg'),(2167,1701,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4000;s:6:\"height\";i:4000;s:4:\"file\";s:22:\"2015/10/Plain_Wood.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Plain_Wood-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Plain_Wood-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Plain_Wood-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:22:\"Plain_Wood-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:22:\"Plain_Wood-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:22:\"Plain_Wood-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:22:\"Plain_Wood-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2168,1293,'_thumbnail_id','1687'),(2170,1702,'_wp_attached_file','2015/10/TC_LOGO_ICON_small.tiff'),(2171,1703,'_wp_attached_file','2015/10/TC_LOGO_ICON_small.png'),(2172,1703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2015/10/TC_LOGO_ICON_small.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"TC_LOGO_ICON_small-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:30:\"TC_LOGO_ICON_small-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:30:\"TC_LOGO_ICON_small-500x300.png\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:30:\"TC_LOGO_ICON_small-500x450.png\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:30:\"TC_LOGO_ICON_small-500x350.png\";s:5:\"width\";i:500;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:30:\"TC_LOGO_ICON_small-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2173,1704,'_wp_attached_file','2015/10/TC_LOGO_ICON_small1.png'),(2174,1704,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2015/10/TC_LOGO_ICON_small1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"TC_LOGO_ICON_small1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"TC_LOGO_ICON_small1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:31:\"TC_LOGO_ICON_small1-500x300.png\";s:5:\"width\";i:500;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:31:\"TC_LOGO_ICON_small1-500x450.png\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:31:\"TC_LOGO_ICON_small1-500x350.png\";s:5:\"width\";i:500;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:31:\"TC_LOGO_ICON_small1-380x380.png\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2175,1705,'_edit_lock','1443926154:1'),(2176,1705,'_edit_last','1'),(2177,1705,'_wp_page_template','default'),(2178,1705,'slide_template','default'),(2179,1705,'_panels_data_preview','a:3:{s:7:\"widgets\";a:4:{i:0;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:36:\"Saved, Baptized, Added to the Church\";s:14:\"icon_text_icon\";s:16:\"fa fa-thumb-tack\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style3\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:7:{s:15:\"icon_text_title\";s:7:\"Connect\";s:17:\"icon_text_content\";s:33:\"With People near you and like you\";s:14:\"icon_text_icon\";s:10:\"fa fa-wifi\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:33:\"http://www.mytwincity.org/connect/\";s:15:\"icon_text_style\";s:6:\"style3\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:5:\"Serve\";s:17:\"icon_text_content\";s:28:\"Loving God by Serving People\";s:14:\"icon_text_icon\";s:12:\"fa fa-coffee\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:31:\"http://www.mytwincity.org/serve/\";s:15:\"icon_text_style\";s:6:\"style3\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:2;s:2:\"id\";i:2;s:5:\"style\";a:2:{s:10:\"background\";s:7:\"#ffffff\";s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:5:\"Bring\";s:17:\"icon_text_content\";s:43:\"Invest in and Invite others on your Journey\";s:14:\"icon_text_icon\";s:9:\"fa fa-bus\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:31:\"http://www.mytwincity.org/bring/\";s:15:\"icon_text_style\";s:6:\"style3\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:3;s:2:\"id\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(2180,1705,'accesspress_pro_sidebar_layout','right-sidebar'),(2181,1705,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:36:\"Saved, Baptized, Added to the Church\";s:14:\"icon_text_icon\";s:16:\"fa fa-thumb-tack\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style3\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:5:\"style\";a:3:{s:10:\"background\";s:7:\"#ffeaea\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:7:{s:15:\"icon_text_title\";s:7:\"Connect\";s:17:\"icon_text_content\";s:33:\"With People near you and like you\";s:14:\"icon_text_icon\";s:10:\"fa fa-wifi\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:33:\"http://www.mytwincity.org/connect/\";s:15:\"icon_text_style\";s:6:\"style3\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:5:\"style\";a:3:{s:10:\"background\";s:7:\"#ffeaea\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:5:\"Serve\";s:17:\"icon_text_content\";s:28:\"Loving God by Serving People\";s:14:\"icon_text_icon\";s:12:\"fa fa-coffee\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:31:\"http://www.mytwincity.org/serve/\";s:15:\"icon_text_style\";s:6:\"style3\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:2;s:2:\"id\";i:2;s:5:\"style\";a:3:{s:10:\"background\";s:7:\"#ffeaea\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:5:\"Bring\";s:17:\"icon_text_content\";s:43:\"Invest in and Invite others on your Journey\";s:14:\"icon_text_icon\";s:9:\"fa fa-bus\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:31:\"http://www.mytwincity.org/bring/\";s:15:\"icon_text_style\";s:6:\"style3\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:3;s:2:\"id\";i:3;s:5:\"style\";a:3:{s:10:\"background\";s:7:\"#ffeaea\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(2182,1707,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:2;s:2:\"id\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:3;s:2:\"id\";i:3;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(2183,1707,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:2;s:2:\"id\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:3;s:2:\"id\";i:3;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(2184,1707,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:2;s:2:\"id\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:3;s:2:\"id\";i:3;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(2185,1707,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:2;s:2:\"id\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:3;s:2:\"id\";i:3;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(2186,1708,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:2;s:2:\"id\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:0:\"\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:3;s:2:\"id\";i:3;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(2187,1707,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:16:\"fa fa-thumb-tack\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:7:{s:15:\"icon_text_title\";s:7:\"Connect\";s:17:\"icon_text_content\";s:33:\"With People near you and like you\";s:14:\"icon_text_icon\";s:10:\"fa fa-wifi\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:33:\"http://www.mytwincity.org/connect/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:5:\"Serve\";s:17:\"icon_text_content\";s:28:\"Loving God by Serving People\";s:14:\"icon_text_icon\";s:12:\"fa fa-coffee\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:5:\"Bring\";s:17:\"icon_text_content\";s:43:\"Invest in and Invite others on your Journey\";s:14:\"icon_text_icon\";s:9:\"fa fa-bus\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:31:\"http://www.mytwincity.org/bring/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.5;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.5;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.5;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.5;}}}'),(2188,1709,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:40:\"Saved, Baptized, and Added to the Church\";s:14:\"icon_text_icon\";s:16:\"fa fa-thumb-tack\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:7:{s:15:\"icon_text_title\";s:7:\"Connect\";s:17:\"icon_text_content\";s:33:\"With People near you and like you\";s:14:\"icon_text_icon\";s:10:\"fa fa-wifi\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:33:\"http://www.mytwincity.org/connect/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:5:\"Serve\";s:17:\"icon_text_content\";s:28:\"Loving God by Serving People\";s:14:\"icon_text_icon\";s:12:\"fa fa-coffee\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:2;s:2:\"id\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:5:\"Bring\";s:17:\"icon_text_content\";s:43:\"Invest in and Invite others on your Journey\";s:14:\"icon_text_icon\";s:9:\"fa fa-bus\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:31:\"http://www.mytwincity.org/bring/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:3;s:2:\"id\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.290019850957991043305383982442435808479785919189453125;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.2099801490420089289390404019286506809294223785400390625;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.290019821893630957987397778197191655635833740234375;}i:3;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.2099801781063690697681778374317218549549579620361328125;}}}'),(2189,1707,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:36:\"Saved, Baptized, Added to the Church\";s:14:\"icon_text_icon\";s:16:\"fa fa-thumb-tack\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:7:{s:15:\"icon_text_title\";s:7:\"Connect\";s:17:\"icon_text_content\";s:33:\"With People near you and like you\";s:14:\"icon_text_icon\";s:10:\"fa fa-wifi\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:33:\"http://www.mytwincity.org/connect/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:5:\"Serve\";s:17:\"icon_text_content\";s:28:\"Loving God by Serving People\";s:14:\"icon_text_icon\";s:12:\"fa fa-coffee\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:2;s:2:\"id\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:5:\"Bring\";s:17:\"icon_text_content\";s:43:\"Invest in and Invite others on your Journey\";s:14:\"icon_text_icon\";s:9:\"fa fa-bus\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:31:\"http://www.mytwincity.org/bring/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:3;s:2:\"id\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.29001985095799998060073221495258621871471405029296875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.2099801490419999916436921694185002706944942474365234375;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.29001982189399999612078318023122847080230712890625;}i:3;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.20998017810600000387921681976877152919769287109375;}}}'),(2190,1710,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:36:\"Saved, Baptized, Added to the Church\";s:14:\"icon_text_icon\";s:16:\"fa fa-thumb-tack\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:7:{s:15:\"icon_text_title\";s:7:\"Connect\";s:17:\"icon_text_content\";s:33:\"With People near you and like you\";s:14:\"icon_text_icon\";s:10:\"fa fa-wifi\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:33:\"http://www.mytwincity.org/connect/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:5:\"Serve\";s:17:\"icon_text_content\";s:28:\"Loving God by Serving People\";s:14:\"icon_text_icon\";s:12:\"fa fa-coffee\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:2;s:2:\"id\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:5:\"Bring\";s:17:\"icon_text_content\";s:43:\"Invest in and Invite others on your Journey\";s:14:\"icon_text_icon\";s:9:\"fa fa-bus\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:31:\"http://www.mytwincity.org/bring/\";s:15:\"icon_text_style\";s:6:\"style1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:3;s:2:\"id\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.29001985095799998060073221495258621871471405029296875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.2099801490419999916436921694185002706944942474365234375;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.29001982189399999612078318023122847080230712890625;}i:3;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.20998017810600000387921681976877152919769287109375;}}}'),(2191,1711,'_edit_lock','1443926189:1'),(2192,1712,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:7:{s:15:\"icon_text_title\";s:6:\"Belong\";s:17:\"icon_text_content\";s:36:\"Saved, Baptized, Added to the Church\";s:14:\"icon_text_icon\";s:16:\"fa fa-thumb-tack\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:32:\"http://www.mytwincity.org/belong/\";s:15:\"icon_text_style\";s:6:\"style3\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:7:{s:15:\"icon_text_title\";s:7:\"Connect\";s:17:\"icon_text_content\";s:33:\"With People near you and like you\";s:14:\"icon_text_icon\";s:10:\"fa fa-wifi\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:33:\"http://www.mytwincity.org/connect/\";s:15:\"icon_text_style\";s:6:\"style3\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:7:{s:15:\"icon_text_title\";s:5:\"Serve\";s:17:\"icon_text_content\";s:28:\"Loving God by Serving People\";s:14:\"icon_text_icon\";s:12:\"fa fa-coffee\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:31:\"http://www.mytwincity.org/serve/\";s:15:\"icon_text_style\";s:6:\"style3\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:2;s:2:\"id\";i:2;s:5:\"style\";a:3:{s:10:\"background\";s:7:\"#ffffff\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:7:{s:15:\"icon_text_title\";s:5:\"Bring\";s:17:\"icon_text_content\";s:43:\"Invest in and Invite others on your Journey\";s:14:\"icon_text_icon\";s:9:\"fa fa-bus\";s:18:\"icon_text_readmore\";s:9:\"Read More\";s:23:\"icon_text_readmore_link\";s:31:\"http://www.mytwincity.org/bring/\";s:15:\"icon_text_style\";s:6:\"style3\";s:11:\"panels_info\";a:5:{s:5:\"class\";s:25:\"accesspress_pro_icon_text\";s:4:\"grid\";i:0;s:4:\"cell\";i:3;s:2:\"id\";i:3;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(2193,1723,'_wp_attached_file','2015/10/DeathtoStock_Medium6.jpg'),(2194,1723,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5552;s:6:\"height\";i:3701;s:4:\"file\";s:32:\"2015/10/DeathtoStock_Medium6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium6-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:32:\"DeathtoStock_Medium6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"DeathtoStock_Medium6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium6-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium6-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium6-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium6-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:2.20000000000000017763568394002504646778106689453125;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1420039063;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(2195,1724,'_wp_attached_file','2015/10/desk.jpeg'),(2196,1724,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4133;s:6:\"height\";i:2745;s:4:\"file\";s:17:\"2015/10/desk.jpeg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"desk-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"desk-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"desk-1024x680.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:17:\"desk-900x300.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:17:\"desk-560x450.jpeg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"desk-540x350.jpeg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:17:\"desk-380x380.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:8;s:6:\"credit\";s:17:\"Dariusz Sankowski\";s:6:\"camera\";s:10:\"NIKON D300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1390136307;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(2197,1725,'_wp_attached_file','2015/10/tower-820001_1920.jpg'),(2198,1725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:29:\"2015/10/tower-820001_1920.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"tower-820001_1920-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:29:\"tower-820001_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"tower-820001_1920-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:29:\"tower-820001_1920-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:29:\"tower-820001_1920-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:29:\"tower-820001_1920-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:29:\"tower-820001_1920-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2199,1726,'_wp_attached_file','2015/10/DeathtoStock_Medium1.jpg'),(2200,1726,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5560;s:6:\"height\";i:3707;s:4:\"file\";s:32:\"2015/10/DeathtoStock_Medium1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium1-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:32:\"DeathtoStock_Medium1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"DeathtoStock_Medium1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium1-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium1-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium1-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:32:\"DeathtoStock_Medium1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:1.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1418136225;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2201,1727,'_wp_attached_file','2015/10/DeathtoStock_Medium10.jpg'),(2202,1727,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5350;s:6:\"height\";i:3567;s:4:\"file\";s:33:\"2015/10/DeathtoStock_Medium10.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"DeathtoStock_Medium10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"DeathtoStock_Medium10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"DeathtoStock_Medium10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:33:\"DeathtoStock_Medium10-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:33:\"DeathtoStock_Medium10-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:33:\"DeathtoStock_Medium10-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:33:\"DeathtoStock_Medium10-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:2.20000000000000017763568394002504646778106689453125;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1420040519;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(2203,1726,'_edit_lock','1443928533:1'),(2204,1728,'_wp_attached_file','2015/10/coffeebeans.jpg'),(2205,1728,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:7360;s:6:\"height\";i:4912;s:4:\"file\";s:23:\"2015/10/coffeebeans.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"coffeebeans-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:\"coffeebeans-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"coffeebeans-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-header\";a:4:{s:4:\"file\";s:23:\"coffeebeans-900x300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:23:\"coffeebeans-560x450.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"medium-thumbnail\";a:4:{s:4:\"file\";s:23:\"coffeebeans-540x350.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:23:\"coffeebeans-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:8;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1401587388;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(2206,1729,'_edit_lock','1443930801:1'),(2207,1729,'_edit_last','1'),(2208,1729,'_wp_page_template','default'),(2209,1729,'slide_template','default'),(2210,1729,'accesspress_pro_sidebar_layout','right-sidebar'),(2211,1738,'_edit_lock','1443931082:1'),(2212,1738,'_edit_last','1'),(2213,1738,'_wp_page_template','default'),(2214,1738,'slide_template','default'),(2215,1738,'accesspress_pro_sidebar_layout','right-sidebar'),(2216,1740,'_edit_lock','1443932089:1'),(2217,1740,'_edit_last','1'),(2219,1740,'slide_template','default'),(2220,1742,'_edit_lock','1443931155:1'),(2221,1742,'_edit_last','1'),(2223,1742,'slide_template','default'),(2224,1744,'_edit_lock','1443931182:1'),(2225,1744,'_edit_last','1'),(2227,1744,'slide_template','default'),(2228,1746,'_edit_lock','1443931203:1'),(2229,1746,'_edit_last','1'),(2231,1746,'slide_template','default'),(2232,1748,'_edit_lock','1443931224:1'),(2233,1748,'_edit_last','1'),(2235,1748,'slide_template','default'),(2236,1750,'_edit_lock','1443931406:1'),(2237,1750,'_edit_last','1'),(2239,1750,'slide_template','default'),(2240,1752,'_wp_attached_file','2015/10/001.png'),(2241,1752,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:40;s:4:\"file\";s:15:\"2015/10/001.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2242,1740,'_thumbnail_id','1752'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB AUTO_INCREMENT=1753 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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,1,'2015-07-20 18:13:03','2015-07-20 18:13:03','','TC LOGO ICON small','','inherit','open','open','','tc-logo-icon-small','','','2015-07-20 18:13:03','2015-07-20 18:13:03','',0,'http://www.mytwincity.org/wp-content/uploads/2015/07/TC-LOGO-ICON-small.jpg',0,'attachment','image/jpeg',0),(6,1,'2015-07-20 19:12:22','2015-07-20 19:12:22','','TCB BANNER WEBSITE','','inherit','open','open','','tcb-banner-website','','','2015-07-20 19:12:22','2015-07-20 19:12:22','',0,'http://www.mytwincity.org/wp-content/uploads/2015/07/TCB-BANNER-WEBSITE.jpg',0,'attachment','image/jpeg',0),(7,1,'2015-07-20 19:48:41','2015-07-20 19:48:41','','ERVEN 555','','inherit','open','open','','erven-555','','','2015-07-20 19:48:41','2015-07-20 19:48:41','',0,'http://www.mytwincity.org/wp-content/uploads/2015/07/ERVEN-555.jpg',0,'attachment','image/jpeg',0),(8,1,'2015-07-20 19:49:40','2015-07-20 19:49:40','','Twitter_logo_blue','','inherit','open','open','','twitter_logo_blue','','','2015-09-03 16:33:44','2015-09-03 16:33:44','',1307,'http://www.mytwincity.org/wp-content/uploads/2015/07/Twitter_logo_blue.png',0,'attachment','image/png',0),(9,1,'2015-07-20 19:51:44','2015-07-20 19:51:44','','fblogo','','inherit','open','open','','fblogo','','','2015-09-03 16:34:33','2015-09-03 16:34:33','',1307,'http://www.mytwincity.org/wp-content/uploads/2015/07/fblogo.png',0,'attachment','image/png',0),(10,1,'2015-07-20 19:52:59','2015-07-20 19:52:59','','tceec_ogo_white','','inherit','open','open','','tceec_ogo_white','','','2015-07-20 19:52:59','2015-07-20 19:52:59','',0,'http://www.mytwincity.org/wp-content/uploads/2015/07/tceec_ogo_white.jpg',0,'attachment','image/jpeg',0),(11,1,'2015-07-20 19:55:08','2015-07-20 19:55:08','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Stay Connected</strong></span></h1>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#709dc4\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n ','Stay Connected','','publish','open','closed','','stay-connected','','','2015-09-30 19:12:48','2015-09-30 19:12:48','',763,'http://www.mytwincity.org/?page_id=11',0,'page','',0),(12,1,'2015-07-20 19:55:08','2015-07-20 19:55:08','','Stay In The Know','','inherit','open','open','','11-revision-v1','','','2015-07-20 19:55:08','2015-07-20 19:55:08','',11,'http://www.mytwincity.org/2015/07/20/11-revision-v1/',0,'revision','',0),(15,1,'2015-07-20 19:57:54','2015-07-20 19:57:54','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]HEY I\'M NEW HERE!![/ap_tagline_box]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]It is SCARY looking for a new church! We understand that!! Whether you\'ve attended church your whole life or never stepped foot in one before, we know it’s not easy visiting a church for the first time. Where do I go? Where should I park? How should I dress? How long does it last? What about my kids?\r\n\r\nWe want your first experience at TCB to be relaxed, and for you and your family to enjoy the service. So, here is some information to help you know what to expect: [/ap_tagline_box]\r\n\r\n[ap_tab_group type=\"horizontal\"]\r\n[ap_tab title=\"<strong>WHAT TIME IS THE SERVICE?</strong>\"]TCB meets every Sunday at 11:00 am, and the service lasts no longer than 75 minutes. We encourage you to arrive 10-15 minutes early, especially if you have young children. This will give you plenty of time to get your children checked into City Kids and for you to find a good seat in the auditorium prior to the service starting. [/ap_tab]\r\n[ap_tab title=\"<strong>WHERE IS TCB?</strong>\"]TCB meets at 194 Electric Ave Lunenburg, MA 01462 Click Here to map it!![/ap_tab]\r\n[ap_tab title=\"<strong>WHAT SHOULD I DO WHEN I GET THERE?</strong>\"]\r\n\r\nWhen you arrive, our friendly Greeting Team will help direct you. If you have children ages birth through 5th grade, then just follow the signs to our City Kids check-in area to the left of the main theater entrance.\r\n\r\nYou will receive a program and a pen on your way into the service. This program will include message notes, important information, and a connection card, which you will turn in at the end of the service.\r\n\r\nAnd on your way in, if you have questions, just look for one of our courteous volunteers in a City Kids t-shirts. They’re easy to spot and always happy to help! [/ap_tab]\r\n[ap_tab title=\"<strong>HOW SHOULD I DRESS?</strong>\"]We care more about you than with what you wear, so the dress is usally business casual. At TCB, you will find many people wearing anything from jeans, shorts, suites and sandals. Dress how you are most comfortable, and you will fit right in – shorts and suits are equally welcomed and by the way in the summer, our AC is awesome!! With woman we say modest..I think you get it![/ap_tab]\r\n[ap_tab title=\"<strong>WHAT ARE THE MESSAGES LIKE?</strong>\"]Our goal every Sunday is clarity!!! We teach the timeless truths of the Bible in a way that is engaging and applicable to your life through teaching series. These might be anywhere from 4-10 weeks in nature wrapped around one big idea. You will find that the messages are practical, easy to understand, and grounded in Scripture. We want to help you on Monday\'s and not just Sunday\'s.[/ap_tab]\r\n[ap_tab title=\"<strong>WHAT ABOUT THE MUSIC?</strong>\"]The music at TCB strives to be uplifting! TCB features a live ensemble/band with praise singers every week.[/ap_tab]\r\n[ap_tab title=\"<strong>WHAT\'S AVAILABLE FOR MY KIDS?</strong>\"]\r\n\r\nTCB offers a safe and exciting children’s program during the worship service for your children, birth to 6th grade.\r\n\r\nAs you approach the service, you will see our City Kids check-in area just to the right of the main lobby (just follow the signs). There you will meet one of our fully-trained and background-checked team members who will help you check your child in.\r\n\r\nDuring check-in, you will receive a receipt sticker, which you will need to pick up your child after the service. For the security of your children, it is important that you keep track of your receipt sticker. This helps us know that you are the person authorized to pick up your child.\r\n\r\nCity Kids is staffed solely by members in good standing at TCB, who have been background checked and receive ongoing training to make your children’s experience the best it can be!\r\n\r\nDuring City Kids, your children will experience fun Bible lessons, activities and games to help them build a spiritual foundation. Simply stated: we want this to be the best hour of your child’s week![/ap_tab]\r\n[ap_tab title=\"<strong>WHAT\'S AVAILABLE FOR STUDENTS?</strong>\"]At TCB, we have a great group of teens who meet together as a Life Groups during the week. The relevent music, casual dress, and relaxed atmosphere during Sunday nights called REfuel makes for the perfect place for teens to worship God and grow in their faith. For this reason, we encourage all teens to participate and serve in the main Sunday service. [/ap_tab]\r\n[ap_tab title=\"<strong>WHAT\'S AVAILABLE DURING THE WEEK?</strong>\"]\r\n\r\n<big><strong>Visit Us:</strong></big>\r\n\r\n<big><strong>SUNDAY MORNINGS: </strong>\r\n9:00 AM PRAYER\r\n10:00 AM LIFEGROUPS\r\n11:00 AM MAIN WORSHIP SERVICE</big>\r\n\r\n<big><strong>SUNDAY NIGHTS </strong>5:00 PM\r\nLIFE UNIVERSITY FAMILY CLASS ELECTIVES</big>\r\n\r\n<strong>WEDNESDAY NIGHT</strong> 6:30 PM\r\nAWANA - PRAYER SERVICE\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><big><a href=\"http://goo.gl/maps/K2o4v\"><strong>DIRECTIONS:</strong></a></big></td>\r\n<td><big>194 Electric Ave </big>\r\nLunenburg, MA 01462</td>\r\n</tr>\r\n<tr>\r\n<td><big><strong>Contact Us:</strong></big></td>\r\n<td><big>(P) 978-582-4901</big></td>\r\n</tr>\r\n<tr>\r\n<td><big><a href=\"http://Pastor@twincitybaptist.com/\">Pastor@Twincitybaptist.com</a></big></td>\r\n<td><big>(F) 978-582-4978</big></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ap_tab]\r\n[/ap_tab_group]','New','','publish','open','open','','new','','','2015-09-03 16:16:20','2015-09-03 16:16:20','',0,'http://www.mytwincity.org/?page_id=15',0,'page','',0),(16,1,'2015-07-20 19:57:54','2015-07-20 19:57:54','','New','','inherit','open','open','','15-revision-v1','','','2015-07-20 19:57:54','2015-07-20 19:57:54','',15,'http://www.mytwincity.org/2015/07/20/15-revision-v1/',0,'revision','',0),(17,1,'2015-07-20 19:58:11','2015-07-20 19:58:11','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Why is church membership important?[/ap_tagline_box]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n\r\nThe universal Church—the Body of Christ (Romans 12:5)—is composed of all true believers in Christ. Nonbelievers aren’t part of the Body of Christ; therefore, it would seem that God keeps a “membership list” of who is in the Church. We see just such a list in Revelations 20:12, the Lamb’s book of life. If the universal Church has a “membership roll” in heaven, it would be appropriate for local churches to maintain a list of members on earth.\r\n\r\n“And the Lord added to them day by day those that were being saved” (Acts 2:47). This verse indicates that salvation is a prerequisite for being “added” to the church. Churches today who require salvation before membership are simply following the Biblical model. See also 2 Corinthians 6:14-18.\r\n\r\nMembership in the local church is strongly implied in Paul’s instructions to the Corinthians to “put away from among yourselves that wicked person” (1 Corinthians 5:13).\r\n\r\nThe preceding verse speaks of those “without” and “within” the local church. Such language is meaningless without a clearly defined group of members.\r\n\r\nWhy is church membership important? Church membership is a way of officially identifying yourself with a local body of believers. Church membership is a statement that you are in agreement with that local church and are a representative of it.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]We want to...[/ap_tagline_box]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"<strong>Help YOU Belong:</strong>\" status=\"close\"]In order to belong to the Church you have to come to the foot of the cross and be saved, baptized and then added to the church. (Acts 2:41-47) If you had not asked Jesus Christ into your heart as Lord and Savior, one Biblically is only an attender but not spiritually part of the local chruch. We desire that for you![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Connect:</strong>\" status=\"close\"]You must then connect to a small group, where you will grow with other people in your age group and stage of life. If Jesus had a small group we need one to![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Serve:</strong>\" status=\"close\"]You will naturally begin to serve others![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Bring:</strong>\" status=\"close\"]Because of your life changing, it will be natural for you to begin to talk about the things that Jesus has done in your life. Naturally, you will begin to bring people along with you.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Worship:</strong>\" status=\"close\"]Your life will want to give praise to God because of everything he has done for you in all areas of your life. (John 4:24)[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n<h4 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-bg-box\"]\"But speaking the truth in love, may grow up into him in all things, which is the head, even Christ:\" - Eph 4:15[/ap_tagline_box]</h4>','Belong','','publish','open','open','','belong','','','2015-09-03 15:16:39','2015-09-03 15:16:39','',0,'http://www.mytwincity.org/?page_id=17',0,'page','',0),(18,1,'2015-07-20 19:58:11','2015-07-20 19:58:11','','Belong','','inherit','open','open','','17-revision-v1','','','2015-07-20 19:58:11','2015-07-20 19:58:11','',17,'http://www.mytwincity.org/2015/07/20/17-revision-v1/',0,'revision','',0),(19,1,'2015-07-20 19:58:33','2015-07-20 19:58:33','<h3>Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.</h3>\r\n \r\n\r\n<i class=\"fa fa-rocket\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/city-kids/\">City Kids</a> <i class=\"fa fa-tachometer\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/city-teens/\">City Teens</a> <i class=\"fa fa-university\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/c-university/\">City University</a> <i class=\"fa fa-coffee\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/young-adults/\">City Life</a> <i class=\"fa fa-male\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/men/\">Men\'s Ministry</a> <i class=\"fa fa-female\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/women/\">Women\'s Ministry</a> <i class=\"fa fa-compass\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/city-seniors/\">Senior Citizen\'s Ministry</a> <i class=\"fa fa-graduation-cap\"></i> <a class=\"bttn\" href=\"http://www.twincitychristian.com/\">Christian School</a> <i class=\"fa fa-music\"></i> <a class=\"bttn\" href=\"http://wcmxradio.com/\">\"The Power\" AM 1000 WCMX</a>','Connect','','publish','open','open','','connect','','','2015-09-30 15:38:29','2015-09-30 15:38:29','',0,'http://www.mytwincity.org/?page_id=19',0,'page','',0),(20,1,'2015-07-20 19:58:33','2015-07-20 19:58:33','','Connect','','inherit','open','open','','19-revision-v1','','','2015-07-20 19:58:33','2015-07-20 19:58:33','',19,'http://www.mytwincity.org/2015/07/20/19-revision-v1/',0,'revision','',0),(21,1,'2015-07-20 19:58:46','2015-07-20 19:58:46','[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]God has custom-made you and you have a purpose to serve Him. Find out how by clicking on these free evaluation tools:\r\n\r\nLeadership Shape Test (<a href=\"http://www.mytwincity.org/contact-2/\">Email us to request</a>)\r\n\r\n<a href=\"http://elmertowns.com/?page_id=203\" target=\"_blank\">Spiritual Gifts Test</a>\r\n\r\n<a href=\"http://personality-testing.info/tests/ODAT/\" target=\"_blank\">DISC Personality Test</a>\r\n\r\n<a href=\"http://www.personalitypathways.com/type_inventory.html\" target=\"_blank\">MYERS BRIGGS Test</a>[/ap_tagline_box]','Serve','','publish','open','open','','serve','','','2015-09-29 16:26:26','2015-09-29 16:26:26','',0,'http://www.mytwincity.org/?page_id=21',0,'page','',0),(22,1,'2015-07-20 19:58:46','2015-07-20 19:58:46','','Serve','','inherit','open','open','','21-revision-v1','','','2015-07-20 19:58:46','2015-07-20 19:58:46','',21,'http://www.mytwincity.org/2015/07/20/21-revision-v1/',0,'revision','',0),(23,1,'2015-07-20 19:58:58','2015-07-20 19:58:58','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button]\r\n\r\n[su_spacer]\r\n\r\n[su_button url=\"http://www.mytwincity.org/bring/current-teaching-series/\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: th-list\"]Current Teaching Series[/su_button][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','publish','open','open','','bring','','','2015-09-29 16:28:01','2015-09-29 16:28:01','',0,'http://www.mytwincity.org/?page_id=23',0,'page','',0),(24,1,'2015-07-20 19:58:58','2015-07-20 19:58:58','','Bring','','inherit','open','open','','23-revision-v1','','','2015-07-20 19:58:58','2015-07-20 19:58:58','',23,'http://www.mytwincity.org/2015/07/20/23-revision-v1/',0,'revision','',0),(27,1,'2015-07-20 19:59:29','2015-07-20 19:59:29','<h3>[ap_call_to_action button_text=\"DONATE NOW\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_align=\"center\"]Welcome to Online Giving at Twin City Baptist Church. Please take time to read the directions below, and THANK YOU for being generous and displaying \"GeneroCITY\"![/ap_call_to_action]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Now you can give your tithe, offering, donation and register for events at Twin City from the comfort of your computer, Tablet and phone. It\'s safe and It\'s secure!\r\n\r\nTwin City Baptist Church is using the services of Sage Virtual Terminal (SVT).\r\n\r\nInstructions:\r\n<ul>\r\n <li>Click on the “Donate Now” button after reading this.</li>\r\n <li>You will be directed to the online giving secure site.</li>\r\n <li>Complete your donation and click “Submit”.</li>\r\n <li>To set up a Recurring Donation, when you get on the Donation page, click on the recurring button and follow the directions.[/ap_tagline_box]</li>\r\n</ul>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>You Have our Word!</strong> Twin City Baptist will never email you and ask for your credit card or any personal information. All information will be entered thru the SVT secure site below.\r\n<blockquote>Twin City Baptist Church discourages the irresponsible use of credit cards. We offer the opportunity to donate by credit card as a convenience for those who manage their finances in a God-honoring way. All offerings are tax deductible, however in accordance with IRS regulations; designated offerings may be put to alternate use.[/ap_tagline_box]</blockquote>','Give','','publish','open','open','','give','','','2015-09-29 16:29:14','2015-09-29 16:29:14','',0,'http://www.mytwincity.org/?page_id=27',0,'page','',0),(28,1,'2015-07-20 19:59:29','2015-07-20 19:59:29','','Give','','inherit','open','open','','27-revision-v1','','','2015-07-20 19:59:29','2015-07-20 19:59:29','',27,'http://www.mytwincity.org/2015/07/20/27-revision-v1/',0,'revision','',0),(29,1,'2015-07-20 20:01:10','2015-07-20 20:01:10','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\n<strong>MISSION STATEMENT:</strong>\r\n\r\nTo lead people into a growing relationship with Jesus Christ.\r\n\r\n<strong>VISION STATEMENT:</strong>\r\n\r\nTo create safe environments for people to Discover Christ, Uncover truth and Recover their life for eternal impact.\r\n\r\n<strong>CORE VALUES:</strong>\r\n<ul>\r\n <li>We Pray Earnestly</li>\r\n <li>We Connect Strategically</li>\r\n <li>We Give Generously</li>\r\n <li>We Teach Biblically</li>\r\n</ul>\r\n[/ap_tagline_box]','Purpose','','publish','open','open','','purpose','','','2015-09-03 19:57:55','2015-09-03 19:57:55','',15,'http://www.mytwincity.org/?page_id=29',0,'page','',0),(30,1,'2015-07-20 20:01:10','2015-07-20 20:01:10','','Purpose','','inherit','open','open','','29-revision-v1','','','2015-07-20 20:01:10','2015-07-20 20:01:10','',29,'http://www.mytwincity.org/2015/07/20/29-revision-v1/',0,'revision','',0),(31,1,'2015-07-20 20:01:26','2015-07-20 20:01:26','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h4><strong>OUR BELIEFS</strong></h4>\r\n<strong>Don\'t have a lot of time to read...Just need to know the basics...</strong>\r\n\r\nWe believe the Bible to be without error. The Bible reveals God, the spiritual separation of man from God, the way of salvation, and how to have a personal relationship with God. (II Tim. 3:15-16; II Peter 1:20-21)\r\n\r\nWe believe the one, true God reveals Himself in three distinct persons: God the Father, God the Son, and God the Holy Spirit. All three are co-eternal, co-powerful, and co-equal. (I John 5:7)\r\n\r\nWe believe that Jesus Christ is the Son of God, born of the virgin Mary. He lived a life without sin and is our example. (I Peter 2:21-25)\r\n\r\nWe believe salvation (a personal relationship with God) is by \"grace,\" plus nothing and minus nothing. This salvation is found only by receiving Jesus Christ into your life. Salvation is by repentance and faith (truly being sorrowful for your sins, confessing that Jesus Christ died for your sins, and inviting Him into your life). (Eph.2:8-9; Titus 3:5-7)\r\n\r\nWe believe in the visible and personal return of Jesus Christ. (I Thess. 4:16-17)\r\n\r\nWe believe that those who receive Jesus Christ will go to Heaven and those who reject Him will be separated from the Lord forever. (Rev. 20:10-15)\r\n\r\n[/ap_tagline_box]','Our Beliefs','','publish','open','closed','','doctrine','','','2015-09-30 15:42:10','2015-09-30 15:42:10','',15,'http://www.mytwincity.org/?page_id=31',0,'page','',0),(32,1,'2015-07-20 20:01:26','2015-07-20 20:01:26','','Doctrine','','inherit','open','open','','31-revision-v1','','','2015-07-20 20:01:26','2015-07-20 20:01:26','',31,'http://www.mytwincity.org/2015/07/20/31-revision-v1/',0,'revision','',0),(33,1,'2015-07-20 20:01:42','2015-07-20 20:01:42','<h2 style=\"text-align: left;\">Meet Pastor Gary</h2>\r\n<img class=\"alignright wp-image-1623\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"500\" height=\"750\" />[ap_tagline_box tag_box_style=\"ap-left-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA.[/ap_tagline_box]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2 style=\"text-align: right;\"></h2>\r\n<h2 style=\"text-align: right;\"></h2>','Pastor Gary','','publish','open','open','','pastors','','','2015-09-30 15:41:22','2015-09-30 15:41:22','',15,'http://www.mytwincity.org/?page_id=33',0,'page','',0),(34,1,'2015-07-20 20:01:42','2015-07-20 20:01:42','','Pastors','','inherit','open','open','','33-revision-v1','','','2015-07-20 20:01:42','2015-07-20 20:01:42','',33,'http://www.mytwincity.org/2015/07/20/33-revision-v1/',0,'revision','',0),(35,1,'2015-07-20 20:02:00','2015-07-20 20:02:00','<h2></h2>\r\n<img class=\"wp-image-1567 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<span style=\"font-size: 18px;\"><strong>Meet Our Founding Pastor and His Wife</strong></span>\r\n<div style=\"text-align: left;\">\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\n<p style=\"text-align: left;\">Twin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.</p>\r\n<p style=\"text-align: left;\">In 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.</p>\r\n<p style=\"text-align: left;\">On February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.</p>\r\n<p style=\"text-align: left;\">In 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.</p>\r\n<p style=\"text-align: left;\">October 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at <a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a></p>\r\n[/ap_tagline_box]','Emeritus','','publish','open','closed','','emeritus','','','2015-09-30 16:15:52','2015-09-30 16:15:52','',15,'http://www.mytwincity.org/?page_id=35',0,'page','',0),(36,1,'2015-07-20 20:02:00','2015-07-20 20:02:00','','Founders','','inherit','open','open','','35-revision-v1','','','2015-07-20 20:02:00','2015-07-20 20:02:00','',35,'http://www.mytwincity.org/2015/07/20/35-revision-v1/',0,'revision','',0),(37,1,'2015-07-20 20:02:41','2015-07-20 20:02:41','[ap_column_wrap]\r\n[ap_column span=\"3\"][su_heading size=\"30\" margin=\"60\"]The Gospel[/su_heading][ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_youtube url=\"https://www.youtube.com/watch?v=_90SFev_iFk\" responsive=\"no\"][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n[su_spacer]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Admit</strong>\"]<span style=\"text-decoration: underline;\">Admit that you are a sinner and deserve hell.</span>\r\n\r\n“For all have sinned and come short of the glory of God.” – Romans 3:23\r\n\r\n“For the wages of sin is death.” – Romans 6:23a\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Believe</strong>\"]<span style=\"text-decoration: underline;\">Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.</span>\r\n\r\n“…the gift of God is eternal life through Jesus Christ our Lord” – Romans 6:23b\r\n\r\n“But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.” – Romans 5:8\r\n\r\n“If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.” – Romans 10:9\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Call</strong>\"]<span style=\"text-decoration: underline;\">Call upon the Lord through prayer for salvation.</span>\r\n\r\n“For whosoever shall call upon the name of the Lord shall be saved.” – Romans 10:3\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Pray</strong>\"]<span style=\"text-decoration: underline;\">Pray today and receive Jesus Christ as your personal Lord and Savior.</span>\r\n\r\n“…now is the accepted time, behold, now is the day of salvation.” – II Corinthians 6:2\r\n\r\n“But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.” – John 1:12\r\n\r\n[/ap_tab]\r\n[/ap_tab_group]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]If you would like to receive Christ as your personal Lord and Savior, tell God in the following prayer:[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">Dear God, I am a sinner. Because of my sin, I deserve to spend eternity in hell. I believe that Jesus died on the cross, was buried, and rose from the grave for my sins. I therefore, turn from my sins and put my faith in Jesus Christ to get me to heaven. Thank you for saving me today, and help me to serve you the rest of my life. In Jesus\' Name, Amen.</span>[/ap_tagline_box]\r\n\r\n ','Gospel','','publish','open','open','','gospel','','','2015-08-05 14:49:30','2015-08-05 14:49:30','',17,'http://www.mytwincity.org/?page_id=37',0,'page','',0),(38,1,'2015-07-20 20:02:41','2015-07-20 20:02:41','','Gospel','','inherit','open','open','','37-revision-v1','','','2015-07-20 20:02:41','2015-07-20 20:02:41','',37,'http://www.mytwincity.org/2015/07/20/37-revision-v1/',0,'revision','',0),(39,1,'2015-07-20 20:02:57','2015-07-20 20:02:57','[su_heading size=\"25\"]Baptism is an outward reflection of an inward connection![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tab_group type=\"horizontal\"]\r\n[ap_tab title=\"<strong>Who Should Be Baptized?</strong>\"][ap_toggle title=\"Every person who has believed in Christ\" status=\"close\"]\"Those who believe and accepted His message were baptized...\" --Acts 2:41</p>\r\n\"Simon himself believed and was baptized...\" --Acts 8:13\r\n\r\n\"But when they believed Philip as he preached the Good News… and the name of Jesus Christ, they were baptized, both men and women.\" --Acts 8:12[/ap_toggle][/ap_tab]\r\n[ap_tab title=\"<strong>When Should I Be Baptized?</strong>\"][ap_toggle title=\"As soon as you have believed\" status=\"close\"]\"Those who believe...were baptized...that day!\" --Acts 2:41\r\n\r\n\"Then Philip began with the scripture and told him the Good News about Jesus. As they traveled along the road, they came to some water, and the man said, ´Look, here is water! Why shouldn´t I be baptized right now?´ Philip said, ´If you believe with all your heart, you may.´ The man answered, ´I believe that Jesus Christ is the Son of God.´ So they went down into the water and Philip baptized him.\" --Acts 8:35-38\r\n\r\nThere is no reason to delay. As soon as you have decided to receive Christ into your life, you can and should be baptized. If you wait until you are \"perfect,\" you´ll never feel \"good enough\"![/ap_toggle]\r\n\r\n[ap_toggle title=\"At TCB, we wait until our children are old enough to believe and understand the true meaning of baptism before we baptize them.\" status=\"close\"]Some churches practice a \"baptism of confirmation\" for children. This ceremony is intended to be a covenant between the parents and God on the behalf of the child. The parents promise to raise their child in the faith until the child is old enough to make his own personal confession of Christ. This custom began about 300 years after the Bible was completed.\r\n\r\nThis is different from the baptism talked about in the Bible which was only for those old enough to believe. The purpose is to publicly confess your personal commitment to Christ.[/ap_toggle][/ap_tab]\r\n[ap_tab title=\"<strong>TCB practices adult believer\'s baptism by immersion</strong>\"][ap_toggle title=\"Because Jesus was baptized that way.\" status=\"close\"]\"As soon as Jesus was baptized, He went up out of the water,\" --Matthew 3:16 [/ap_toggle][ap_toggle title=\"Every baptism in the Bible was by immersion.\" status=\"close\"](Example) \"...then both Philip and the man went down into the water and Philip baptized him. When they came up out of the water...\" --Acts 8:38-39\r\n\r\nThe word Baptize means \"To dip under water\".\r\n\r\nThe Greek word baptize means \"to immerse or dip under water\".\r\n\r\nIt best symbolized a burial and resurrection![/ap_toggle]\r\n\r\n[ap_toggle title=\"The founders of denominations agree:\" status=\"close\"]Martin Luther… \"I would have those who are to be baptized to be entirely immersed, as the work imports and the mystery signifies.\"\r\n\r\nJohn Calvin… \"The word ´baptize´ signifies to immerse. It is certain that immersion was the practice of the ancient church.\"\r\n\r\nJohn Wesley… \"Buried with Him, alludes to baptizing by immersion according to the custom of the first church.\"[/ap_toggle][/ap_tab]\r\n\r\n[ap_tab title=\"<strong>How Does this Work?</strong>\"][ap_toggle title=\"What Should I Wear?\" status=\"close\"]Women should wear a dark t-shirt and swim suit/shorts. Men may wear shorts and dark t-shirts, or a swimsuit. Bring a change of clothes, a towel, and a plastic bag for your wet clothes.[/ap_toggle]\r\n\r\n[ap_toggle title=\"Will I Have to Say Anything?\" status=\"close\"]Yes! At the beginning of the service, one of the pastor\'s will briefly explain the meaning of baptism. At that time, they will ask you a question that will indicate you giving a public confession of Jesus Christ.\r\n\r\nYou will wait in the water for your turn to be baptized. The pastor will introduce you, briefly lower you just under the water, and then you can leave the water, dry off, and watch the others. Later you will receive your baptism certificate.\r\n\r\nWe encourage you to invite all your relatives and friends to attend your baptism.[/ap_toggle]\r\n\r\n[ap_toggle title=\"Can my family and friends be baptized together?\" status=\"close\"]Yes! If each person understands fully the meaning of Biblical baptism, and each one has personally placed his/her trust in Christ for salvation, we encourage families to be baptized at the same time. It is a wonderful expression of commitment.\r\n\r\nHowever, it is important to remember that baptism is a personal statement of faith, not a family or group tradition. It is usually not wise to delay your baptism while waiting on others to join you. This puts an undue pressure on them and delays your obedience.\r\n\r\nSalvation is private between you and God. Baptism is public between You, God and the Church.[/ap_toggle][/ap_tab]\r\n[/ap_tab_group]','Baptism','','publish','open','open','','baptism','','','2015-09-29 16:25:11','2015-09-29 16:25:11','',17,'http://www.mytwincity.org/?page_id=39',0,'page','',0),(40,1,'2015-07-20 20:02:57','2015-07-20 20:02:57','','Baptism','','inherit','open','open','','39-revision-v1','','','2015-07-20 20:02:57','2015-07-20 20:02:57','',39,'http://www.mytwincity.org/2015/07/20/39-revision-v1/',0,'revision','',0),(41,1,'2015-07-20 20:03:28','2015-07-20 20:03:28','','Membership','','publish','open','open','','membership','','','2015-07-20 20:03:28','2015-07-20 20:03:28','',17,'http://www.mytwincity.org/?page_id=41',0,'page','',0),(42,1,'2015-07-20 20:03:28','2015-07-20 20:03:28','','Membership','','inherit','open','open','','41-revision-v1','','','2015-07-20 20:03:28','2015-07-20 20:03:28','',41,'http://www.mytwincity.org/2015/07/20/41-revision-v1/',0,'revision','',0),(43,1,'2015-07-20 20:06:40','2015-07-20 20:06:40','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>CITY KIDS: Children\'s Ministries</strong></h2>\r\nWhile your little ones are learning about Jesus, you can feel secure in knowing your little ones are safe!\r\n\r\nAll volunteers and church staff working with our young people are interviewed by the Children\'s Ministry Director and/or the Pastor personally and have background checks to ensure safety.\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Nursery</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Nursery is always available at TCB for all services for children under 3 years old by ladies with young child/infant experience. Parents are encouraged to bring their own food or drink if needed (in case of food allergies. We are a peanut/tree nut free facility). These precious ones enjoy Bible Songs and free-play with age appropriate toys.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Mornings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Children\'s Sunday School</strong></h3>\r\nSunday Mornings 9:45 AM (Ages 4 through 12)\r\n\r\nSunday School is a time that children really get to learn the fundamentals of the Christian faith and walk through the various stories of the Bible geared to their age level. Curriculum provided by Joyful Life, a subsidiary of A Beka Publications.\r\n\r\n \r\n<h3><strong>Children\'s Church</strong></h3>\r\nSunday Worship Time 11:00 AM (Ages 4 through 12)\r\n\r\nThe Junior Church Hour is an extension of the Bible learning time where all the children get to continue to learn about the Lord with fun, hands-on, interactive Bible activities appropriate for their age level. Children can also win awards for bringing visitors, consistent attendance, and Bible memory.\r\n\r\n[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Word of Life Club: Olympians</strong></h3>\r\nSunday Nights 5:00 PM (Ages 4 through 12)\r\n\r\nThis program teaches children and their parents how to have a quiet time with God and learn the basics of what it means to spend quality time with the Lord. There is music, games, and creative ways to learn the Bible in a relevant way.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Wednesday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Olympians\' Club Mid-week Meetup</strong></h3>\r\nWednesday Nights 6:30 PM (Ages 4 through 12)\r\n\r\nThis is simply a mid-week checkup time for children who are participating in the Sunday night Olympian Club from Word of Life. There is games, Bible memory, snacks, and fun!\r\n\r\n[/ap_tagline_box][/ap_tab]\r\n[/ap_tab_group]','City Kids','','publish','open','open','','city-kids','','','2015-09-29 16:47:31','2015-09-29 16:47:31','',19,'http://www.mytwincity.org/?page_id=43',0,'page','',0),(44,1,'2015-07-20 20:06:40','2015-07-20 20:06:40','','City Kids','','inherit','open','open','','43-revision-v1','','','2015-07-20 20:06:40','2015-07-20 20:06:40','',43,'http://www.mytwincity.org/2015/07/20/43-revision-v1/',0,'revision','',0),(45,1,'2015-07-20 20:07:23','2015-07-20 20:07:23','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\"><img class=\"aligncenter wp-image-1585 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\" alt=\"CITY TEENS BANNER_wide\" width=\"960\" height=\"480\" /></a>\r\n\r\n \r\n<h2><strong>Welcome To City Teens</strong></h2>\r\nCity Teens is a youth group for all teens in grades 7-12 who are seeking to grow in their walk with Jesus or maybe just wondering who Jesus is. We want our teens to have their own faith and not just follow Jesus because their friends or family follows Him. Our goal is that they will graduate from City Teens and continue serving Jesus for the rest of their lives.\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Vision</strong></h3>\r\nPreparing students with the knowledge they need to have a growing relationship with Jesus and to be able to share that relationship with others.\r\n<h3><strong>About</strong></h3>\r\nCity Teens has 3 distinct programs throughout the week located in the Larson Center:\r\n\r\n[ap_toggle title=\"<strong>Rise-Up</strong>\" status=\"close\"]Our Sunday morning program from 10-11am where we have a time of prayer requests and teaching of God’s Word. This is our main teaching program.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Refuel</strong>\" status=\"close\"]Our Sunday evening program from 5-6:30pm where we have snacks, games, and a short devotional geared towards topics that every teen can relate to.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Revive</strong>\" status=\"close\"]Our Wednesday evening program from 6:30-8pm that includes games and a Bible study geared towards our teens having conversations about what they are learning.[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">We have done activities in the past including lock-ins, campfire and s’mores, Reverb Word of Life, AHL Hockey games, roller skating, concerts, and the list goes on. Check the calendar below for more details on upcoming events.</span> [/ap_tagline_box]\r\n\r\n \r\n<h4><strong>Like us on <a href=\"https://www.facebook.com/pages/City-Teens/135540556474196\">Facebook</a> </strong>and keep current with the latest events!</h4>\r\n<h4><strong>For more information on getting connected, <a href=\"mailto:twincityteens@gmail.com?subject=Get%20Connected%20with%20City%20Teens%20From%20Website\">Contact us here</a></strong></h4>\r\n \r\n\r\n[gcal id=\"1589\"]\r\n\r\n \r\n\r\n ','City Teens','','publish','open','open','','city-teens','','','2015-09-29 15:52:57','2015-09-29 15:52:57','',19,'http://www.mytwincity.org/?page_id=45',0,'page','',0),(46,1,'2015-07-20 20:07:23','2015-07-20 20:07:23','','City Teens','','inherit','open','open','','45-revision-v1','','','2015-07-20 20:07:23','2015-07-20 20:07:23','',45,'http://www.mytwincity.org/2015/07/20/45-revision-v1/',0,'revision','',0),(47,1,'2015-07-20 20:07:49','2015-07-20 20:07:49','Single living, single parenting, and single again all have their pros and their cons. However, if you want a great support in a local church come and check out our single adults and their passion in being the right person and not just finding the right person.\r\n<h3><strong>Check back for more updates to this page!</strong></h3>','City Life (Single Adults & Young Married)','','publish','closed','closed','','young-adults','','','2015-09-03 20:58:03','2015-09-03 20:58:03','',19,'http://www.mytwincity.org/?page_id=47',0,'page','',0),(48,1,'2015-07-20 20:07:49','2015-07-20 20:07:49','','Young Adults','','inherit','open','open','','47-revision-v1','','','2015-07-20 20:07:49','2015-07-20 20:07:49','',47,'http://www.mytwincity.org/2015/07/20/47-revision-v1/',0,'revision','',0),(49,1,'2015-07-20 20:08:49','2015-07-20 20:08:49','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\n<strong>Second Saturday\'s</strong>: Once a month the men of TCB gather to pray on Saturday\'s at 8:30 am. Sometimes we do breakfast and sometimes we do an AM Bible study. This is focused on an hour and a half on Saturday to ensure we pray for one another.\r\n\r\n<strong>Special Partnership Events:</strong> In New England, we partner with other men\'s organizations that will create a healthy atmosphere for the men in our church and community. Many men do not have to feel alone. Here they can engage in sports, events, or just one on one guy-time.\r\n\r\nFor All Men\'s Events Please Contact <a href=\"mailto:lashombc@yahoo.com\">Clem Lashomb</a>\r\n\r\n[/ap_tagline_box]','Men\'s Ministry','','publish','closed','closed','','men','','','2015-09-25 13:01:47','2015-09-25 13:01:47','',19,'http://www.mytwincity.org/?page_id=49',0,'page','',0),(50,1,'2015-07-20 20:08:49','2015-07-20 20:08:49','','Men','','inherit','open','open','','49-revision-v1','','','2015-07-20 20:08:49','2015-07-20 20:08:49','',49,'http://www.mytwincity.org/2015/07/20/49-revision-v1/',0,'revision','',0),(51,1,'2015-07-20 20:09:06','2015-07-20 20:09:06','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>What will you find in the TCB Women\'s Ministry?</strong></h2>\r\nYou will be inspired, rejuvenated, and experience growth through weekly Bible studies, Wednesday evening worship and prayer, retreats, luncheons, and more. No matter your life stage, all women are welcome!\r\n<h3><strong>Enjoy building relationships?</strong></h3>\r\nWe know how you feel. Relationships are integral and vital to our lives as women. Our ministry provides encouraging community to equip and challenge you to live out your God-given potential on a daily basis.\r\n<h3><strong>Want to grow in Christ at the same time?</strong></h3>\r\nEverything we do is built on a Biblical foundation. We offer Bible studies throughout the year to help you grow, connect, and learn more about the Lord.\r\n<h3><strong>Love serving others?</strong></h3>\r\nWe want to help you serve others in a greater fashion by giving you the tools you need to be a confident follower of Christ who proclaims Him boldly and loves others. Opportunities to serve are offered throughout the year.\r\n\r\n[/ap_tagline_box]','Women\'s Ministry','','publish','closed','closed','','women','','','2015-09-25 13:01:08','2015-09-25 13:01:08','',19,'http://www.mytwincity.org/?page_id=51',0,'page','',0),(52,1,'2015-07-20 20:09:06','2015-07-20 20:09:06','','Women','','inherit','open','open','','51-revision-v1','','','2015-07-20 20:09:06','2015-07-20 20:09:06','',51,'http://www.mytwincity.org/2015/07/20/51-revision-v1/',0,'revision','',0),(53,1,'2015-07-20 20:09:23','2015-07-20 20:09:23','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Ladies\' Bible Study</strong></h3>\r\nSunday 9:45 AM\r\n\r\n“The aged women...that they may teach the young women\" Titus 2:3-4. This Bible study has easy main floor access to the church. The purpose of this Bible study was so the senior saints can meet to share wisdom and fellowship. However, younger women that wish to learn from these ladies\' life experiences often join the class to make it more diverse in age range.\r\n\r\n[/ap_tagline_box]','Senior Citizen\'s Ministry','','publish','closed','closed','','city-seniors','','','2015-09-04 15:56:47','2015-09-04 15:56:47','',19,'http://www.mytwincity.org/?page_id=53',0,'page','',0),(54,1,'2015-07-20 20:09:23','2015-07-20 20:09:23','','City Seniors','','inherit','open','open','','53-revision-v1','','','2015-07-20 20:09:23','2015-07-20 20:09:23','',53,'http://www.mytwincity.org/2015/07/20/53-revision-v1/',0,'revision','',0),(79,1,'2015-07-20 20:18:13','2015-07-20 20:18:13','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"]</strong>\r\n\r\n[ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are:\r\n<ul>\r\n <li>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God.</li>\r\n <li>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip.</li>\r\n <li>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen.</li>\r\n <li>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering.</li>\r\n <li>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle][ap_toggle title=\"AUTOMATED BANK DEBIT\" status=\"close\"]Automated Bank Debit is the easiest and most effective way to automate your giving. Once it is set up, you may update or change your giving at any time by simply contacting TCB office. Plus, 100% of your gift goes to the ministries of TCB because there are no processing fees.</li>\r\n</ul>\r\nTo sign-up, complete an auto-debit form and mail or fax the completed form to TCB office to have your giving automatically deducted from your checking or savings account. Complete instructions are in the download. [/ap_toggle][ap_toggle title=\"STOCKS / BONDS / SECURITIES\" status=\"close\"]Appreciated Marketable Securities are a great way to maximize your giving because you receive an immediate income tax deduction for the full fair market value of your securities. In addition, you pay no capital gains tax on the difference between your cost and the fair market value.\r\n\r\nFor more information on giving stocks/bonds/securities to Twin City\'s e-mail giving@twincitybaptist.com.[/ap_toggle][ap_toggle title=\"TITHES AND OFFERINGS\" status=\"close\"]Financial giving at Twin City can generally be divided into two categories: tithes and offerings. The Bible teaches us that we worship the Lord with our tithe, which is ten percent of our income contributed to the church on a regular basis. You can learn more about tithes here. When we feel called to give over and above our tithe, we do so as an offering.[/ap_toggle][ap_toggle title=\"STEWARDSHIP\" status=\"close\"]The ministry of TCB is funded by God\'s provision through the tithes and offerings of faithful TCB members and attenders. At TCB, we honor God\'s provision by exercising wise and faithful stewardship, ethical business practices, and full accountability so that the financial integrity of TCB remains beyond reproach.\r\n\r\nOur mission is facilitated through our system of internal controls over financial reporting and our internal budgeting and reporting processes. Additionally, TCB has an annual financial review performed by an independent accounting firm.\r\n\r\nMembers of TCB may request a copy of our most recent financial statements or ask general questions about our financial practices at any time by contacting us at giving@mytwincity.org[/ap_toggle][ap_toggle title=\"A NOTE ABOUT CREDIT CARDS\" status=\"close\"]While we allow the use of credit cards for tithes and offerings, we still strongly encourage the use of electronic funds transfer rather than credit card for two primary reasons:\r\n<ul>\r\n <li>Although many pay off their credit cards each month, many also do not. We do not want to encourage someone to go into debt and pay interest on gifts given to the church.</li>\r\n <li>With electronic transfer, your entire gift goes to the church. When using a credit card, as much as 3% of your gift can go to the credit card company.[/ap_toggle][/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Your information is held securely by the Sage Virtual System. This information will remain private and will never be given away to third parties, other than to process your scheduled contributions. You can schedule new contributions at any time and can modify or cancel those contributions at any time prior to the date they are scheduled. Once the contribution has been processed, however, it cannot be canceled. If you have any problems or questions related to this, please contact us at giving@mytwincity.org[/ap_tagline_box][/ap_tab]\r\n[/ap_tab_group]</li>\r\n</ul>','Giving @ TCB','','publish','open','open','','giving-tcb','','','2015-07-23 21:17:32','2015-07-23 21:17:32','',27,'http://www.mytwincity.org/?page_id=79',0,'page','',0),(80,1,'2015-07-20 20:18:13','2015-07-20 20:18:13','','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-20 20:18:13','2015-07-20 20:18:13','',79,'http://www.mytwincity.org/2015/07/20/79-revision-v1/',0,'revision','',0),(97,1,'2015-07-21 14:39:39','2015-07-21 14:39:39',' ','','','publish','open','closed','','97','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=97',13,'nav_menu_item','',0),(98,1,'2015-07-21 14:39:39','2015-07-21 14:39:39',' ','','','publish','open','closed','','98','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',17,'http://www.mytwincity.org/?p=98',15,'nav_menu_item','',0),(99,1,'2015-07-21 14:39:39','2015-07-21 14:39:39',' ','','','publish','open','closed','','99','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',17,'http://www.mytwincity.org/?p=99',14,'nav_menu_item','',0),(101,1,'2015-07-21 14:39:41','2015-07-21 14:39:41',' ','','','publish','open','closed','','101','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=101',27,'nav_menu_item','',0),(103,1,'2015-07-21 14:39:39','2015-07-21 14:39:39',' ','','','publish','open','closed','','103','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=103',16,'nav_menu_item','',0),(104,1,'2015-07-21 14:39:40','2015-07-21 14:39:40',' ','','','publish','open','closed','','104','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',19,'http://www.mytwincity.org/?p=104',17,'nav_menu_item','',0),(105,1,'2015-07-21 14:39:40','2015-07-21 14:39:40','','Senior Citizen\'s Ministry','','publish','open','closed','','105','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',19,'http://www.mytwincity.org/?p=105',23,'nav_menu_item','',0),(106,1,'2015-07-21 14:39:40','2015-07-21 14:39:40',' ','','','publish','open','closed','','106','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',19,'http://www.mytwincity.org/?p=106',18,'nav_menu_item','',0),(108,1,'2015-07-21 14:39:40','2015-07-21 14:39:40','','Men\'s Ministry','','publish','open','closed','','108','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',19,'http://www.mytwincity.org/?p=108',21,'nav_menu_item','',0),(111,1,'2015-07-21 14:39:40','2015-07-21 14:39:40','','Women\'s Ministry','','publish','open','closed','','111','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',19,'http://www.mytwincity.org/?p=111',22,'nav_menu_item','',0),(112,1,'2015-07-21 14:39:40','2015-07-21 14:39:40',' ','','','publish','open','closed','','112','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',19,'http://www.mytwincity.org/?p=112',20,'nav_menu_item','',0),(114,1,'2015-07-21 14:39:41','2015-07-21 14:39:41',' ','','','publish','open','closed','','114','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=114',31,'nav_menu_item','',0),(115,1,'2015-07-21 14:39:41','2015-07-21 14:39:41',' ','','','publish','open','closed','','115','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',27,'http://www.mytwincity.org/?p=115',32,'nav_menu_item','',0),(118,1,'2015-07-21 14:39:39','2015-07-21 14:39:39',' ','','','publish','open','closed','','118','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=118',2,'nav_menu_item','',0),(119,1,'2015-07-21 14:39:39','2015-07-21 14:39:39',' ','','','publish','open','closed','','119','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',15,'http://www.mytwincity.org/?p=119',3,'nav_menu_item','',0),(121,1,'2015-07-21 14:39:39','2015-07-21 14:39:39',' ','','','publish','open','closed','','121','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',15,'http://www.mytwincity.org/?p=121',5,'nav_menu_item','',0),(122,1,'2015-07-21 14:39:39','2015-07-21 14:39:39',' ','','','publish','open','closed','','122','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',15,'http://www.mytwincity.org/?p=122',7,'nav_menu_item','',0),(124,1,'2015-07-21 14:39:40','2015-07-21 14:39:40',' ','','','publish','open','closed','','124','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=124',26,'nav_menu_item','',0),(133,1,'2015-07-21 14:41:19','2015-07-21 14:41:19','<img class=\"aligncenter wp-image-1291 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CU-wide_wide.jpg\" alt=\"CU wide_wide\" width=\"960\" height=\"480\" />\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>About the Semester Studies:</strong></h3>\r\nAt Twin City at 5 pm, we are continually giving you more opportunities to become fully developed followers for Jesus Christ by providing different ways to grow in the Lord. Sunday Nights are called <strong>City University</strong>, a place where you choose your class elective for 12 weeks and launch into a deeper walk with Christ through studies that are geared for conversation and getting your questions answered.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\"><em>Check back soon for updates to the Fall Semester!</em></span>[/ap_tagline_box]','C-University','','publish','open','open','','c-university','','','2015-09-04 16:36:51','2015-09-04 16:36:51','',19,'http://www.mytwincity.org/?page_id=133',0,'page','',0),(134,1,'2015-07-21 14:41:19','2015-07-21 14:41:19','','C-University','','inherit','open','open','','133-revision-v1','','','2015-07-21 14:41:19','2015-07-21 14:41:19','',133,'http://www.mytwincity.org/2015/07/21/133-revision-v1/',0,'revision','',0),(135,1,'2015-07-21 14:42:08','2015-07-21 14:42:08',' ','','','publish','open','closed','','135','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',19,'http://www.mytwincity.org/?p=135',19,'nav_menu_item','',0),(137,1,'2015-07-21 15:07:22','2015-07-21 15:07:22','','ALQ_WEBwide_wide','','inherit','open','open','','alq_webwide_wide','','','2015-07-21 15:07:22','2015-07-21 15:07:22','',133,'http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide.jpg',0,'attachment','image/jpeg',0),(138,1,'2015-07-21 17:50:29','2015-07-21 17:50:29','','slideshow-clean-line-separator.png','','inherit','closed','closed','','slideshow-clean-line-separator-png','','','2015-07-21 17:50:29','2015-07-21 17:50:29','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-line-separator.png',0,'attachment','image/png',0),(139,1,'2015-07-21 17:50:29','2015-07-21 17:50:29','','slideshow-clean-image-1.png','','inherit','closed','closed','','slideshow-clean-image-1-png','','','2015-07-21 17:50:29','2015-07-21 17:50:29','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-1.png',0,'attachment','image/png',0),(140,1,'2015-07-21 17:50:30','2015-07-21 17:50:30','','slideshow-clean-image-pen-21.png','','inherit','closed','closed','','slideshow-clean-image-pen-21-png','','','2015-07-21 17:50:30','2015-07-21 17:50:30','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-pen-21.png',0,'attachment','image/png',0),(141,1,'2015-07-21 17:50:30','2015-07-21 17:50:30','','slideshow-clean-image-notebook.png','','inherit','closed','closed','','slideshow-clean-image-notebook-png','','','2015-07-21 17:50:30','2015-07-21 17:50:30','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-notebook.png',0,'attachment','image/png',0),(142,1,'2015-07-21 17:50:30','2015-07-21 17:50:30','','slideshow-clean-image-pen-1.png','','inherit','closed','closed','','slideshow-clean-image-pen-1-png','','','2015-07-21 17:50:30','2015-07-21 17:50:30','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-pen-1.png',0,'attachment','image/png',0),(143,1,'2015-07-21 17:50:30','2015-07-21 17:50:30','','slideshow-clean-image-clip-1.png','','inherit','closed','closed','','slideshow-clean-image-clip-1-png','','','2015-07-21 17:50:30','2015-07-21 17:50:30','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-clip-1.png',0,'attachment','image/png',0),(144,1,'2015-07-21 17:50:30','2015-07-21 17:50:30','','slideshow-clean-image-clip-4.png','','inherit','closed','closed','','slideshow-clean-image-clip-4-png','','','2015-07-21 17:50:30','2015-07-21 17:50:30','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-clip-4.png',0,'attachment','image/png',0),(145,1,'2015-07-21 17:50:30','2015-07-21 17:50:30','','slideshow-clean-image-clip-2.png','','inherit','closed','closed','','slideshow-clean-image-clip-2-png','','','2015-07-21 17:50:30','2015-07-21 17:50:30','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-clip-2.png',0,'attachment','image/png',0),(146,1,'2015-07-21 17:50:30','2015-07-21 17:50:30','','slideshow-clean-image-clip-3.png','','inherit','closed','closed','','slideshow-clean-image-clip-3-png','','','2015-07-21 17:50:30','2015-07-21 17:50:30','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-clip-3.png',0,'attachment','image/png',0),(147,1,'2015-07-21 17:50:30','2015-07-21 17:50:30','','slideshow-clean-image-coffee-cup.png','','inherit','closed','closed','','slideshow-clean-image-coffee-cup-png','','','2015-07-21 17:50:30','2015-07-21 17:50:30','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-coffee-cup.png',0,'attachment','image/png',0),(148,1,'2015-07-21 17:50:31','2015-07-21 17:50:31','','slideshow-clean-image-grain-1.png','','inherit','closed','closed','','slideshow-clean-image-grain-1-png','','','2015-07-21 17:50:31','2015-07-21 17:50:31','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-grain-1.png',0,'attachment','image/png',0),(149,1,'2015-07-21 17:50:31','2015-07-21 17:50:31','','slideshow-clean-image-grain-3.png','','inherit','closed','closed','','slideshow-clean-image-grain-3-png','','','2015-07-21 17:50:31','2015-07-21 17:50:31','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-grain-3.png',0,'attachment','image/png',0),(150,1,'2015-07-21 17:50:31','2015-07-21 17:50:31','','slideshow-clean-image-grain-2.png','','inherit','closed','closed','','slideshow-clean-image-grain-2-png','','','2015-07-21 17:50:31','2015-07-21 17:50:31','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-grain-2.png',0,'attachment','image/png',0),(151,1,'2015-07-21 17:50:31','2015-07-21 17:50:31','','slideshow-clean-image-pencil.png','','inherit','closed','closed','','slideshow-clean-image-pencil-png','','','2015-07-21 17:50:31','2015-07-21 17:50:31','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/slideshow-clean-image-pencil.png',0,'attachment','image/png',0),(152,1,'2015-07-21 17:50:31','2015-07-21 17:50:31','','background-slideshow-12.png','','inherit','closed','closed','','background-slideshow-12-png','','','2015-07-21 17:50:31','2015-07-21 17:50:31','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/background-slideshow-12.png',0,'attachment','image/png',0),(153,1,'2015-07-21 17:50:31','2015-07-21 17:50:31','','ipad-slideshow-opus-1.png','','inherit','closed','closed','','ipad-slideshow-opus-1-png','','','2015-07-21 17:50:31','2015-07-21 17:50:31','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/ipad-slideshow-opus-1.png',0,'attachment','image/png',0),(154,1,'2015-07-21 17:50:31','2015-07-21 17:50:31','','iphone-white-opus-2.png','','inherit','closed','closed','','iphone-white-opus-2-png','','','2015-07-21 17:50:31','2015-07-21 17:50:31','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/iphone-white-opus-2.png',0,'attachment','image/png',0),(155,1,'2015-07-21 17:50:31','2015-07-21 17:50:31','','krogi.png','','inherit','closed','closed','','krogi-png','','','2015-07-21 17:50:31','2015-07-21 17:50:31','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/krogi.png',0,'attachment','image/png',0),(156,1,'2015-07-21 17:50:32','2015-07-21 17:50:32','','hands_PNG903.png','','inherit','closed','closed','','hands-png903-png','','','2015-07-21 17:50:32','2015-07-21 17:50:32','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/hands_PNG903.png',0,'attachment','image/png',0),(157,1,'2015-07-21 17:50:32','2015-07-21 17:50:32','','polygon-background.jpg','','inherit','closed','closed','','polygon-background-jpg','','','2015-07-21 17:50:32','2015-07-21 17:50:32','',0,'http://www.mytwincity.org/wp-content/uploads/revslider/light-opus/polygon-background.jpg',0,'attachment','image/jpeg',0),(162,1,'2015-07-22 15:16:54','2015-07-22 15:16:54','','Home','','publish','open','closed','','home','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=162',1,'nav_menu_item','',0),(574,1,'2014-06-20 06:53:13','2014-06-20 06:53:13','Building styles in the 13 colonies were influenced by techniques and styles from England, as well as traditions brought by settlers from other parts of Europe. In New England, 17th-century colonial houses were built primarily from wood, following styles found in the southeastern counties of England. Dutch Colonial structures, built primarily in the Hudson River Valley, Long Island, and northern New Jersey, reflected construction styles from Holland and Flanders and used stone and brick more extensively than buildings in New England.','Colonies','','publish','closed','closed','','colonies','','','2014-06-20 06:53:13','2014-06-20 06:53:13','',0,'http://accesspressthemes.com/accesspresslite-pro/?post_type=portfolio&p=111',0,'portfolio','',0),(575,1,'2014-06-20 06:56:54','2014-06-20 06:56:54','Farmhouse is a general term for the main house of a farm. It is a type of building or house which serves a residential purpose in a rural or agricultural setting. Most often, the surrounding environment will be a farm. Many farm houses are shaped like a T. The perpendicular section is referred to as the ell.\n\nThese buildings tend to be more pragmatic than aesthetic. Sometimes a farmhouse may refer to a building design style, or a building\'s former purpose. This may occur when the farming area has been developed for other purposes, but the building itself still stands. Architectural styles vary, but very often they are of Cape Cod design. In general styles vary from region to region, but more often the style is simplistic so to serve the needs (and the budget) of the owners.','Farmhouse','','publish','closed','closed','','farmhouse','','','2014-06-20 06:56:54','2014-06-20 06:56:54','',0,'http://accesspressthemes.com/accesspresslite-pro/?post_type=portfolio&p=113',0,'portfolio','',0),(625,1,'2014-06-20 08:04:09','2014-06-20 08:04:09','In the 10th century, the Chacoan people constructed large, multi-room dwellings, some comprising more than 900 rooms, in the Chaco Canyon area of what is now northwest New Mexico. In 1839, the first New York City tenement was built, housing mainly poor immigrants. The tenements were breeding grounds for outlaws, juvenile delinquents, and organized crime. Muckraker journalist Jacob Riis wrote in <i>How the Other Half Lives</i>:\n\nThe New York tough may be ready to kill where his London brother would do little more than scowl; yet, as a general thing he is less repulsively brutal in looks. Here again the reason may be the same: the breed is not so old. A few generations more in the slums, and all that will be changed.','Cozy apartments','','publish','closed','closed','','cozy-apartments','','','2014-06-20 08:04:09','2014-06-20 08:04:09','',0,'http://accesspressthemes.com/accesspresslite-pro/?post_type=portfolio&p=135',0,'portfolio','',0),(626,1,'2014-06-20 08:11:01','2014-06-20 08:11:01','Bungalows are very convenient for the homeowner in that all living areas are on a single-storey and there are no stairs between living areas. A bungalow is well suited to persons with impaired mobility, such as the elderly or those in wheelchairs.\n\nNeighbourhoods of only bungalows offer more privacy than similar neighbourhoods with two-storey houses. With bungalows, strategically planted trees and shrubs are usually sufficient to block the view of neighbours. With two-storey houses, the extra height requires much taller trees to accomplish the same, and it may not be practical to place such tall trees close to the house to obscure the view from the second floor of the next door neighbour. They are a very cost-effective way of living. On the other hand, even closely spaced bungalows make for quite low-density neighbourhoods, contributing to urban sprawl. In Australia, bungalows have broad verandas and as a result are often excessively dark inside, requiring artificial light even in daytime.','Cozy bungalow','','publish','closed','closed','','cozy-bungalow','','','2014-06-20 08:11:01','2014-06-20 08:11:01','',0,'http://accesspressthemes.com/accesspresslite-pro/?post_type=portfolio&p=137',0,'portfolio','',0),(709,1,'2014-12-02 08:15:05','2014-12-02 08:15:05','Phasellus efficitur et nulla vitae tristiqued euismod tortor vulputate ac. Nulla sed vulputate arcu, eget venenatis ipsum. Curabitur a metus in metus porttitor commodo sit amet vitae velit. Nullam nec blandit turpis. Ut fringilla ac libero eu luctus. Etiam neque risus, laoreet tincidunt risus id, ultricies placerat tortor. Phasellus efficitur et nulla vitae tristique. ','Old Creek','','publish','closed','closed','','old-creek','','','2014-12-02 08:15:05','2014-12-02 08:15:05','',0,'https://accesspressthemes.com/accesspress-parallax-pro-demo/?post_type=portfolio&p=709',0,'portfolio','',0),(710,1,'2014-12-02 08:14:31','2014-12-02 08:14:31','Nullam vestibulum suscipit faucibus. Curabitur tincidunt consequat justo, a eleifend ligula convallis et. Phasellus ullamcorper accumsan tempor. Cras consectetur interdum lorem eu aliquam. Suspendisse aliquam aliquet diam, id euismod tortor vulputate ac. Nulla sed vulputate arcu, eget venenatis ipsum. Curabitur a metus in metus porttitor commodo sit amet vitae velit. Nullam nec blandit turpis. Ut fringilla ac libero eu luctus. Etiam neque risus, laoreet tincidunt risus id, ultricies placerat tortor. Phasellus efficitur et nulla vitae tristique. ','Fachwerkhaus','','publish','closed','closed','','fachwerkhaus','','','2014-12-02 08:14:31','2014-12-02 08:14:31','',0,'https://accesspressthemes.com/accesspress-parallax-pro-demo/?post_type=portfolio&p=710',0,'portfolio','',0),(763,1,'2014-12-04 12:22:48','2014-12-04 12:22:48','','Home','','publish','open','open','','home-3','','','2014-12-04 12:22:48','2014-12-04 12:22:48','',0,'https://accesspressthemes.com/accesspress-parallax-pro-demo/?page_id=763',0,'page','',0),(1108,1,'2015-01-07 05:42:44','2015-01-07 05:42:44','','banner1','','inherit','open','open','','banner1','','','2015-01-07 05:42:44','2015-01-07 05:42:44','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/banner1.jpg',0,'attachment','image/jpeg',0),(1111,1,'2015-01-07 05:43:57','2015-01-07 05:43:57','','banner2','','inherit','open','open','','banner2','','','2015-01-07 05:43:57','2015-01-07 05:43:57','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/banner2.jpg',0,'attachment','image/jpeg',0),(1130,1,'2015-01-07 06:03:33','2015-01-07 06:03:33','','team1','','inherit','open','open','','team1','','','2015-01-07 06:03:33','2015-01-07 06:03:33','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/team1.jpg',0,'attachment','image/jpeg',0),(1131,1,'2015-01-07 06:03:36','2015-01-07 06:03:36','','team2','','inherit','open','open','','team2','','','2015-01-07 06:03:36','2015-01-07 06:03:36','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/team2.jpg',0,'attachment','image/jpeg',0),(1132,1,'2015-01-07 06:03:38','2015-01-07 06:03:38','','team3','','inherit','open','open','','team3','','','2015-01-07 06:03:38','2015-01-07 06:03:38','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/team3.jpg',0,'attachment','image/jpeg',0),(1133,1,'2015-01-07 06:03:39','2015-01-07 06:03:39','','team4','','inherit','open','open','','team4','','','2015-01-07 06:03:39','2015-01-07 06:03:39','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/team4.jpg',0,'attachment','image/jpeg',0),(1134,1,'2015-01-07 06:03:41','2015-01-07 06:03:41','','team6','','inherit','open','open','','team6','','','2015-01-07 06:03:41','2015-01-07 06:03:41','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/team6.jpg',0,'attachment','image/jpeg',0),(1135,1,'2015-01-07 06:03:42','2015-01-07 06:03:42','','team7','','inherit','open','open','','team7','','','2015-01-07 06:03:42','2015-01-07 06:03:42','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/team7.jpg',0,'attachment','image/jpeg',0),(1136,1,'2015-01-07 06:03:44','2015-01-07 06:03:44','','team8','','inherit','open','open','','team8','','','2015-01-07 06:03:44','2015-01-07 06:03:44','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/team8.jpg',0,'attachment','image/jpeg',0),(1145,1,'2015-01-07 06:08:39','2015-01-07 06:08:39','','client1','','inherit','open','open','','client1','','','2015-01-07 06:08:39','2015-01-07 06:08:39','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/client1.jpg',0,'attachment','image/jpeg',0),(1146,1,'2015-01-07 06:08:40','2015-01-07 06:08:40','','client2','','inherit','open','open','','client2','','','2015-01-07 06:08:40','2015-01-07 06:08:40','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/client2.jpg',0,'attachment','image/jpeg',0),(1147,1,'2015-01-07 06:08:42','2015-01-07 06:08:42','','client3','','inherit','open','open','','client3','','','2015-01-07 06:08:42','2015-01-07 06:08:42','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/client3.jpg',0,'attachment','image/jpeg',0),(1152,1,'2015-01-07 06:36:01','2015-01-07 06:36:01','','blog1','','inherit','open','open','','blog1','','','2015-01-07 06:36:01','2015-01-07 06:36:01','',0,'http://www.mytwincity.org/wp-content/uploads/2014/12/blog1.png',0,'attachment','image/png',0),(1153,1,'2015-01-07 06:36:06','2015-01-07 06:36:06','','blog2','','inherit','open','open','','blog2','','','2015-01-07 06:36:06','2015-01-07 06:36:06','',0,'http://www.mytwincity.org/wp-content/uploads/2014/12/blog2.png',0,'attachment','image/png',0),(1156,1,'2015-01-07 06:37:33','2015-01-07 06:37:33','','blog3','','inherit','open','open','','blog3','','','2015-01-07 06:37:33','2015-01-07 06:37:33','',0,'http://www.mytwincity.org/wp-content/uploads/2014/12/blog3.png',0,'attachment','image/png',0),(1158,1,'2015-01-07 06:38:46','2015-01-07 06:38:46','','24x7','','inherit','open','open','','24x7','','','2015-01-07 06:38:46','2015-01-07 06:38:46','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/24x7.png',0,'attachment','image/png',0),(1159,1,'2015-01-07 06:38:48','2015-01-07 06:38:48','','clean-coding','','inherit','open','open','','clean-coding-2','','','2015-01-07 06:38:48','2015-01-07 06:38:48','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/clean-coding.png',0,'attachment','image/png',0),(1160,1,'2015-01-07 06:38:50','2015-01-07 06:38:50','','customizable','','inherit','open','open','','customizable','','','2015-01-07 06:38:50','2015-01-07 06:38:50','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/customizable.png',0,'attachment','image/png',0),(1161,1,'2015-01-07 06:38:52','2015-01-07 06:38:52','','html5','','inherit','open','open','','html5','','','2015-01-07 06:38:52','2015-01-07 06:38:52','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/html5.png',0,'attachment','image/png',0),(1162,1,'2015-01-07 06:38:53','2015-01-07 06:38:53','','multipurpose','','inherit','open','open','','multipurpose','','','2015-01-07 06:38:53','2015-01-07 06:38:53','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/multipurpose.png',0,'attachment','image/png',0),(1163,1,'2015-01-07 06:38:55','2015-01-07 06:38:55','','theme-options','','inherit','open','open','','theme-options','','','2015-01-07 06:38:55','2015-01-07 06:38:55','',0,'http://www.mytwincity.org/wp-content/uploads/2014/09/theme-options.png',0,'attachment','image/png',0),(1164,1,'2015-01-07 06:49:42','2015-01-07 06:49:42','','logo1','','inherit','open','open','','logo1','','','2015-01-07 06:49:42','2015-01-07 06:49:42','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/logo1.jpg',0,'attachment','image/jpeg',0),(1165,1,'2015-01-07 06:49:44','2015-01-07 06:49:44','','logo2','','inherit','open','open','','logo2','','','2015-01-07 06:49:44','2015-01-07 06:49:44','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/logo2.jpg',0,'attachment','image/jpeg',0),(1166,1,'2015-01-07 06:49:45','2015-01-07 06:49:45','','logo3','','inherit','open','open','','logo3','','','2015-01-07 06:49:45','2015-01-07 06:49:45','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/logo3.jpg',0,'attachment','image/jpeg',0),(1167,1,'2015-01-07 06:49:46','2015-01-07 06:49:46','','logo4','','inherit','open','open','','logo4','','','2015-01-07 06:49:46','2015-01-07 06:49:46','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/logo4.jpg',0,'attachment','image/jpeg',0),(1168,1,'2015-01-07 06:49:48','2015-01-07 06:49:48','','logo5','','inherit','open','open','','logo5','','','2015-01-07 06:49:48','2015-01-07 06:49:48','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/logo5.jpg',0,'attachment','image/jpeg',0),(1169,1,'2015-01-07 06:49:49','2015-01-07 06:49:49','','logo6','','inherit','open','open','','logo6','','','2015-01-07 06:49:49','2015-01-07 06:49:49','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/logo6.jpg',0,'attachment','image/jpeg',0),(1170,1,'2015-01-07 06:49:51','2015-01-07 06:49:51','','logo7','','inherit','open','open','','logo7','','','2015-01-07 06:49:51','2015-01-07 06:49:51','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/logo7.jpg',0,'attachment','image/jpeg',0),(1172,1,'2015-01-07 07:06:01','2015-01-07 07:06:01','','mobile2','','inherit','open','open','','mobile2','','','2015-01-07 07:06:01','2015-01-07 07:06:01','',0,'http://www.mytwincity.org/wp-content/uploads/2014/12/mobile2.png',0,'attachment','image/png',0),(1184,1,'2015-01-07 07:12:24','2015-01-07 07:12:24','','iphone1','','inherit','open','open','','iphone1','','','2015-01-07 07:12:24','2015-01-07 07:12:24','',0,'http://www.mytwincity.org/wp-content/uploads/2014/11/iphone1.png',0,'attachment','image/png',0),(1189,1,'2015-01-07 07:18:43','2015-01-07 07:18:43','','logo','','inherit','open','open','','logo','','','2015-01-07 07:18:43','2015-01-07 07:18:43','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/logo.png',0,'attachment','image/png',0),(1190,1,'2015-01-07 07:19:53','2015-01-07 07:19:53','','ipad','','inherit','open','open','','ipad','','','2015-01-07 07:19:53','2015-01-07 07:19:53','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/ipad.png',0,'attachment','image/png',0),(1191,1,'2015-01-07 07:22:32','2015-01-07 07:22:32','','photography','','inherit','open','open','','photography','','','2015-01-07 07:22:32','2015-01-07 07:22:32','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/photography.png',0,'attachment','image/png',0),(1192,1,'2015-01-07 07:24:50','2015-01-07 07:24:50','','buildings','','inherit','open','open','','buildings','','','2015-01-07 07:24:50','2015-01-07 07:24:50','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/buildings.jpg',0,'attachment','image/jpeg',0),(1194,1,'2015-01-07 07:29:57','2015-01-07 07:29:57','','oak','','inherit','open','open','','oak','','','2015-01-07 07:29:57','2015-01-07 07:29:57','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/oak.jpg',0,'attachment','image/jpeg',0),(1195,1,'2015-01-07 07:32:13','2015-01-07 07:32:13','','agsquare','','inherit','open','open','','agsquare','','','2015-01-07 07:32:13','2015-01-07 07:32:13','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/agsquare.png',0,'attachment','image/png',0),(1197,1,'2015-01-07 07:45:46','2015-01-07 07:45:46','','long-road-straight','','inherit','open','open','','long-road-straight','','','2015-01-07 07:45:46','2015-01-07 07:45:46','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/long-road-straight.jpg',0,'attachment','image/jpeg',0),(1198,1,'2015-01-07 07:48:18','2015-01-07 07:48:18','','black-pattern','','inherit','open','open','','black-pattern','','','2015-01-07 07:48:18','2015-01-07 07:48:18','',0,'http://www.mytwincity.org/wp-content/uploads/2015/01/black-pattern.png',0,'attachment','image/png',0),(1199,1,'2015-01-07 09:01:18','2015-01-07 09:01:18','','portfolio1','','inherit','open','open','','portfolio1','','','2015-01-07 09:01:18','2015-01-07 09:01:18','',709,'http://www.mytwincity.org/wp-content/uploads/2014/12/portfolio1.jpg',0,'attachment','image/jpeg',0),(1200,1,'2015-01-07 09:01:27','2015-01-07 09:01:27','','portfolio2','','inherit','open','open','','portfolio2','','','2015-01-07 09:01:27','2015-01-07 09:01:27','',709,'http://www.mytwincity.org/wp-content/uploads/2014/12/portfolio2.jpg',0,'attachment','image/jpeg',0),(1204,1,'2015-01-07 09:01:30','2015-01-07 09:01:30','','portfolio3','','inherit','open','open','','portfolio3','','','2015-01-07 09:01:30','2015-01-07 09:01:30','',709,'http://www.mytwincity.org/wp-content/uploads/2014/12/portfolio3.jpg',0,'attachment','image/jpeg',0),(1205,1,'2015-01-07 09:01:33','2015-01-07 09:01:33','','portfolio4','','inherit','open','open','','portfolio4','','','2015-01-07 09:01:33','2015-01-07 09:01:33','',709,'http://www.mytwincity.org/wp-content/uploads/2014/12/portfolio4.jpg',0,'attachment','image/jpeg',0),(1206,1,'2015-01-07 09:01:37','2015-01-07 09:01:37','','portfolio5','','inherit','open','open','','portfolio5','','','2015-01-07 09:01:37','2015-01-07 09:01:37','',709,'http://www.mytwincity.org/wp-content/uploads/2014/12/portfolio5.jpg',0,'attachment','image/jpeg',0),(1207,1,'2015-01-07 09:01:40','2015-01-07 09:01:40','','portfolio6','','inherit','open','open','','portfolio6','','','2015-01-07 09:01:40','2015-01-07 09:01:40','',709,'http://www.mytwincity.org/wp-content/uploads/2014/12/portfolio6.jpg',0,'attachment','image/jpeg',0),(1208,1,'2015-01-07 09:01:42','2015-01-07 09:01:42','','portfolio7','','inherit','open','open','','portfolio7','','','2015-01-07 09:01:42','2015-01-07 09:01:42','',709,'http://www.mytwincity.org/wp-content/uploads/2014/12/portfolio7.jpg',0,'attachment','image/jpeg',0),(1209,1,'2015-01-07 09:04:16','2015-01-07 09:04:16','','portfolio8','','inherit','open','open','','portfolio8','','','2015-01-07 09:04:16','2015-01-07 09:04:16','',574,'http://www.mytwincity.org/wp-content/uploads/2014/06/portfolio8.jpg',0,'attachment','image/jpeg',0),(1210,1,'2015-07-22 15:18:54','2015-07-22 15:18:54','','Home','','publish','open','open','','home-2','','','2015-07-22 15:18:54','2015-07-22 15:18:54','',0,'http://www.mytwincity.org/2015/07/22/home-2/',1,'nav_menu_item','',0),(1212,1,'2014-09-02 07:27:45','2014-09-02 07:27:45','','Google Map','','publish','open','open','','google-map','','','2014-09-02 07:27:45','2014-09-02 07:27:45','',0,'https://accesspressthemes.com/accesspress-parallax-pro-demo/?page_id=135',0,'page','',0),(1220,1,'2014-06-20 08:15:03','2014-06-20 08:15:03','Bungalows are very convenient for the homeowner in that all living areas are on a single-storey and there are no stairs between living areas. A bungalow is well suited to persons with impaired mobility, such as the elderly or those in wheelchairs.\n\nNeighbourhoods of only bungalows offer more privacy than similar neighbourhoods with two-storey houses. With bungalows, strategically planted trees and shrubs are usually sufficient to block the view of neighbours. With two-storey houses, the extra height requires much taller trees to accomplish the same, and it may not be practical to place such tall trees close to the house to obscure the view from the second floor of the next door neighbour. They are a very cost-effective way of living. On the other hand, even closely spaced bungalows make for quite low-density neighbourhoods, contributing to urban sprawl. In Australia, bungalows have broad verandas and as a result are often excessively dark inside, requiring artificial light even in daytime.','Country bungalow','','publish','closed','closed','','country-bungalow','','','2014-06-20 08:15:03','2014-06-20 08:15:03','',0,'http://accesspressthemes.com/accesspresslite-pro/?post_type=portfolio&p=139',0,'portfolio','',0),(1221,1,'2014-06-20 08:19:29','2014-06-20 08:19:29','Canadian farmhouses were influenced by European settlers. In Quebec, the style varied from Gothic to Swiss, with the kitchen being the most important room in the house. In Ontario, the farmhouses of the late 19th century were of Victorian influence. Earlier ones used clapboard and later variations had brick. Many had front porches. In the west dwellings varied from single story wooden homesteads to straw huts. Wooden houses were built later as railroads brought wood from the Rockies (Alberta, BC). By 1915 houses could be purchased as kits from Eaton\'s catalog. Canadian homes often differ from their American counterparts in that the porch was often enclosed.','Timber farmhouse','','publish','closed','closed','','timber-farmhouse','','','2014-06-20 08:19:29','2014-06-20 08:19:29','',0,'http://accesspressthemes.com/accesspresslite-pro/?post_type=portfolio&p=141',0,'portfolio','',0),(1240,1,'2015-07-22 15:18:58','2015-07-22 15:18:58',' ','','','publish','open','open','','1240','','','2015-07-22 15:18:58','2015-07-22 15:18:58','',0,'http://www.mytwincity.org/2015/07/22/1240/',1,'nav_menu_item','',0),(1290,1,'2015-07-22 16:03:51','2015-07-22 16:03:51','','City University','','publish','open','open','','city-university','','','2015-07-22 16:03:51','2015-07-22 16:03:51','',0,'http://www.mytwincity.org/?p=1290',0,'post','',0),(1291,1,'2015-07-22 16:03:44','2015-07-22 16:03:44','','CU wide_wide','','inherit','open','open','','cu-wide_wide','','','2015-07-22 16:03:44','2015-07-22 16:03:44','',1290,'http://www.mytwincity.org/wp-content/uploads/2015/07/CU-wide_wide.jpg',0,'attachment','image/jpeg',0),(1292,1,'2015-07-22 16:03:51','2015-07-22 16:03:51','','City University','','inherit','open','open','','1290-revision-v1','','','2015-07-22 16:03:51','2015-07-22 16:03:51','',1290,'http://www.mytwincity.org/2015/07/22/1290-revision-v1/',0,'revision','',0),(1293,1,'2015-07-22 16:04:12','2015-07-22 16:04:12','','Current Series','','publish','open','open','','current-series','','','2015-10-03 18:31:41','2015-10-03 18:31:41','',0,'http://www.mytwincity.org/?p=1293',0,'post','',0),(1294,1,'2015-07-22 16:05:56','2015-07-22 16:05:56','','ALQ_WEBwide_wide (1)','','inherit','open','open','','alq_webwide_wide-1','','','2015-07-22 16:05:56','2015-07-22 16:05:56','',1293,'http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg',0,'attachment','image/jpeg',0),(1295,1,'2015-07-22 16:06:12','2015-07-22 16:06:12','','Current Series','','inherit','open','open','','1293-revision-v1','','','2015-07-22 16:06:12','2015-07-22 16:06:12','',1293,'http://www.mytwincity.org/2015/07/22/1293-revision-v1/',0,'revision','',0),(1296,1,'2015-07-22 16:02:41','2015-07-22 16:02:41','','School Ad','','publish','open','open','','school-ad','','','2015-07-23 18:37:56','2015-07-23 18:37:56','',0,'http://www.mytwincity.org/?p=1296',0,'post','',0),(1297,1,'2015-07-22 16:07:13','2015-07-22 16:07:13','','TCCS WEB SLIDER_wide','','inherit','open','open','','tccs-web-slider_wide','','','2015-07-22 16:07:13','2015-07-22 16:07:13','',1296,'http://www.mytwincity.org/wp-content/uploads/2015/07/TCCS-WEB-SLIDER_wide.jpg',0,'attachment','image/jpeg',0),(1298,1,'2015-07-22 16:07:41','2015-07-22 16:07:41','','School Ad','','inherit','open','open','','1296-revision-v1','','','2015-07-22 16:07:41','2015-07-22 16:07:41','',1296,'http://www.mytwincity.org/2015/07/22/1296-revision-v1/',0,'revision','',0),(1299,1,'2015-07-22 16:40:55','2015-07-22 16:40:55','','vimeo_icon_white_on_blue_rounded','','inherit','open','open','','vimeo_icon_white_on_blue_rounded','','','2015-07-22 16:50:39','2015-07-22 16:50:39','',0,'http://www.mytwincity.org/wp-content/uploads/2015/07/vimeo_icon_white_on_blue_rounded.png',0,'attachment','image/png',0),(1301,1,'2015-07-22 18:50:17','2015-07-22 18:50:17','<h5>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Send your comments, questions, or suggestions, but just remember to enter your comments in the space provided below. Tell us how to get in touch with you. Click \"send\" and someone will message you shortly. </strong>[/ap_tagline_box]</h5>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>One more thing...Can you take 10 more seconds and write a simple google church review to reach more people like you? Just click [ap_button button_size=\"ap-small-bttn\" button_url=\"https://www.google.com/webhp?sourceid=chrome-instant&rlz=1C5CHFA_enUS557US557&ion=1&espv=2&ie=UTF-8#q=twin%20city%20baptist%20church&lrd=0x89e3e87e92068881:0x5070c417b503c767,2\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]HERE[/ap_button] and give us your rating of approval!</strong>[/ap_tagline_box]\r\n\r\n[ap_spacing spacing_height=\"10px\"]\r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','publish','open','open','','contact-2','','','2015-08-06 14:15:08','2015-08-06 14:15:08','',0,'http://www.mytwincity.org/?page_id=1301',0,'page','',0),(1302,1,'2015-07-22 18:50:17','2015-07-22 18:50:17','','Contact','','inherit','open','open','','1301-revision-v1','','','2015-07-22 18:50:17','2015-07-22 18:50:17','',1301,'http://www.mytwincity.org/2015/07/22/1301-revision-v1/',0,'revision','',0),(1303,1,'2015-07-22 18:51:04','2015-07-22 18:51:04',' ','','','publish','open','closed','','1303','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=1303',30,'nav_menu_item','',0),(1304,1,'2015-07-22 18:59:02','2015-07-22 18:59:02','<p>Your Name (required)<br />\r\n [text* your-name] </p>\r\n\r\n<p>Best Email (required)<br />\r\n [email* your-email] </p>\r\n\r\n<p>Best Phone<br />\r\n [tel tel-885] </p>\r\n\r\n<p>Subject<br />\r\n [text your-subject] </p>\r\n\r\n<p>Your Message<br />\r\n [textarea your-message] </p>\r\n\r\n<p>[submit \"Send\"]</p>\n[your-subject]\n[your-name] <mr.eaton14@gmail.com>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Twin City Baptist (http://www.mytwincity.org)\nmr.eaton14@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nTwin City Baptist <mr.eaton14@gmail.com>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Twin City Baptist (http://www.mytwincity.org)\n[your-email]\nReply-To: mr.eaton14@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.','Contact Page','','publish','open','open','','contact-form-1','','','2015-08-04 13:37:18','2015-08-04 13:37:18','',0,'http://www.mytwincity.org/?post_type=wpcf7_contact_form&p=1304',0,'wpcf7_contact_form','',0),(1305,1,'2015-07-22 19:00:47','2015-07-22 19:00:47','[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','inherit','open','open','','1301-revision-v1','','','2015-07-22 19:00:47','2015-07-22 19:00:47','',1301,'http://www.mytwincity.org/2015/07/22/1301-revision-v1/',0,'revision','',0),(1306,1,'2015-07-23 17:46:21','2015-07-23 17:46:21','<h5>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Send your comments, questions, or suggestions, but just remember to enter your comments in the space provided below. Tell us how to get in touch with you. Click \"send\" and someone will message you shortly. </strong>[/ap_tagline_box]</h5>\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>One more thing...Can you take 10 more seconds and write a simple google church review to reach more people like you? Just click here and give us your rating of approval!</strong>[/ap_tagline_box]\n\n[ap_spacing spacing_height=\"10px\"]\n\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','inherit','open','open','','1301-autosave-v1','','','2015-07-23 17:46:21','2015-07-23 17:46:21','',1301,'http://www.mytwincity.org/2015/07/22/1301-autosave-v1/',0,'revision','',0),(1307,1,'2015-07-23 15:31:54','2015-07-23 15:31:54','[ap_column_wrap]\r\n[ap_column span=\"3\"]<a href=\"http://mytcbonline.churchonline.org/#\"><img class=\"wp-image-1527 size-thumbnail\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6-150x150.jpg\" alt=\"church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6\" width=\"150\" height=\"150\" /></a>Live Streaming[/ap_column]\r\n[ap_column span=\"3\"]<a href=\"http://wwwtwincitybaptistcom.sermon.net/main/main/20477922\"><img class=\"alignnone wp-image-1532 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/sermon.net_.jpg\" alt=\"sermon.net_\" width=\"138\" height=\"138\" /></a>Service Archives\r\n\r\n \r\n\r\n[/ap_column]\r\n[/ap_column_wrap]','Media','','publish','open','open','','media','','','2015-09-03 16:36:54','2015-09-03 16:36:54','',0,'http://www.mytwincity.org/?page_id=1307',0,'page','',0),(1308,1,'2015-07-23 15:31:54','2015-07-23 15:31:54','','Media','','inherit','open','open','','1307-revision-v1','','','2015-07-23 15:31:54','2015-07-23 15:31:54','',1307,'http://www.mytwincity.org/2015/07/23/1307-revision-v1/',0,'revision','',0),(1309,1,'2015-07-23 15:32:22','2015-07-23 15:32:22','','Online Campus','','publish','open','open','','online-campus','','','2015-07-23 15:32:22','2015-07-23 15:32:22','',1307,'http://www.mytwincity.org/?page_id=1309',0,'page','',0),(1310,1,'2015-07-23 15:32:22','2015-07-23 15:32:22','','Online Campus','','inherit','open','open','','1309-revision-v1','','','2015-07-23 15:32:22','2015-07-23 15:32:22','',1309,'http://www.mytwincity.org/2015/07/23/1309-revision-v1/',0,'revision','',0),(1311,1,'2015-07-23 15:32:56','2015-07-23 15:32:56','','Sermon Archives','','publish','open','open','','sermon-archives','','','2015-07-23 15:32:56','2015-07-23 15:32:56','',1307,'http://www.mytwincity.org/?page_id=1311',0,'page','',0),(1312,1,'2015-07-23 15:32:56','2015-07-23 15:32:56','','Sermon Archives','','inherit','open','open','','1311-revision-v1','','','2015-07-23 15:32:56','2015-07-23 15:32:56','',1311,'http://www.mytwincity.org/2015/07/23/1311-revision-v1/',0,'revision','',0),(1313,1,'2015-07-23 15:33:12','2015-07-23 15:33:12','','Blog','','publish','open','open','','blog','','','2015-07-23 15:33:12','2015-07-23 15:33:12','',1307,'http://www.mytwincity.org/?page_id=1313',0,'page','',0),(1314,1,'2015-07-23 15:33:12','2015-07-23 15:33:12','','Blog','','inherit','open','open','','1313-revision-v1','','','2015-07-23 15:33:12','2015-07-23 15:33:12','',1313,'http://www.mytwincity.org/2015/07/23/1313-revision-v1/',0,'revision','',0),(1315,1,'2015-07-23 15:33:28','2015-07-23 15:33:28','','Podcast','','publish','open','open','','podcast','','','2015-07-23 15:33:35','2015-07-23 15:33:35','',1307,'http://www.mytwincity.org/?page_id=1315',0,'page','',0),(1316,1,'2015-07-23 15:33:28','2015-07-23 15:33:28','','Podcast','','inherit','open','open','','1315-revision-v1','','','2015-07-23 15:33:28','2015-07-23 15:33:28','',1315,'http://www.mytwincity.org/2015/07/23/1315-revision-v1/',0,'revision','',0),(1317,1,'2015-07-23 15:34:31','2015-07-23 15:34:31',' ','','','publish','open','closed','','1317','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=1317',8,'nav_menu_item','',0),(1322,1,'2015-07-23 15:47:57','2015-07-23 15:47:57','','Online Campus','','publish','open','closed','','online-campus','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=1322',9,'nav_menu_item','',0),(1323,1,'2015-07-23 15:47:57','2015-07-23 15:47:57','','Service Archive','','publish','open','closed','','sermon-archives','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=1323',10,'nav_menu_item','',0),(1324,1,'2015-07-23 15:53:09','2015-07-23 15:53:09','[ap_tagline_box tag_box_style=\"ap-bg-box\"]Send your comments, questions, or suggestions just remember to enter your comments in the space provided below. Tell us how to get in touch with you.[/ap_tagline_box]\r\n\r\n \r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','inherit','open','open','','1301-revision-v1','','','2015-07-23 15:53:09','2015-07-23 15:53:09','',1301,'http://www.mytwincity.org/2015/07/23/1301-revision-v1/',0,'revision','',0),(1325,1,'2015-07-23 15:54:11','2015-07-23 15:54:11','<h4>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Send your comments, questions, or suggestions just remember to enter your comments in the space provided below. Tell us how to get in touch with you.</strong>[/ap_tagline_box]</h4>\r\n \r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','inherit','open','open','','1301-revision-v1','','','2015-07-23 15:54:11','2015-07-23 15:54:11','',1301,'http://www.mytwincity.org/2015/07/23/1301-revision-v1/',0,'revision','',0),(1326,1,'2015-07-23 15:54:48','2015-07-23 15:54:48','<h5>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Send your comments, questions, or suggestions, but just remember to enter your comments in the space provided below. Tell us how to get in touch with you.</strong>[/ap_tagline_box]</h5>\r\n \r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','inherit','open','open','','1301-revision-v1','','','2015-07-23 15:54:48','2015-07-23 15:54:48','',1301,'http://www.mytwincity.org/2015/07/23/1301-revision-v1/',0,'revision','',0),(1327,1,'2015-07-23 15:55:49','2015-07-23 15:55:49','<h5>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Send your comments, questions, or suggestions, but just remember to enter your comments in the space provided below. Tell us how to get in touch with you. Click \"send\" and someone will message you shortly. </strong>[/ap_tagline_box]</h5>\r\n \r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','inherit','open','open','','1301-revision-v1','','','2015-07-23 15:55:49','2015-07-23 15:55:49','',1301,'http://www.mytwincity.org/2015/07/23/1301-revision-v1/',0,'revision','',0),(1328,1,'2015-07-23 15:57:20','2015-07-23 15:57:20','<h5>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Send your comments, questions, or suggestions, but just remember to enter your comments in the space provided below. Tell us how to get in touch with you. Click \"send\" and someone will message you shortly. </strong>[/ap_tagline_box]</h5>\r\n \r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>One more thing...Can you take 10 more seconds and write a simple google church review to reach more people like you? Google \"Twin City Baptist\" and on the top right you can write your review!</strong>[/ap_tagline_box]','Contact','','inherit','open','open','','1301-revision-v1','','','2015-07-23 15:57:20','2015-07-23 15:57:20','',1301,'http://www.mytwincity.org/2015/07/23/1301-revision-v1/',0,'revision','',0),(1329,1,'2015-07-23 15:57:57','2015-07-23 15:57:57','<h5>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Send your comments, questions, or suggestions, but just remember to enter your comments in the space provided below. Tell us how to get in touch with you. Click \"send\" and someone will message you shortly. </strong>[/ap_tagline_box]</h5>\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>One more thing...Can you take 10 more seconds and write a simple google church review to reach more people like you? Google \"Twin City Baptist\" and on the top right you can write your review!</strong>[/ap_tagline_box]\r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','inherit','open','open','','1301-revision-v1','','','2015-07-23 15:57:57','2015-07-23 15:57:57','',1301,'http://www.mytwincity.org/2015/07/23/1301-revision-v1/',0,'revision','',0),(1330,1,'2015-07-23 15:58:20','2015-07-23 15:58:20','<h5>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Send your comments, questions, or suggestions, but just remember to enter your comments in the space provided below. Tell us how to get in touch with you. Click \"send\" and someone will message you shortly. </strong>[/ap_tagline_box]</h5>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>One more thing...Can you take 10 more seconds and write a simple google church review to reach more people like you? Google \"Twin City Baptist\" and on the top right you can write your review!</strong>[/ap_tagline_box]\r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','inherit','open','open','','1301-revision-v1','','','2015-07-23 15:58:20','2015-07-23 15:58:20','',1301,'http://www.mytwincity.org/2015/07/23/1301-revision-v1/',0,'revision','',0),(1331,1,'2015-07-23 16:03:11','2015-07-23 16:03:11','<h5>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Send your comments, questions, or suggestions, but just remember to enter your comments in the space provided below. Tell us how to get in touch with you. Click \"send\" and someone will message you shortly. </strong>[/ap_tagline_box]</h5>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>One more thing...Can you take 10 more seconds and write a simple google church review to reach more people like you? Google \"Twin City Baptist\" and on the top right you can write your review!</strong>[/ap_tagline_box]\r\n\r\n[ap_spacing spacing_height=\"10px\"]\r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','inherit','open','open','','1301-revision-v1','','','2015-07-23 16:03:11','2015-07-23 16:03:11','',1301,'http://www.mytwincity.org/2015/07/23/1301-revision-v1/',0,'revision','',0),(1332,1,'2015-07-23 16:04:46','2015-07-23 16:04:46','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:04:46','2015-07-23 16:04:46','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1333,1,'2015-07-23 16:31:00','2015-07-23 16:31:00','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\n\n \n\n[ap_spacing spacing_height=\"60px\"]\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\n \n\n[ap_tab_group type=\"vertical\"]\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\n\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\n\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"]</strong>\n\n[ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are:\n<ul>\n <li>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God.</li>\n <li>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip.</li>\n <li>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen.</li>\n <li>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering.</li>\n <li>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle]</li>\n</ul>\n[ap_toggle title=\"AUTOMATED BANK DEBIT\" status=\"close\"]Automated Bank Debit is the easiest and most effective way to automate your giving. Once it is set up, you may update or change your giving at any time by simply contacting TCB office. Plus, 100% of your gift goes to the ministries of TCB because there are no processing fees.\n\nTo sign-up, complete an auto-debit form and mail or fax the completed form to TCB office to have your giving automatically deducted from your checking or savings account. Complete instructions are in the download. [/ap_toggle]\n\n[ap_toggle title=\"STOCKS / BONDS / SECURITIES\" status=\"close\"]Appreciated Marketable Securities are a great way to maximize your giving because you receive an immediate income tax deduction for the full fair market value of your securities. In addition, you pay no capital gains tax on the difference between your cost and the fair market value.\n\nFor more information on giving stocks/bonds/securities to Twin City\'s e-mail giving@twincitybaptist.com.[/ap_toggle]\n\n[/ap_tagline_box][/ap_tab]\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\n[/ap_tab_group]','Giving @ TCB','','inherit','open','open','','79-autosave-v1','','','2015-07-23 16:31:00','2015-07-23 16:31:00','',79,'http://www.mytwincity.org/2015/07/23/79-autosave-v1/',0,'revision','',0),(1334,1,'2015-07-23 16:07:33','2015-07-23 16:07:33','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:07:33','2015-07-23 16:07:33','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1335,1,'2015-07-23 16:08:11','2015-07-23 16:08:11','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"20px\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:08:11','2015-07-23 16:08:11','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1336,1,'2015-07-23 16:08:32','2015-07-23 16:08:32','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"40px\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:08:32','2015-07-23 16:08:32','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1337,1,'2015-07-23 16:08:49','2015-07-23 16:08:49','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:08:49','2015-07-23 16:08:49','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1338,1,'2015-07-23 16:09:24','2015-07-23 16:09:24','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 </strong></h6>\r\n<h6><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:09:24','2015-07-23 16:09:24','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1339,1,'2015-07-23 16:09:56','2015-07-23 16:09:56','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:09:56','2015-07-23 16:09:56','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1340,1,'2015-07-23 16:12:29','2015-07-23 16:12:29','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"What is Tithing?\"]Content 1[/ap_tab]\r\n[ap_tab title=\"Ways to Give @ TCB\"]Content 2[/ap_tab]\r\n[ap_tab title=\"Online Giving Privacy Policies\"]Content 3[/ap_tab]\r\n[/ap_tab_group]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:12:29','2015-07-23 16:12:29','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1341,1,'2015-07-23 16:13:09','2015-07-23 16:13:09','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"]Content 1[/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"]Content 2[/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:13:09','2015-07-23 16:13:09','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1342,1,'2015-07-23 16:13:40','2015-07-23 16:13:40','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n<h6>[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"]Content 1[/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"]Content 2[/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]</h6>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:13:40','2015-07-23 16:13:40','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1343,1,'2015-07-23 16:14:24','2015-07-23 16:14:24','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"]Content 1[/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"]Content 2[/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:14:24','2015-07-23 16:14:24','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1344,1,'2015-07-23 16:15:32','2015-07-23 16:15:32','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life. The word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.” Is God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"]Content 2[/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:15:32','2015-07-23 16:15:32','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1345,1,'2015-07-23 16:16:12','2015-07-23 16:16:12','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"]Content 2[/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:16:12','2015-07-23 16:16:12','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1346,1,'2015-07-23 16:16:59','2015-07-23 16:16:59','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n<blockquote>[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"]Content 2[/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]</blockquote>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:16:59','2015-07-23 16:16:59','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1347,1,'2015-07-23 16:17:18','2015-07-23 16:17:18','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n<blockquote>[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"]Content 2[/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]</blockquote>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:17:18','2015-07-23 16:17:18','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1348,1,'2015-07-23 16:17:50','2015-07-23 16:17:50','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n<blockquote>[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"]Content 2[/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]</blockquote>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:17:50','2015-07-23 16:17:50','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1349,1,'2015-07-23 16:18:53','2015-07-23 16:18:53','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n<blockquote>[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.</strong>[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]</blockquote>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:18:53','2015-07-23 16:18:53','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1350,1,'2015-07-23 16:20:49','2015-07-23 16:20:49','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n<blockquote>[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"][ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are: Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God. Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip. Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen. Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering. Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle]</strong>[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]</blockquote>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:20:49','2015-07-23 16:20:49','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1351,1,'2015-07-23 16:22:19','2015-07-23 16:22:19','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n<blockquote>[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"][ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are: </strong>\r\n<ul>\r\n <li><strong>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God. </strong></li>\r\n <li><strong>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip. </strong></li>\r\n <li><strong>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen. </strong></li>\r\n <li><strong>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering. </strong></li>\r\n <li><strong>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle]</strong>[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]</li>\r\n</ul>\r\n</blockquote>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:22:19','2015-07-23 16:22:19','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1352,1,'2015-07-23 16:23:34','2015-07-23 16:23:34','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"][ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are: </strong>\r\n<ul>\r\n <li><strong>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God. </strong></li>\r\n <li><strong>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip. </strong></li>\r\n <li><strong>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen. </strong></li>\r\n <li><strong>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering. </strong></li>\r\n <li><strong>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle]</strong>[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]</li>\r\n</ul>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:23:34','2015-07-23 16:23:34','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1353,1,'2015-07-23 16:23:56','2015-07-23 16:23:56','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"][ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are: </strong><strong>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God. </strong>\r\n<ul>\r\n <li><strong>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip. </strong></li>\r\n <li><strong>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen. </strong></li>\r\n <li><strong>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering. </strong></li>\r\n <li><strong>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle]</strong>[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]</li>\r\n</ul>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:23:56','2015-07-23 16:23:56','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1354,1,'2015-07-23 16:24:26','2015-07-23 16:24:26','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"]</strong>\r\n\r\n<strong>[ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are: </strong><strong>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God. </strong>\r\n<ul>\r\n <li><strong>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip. </strong></li>\r\n <li><strong>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen. </strong></li>\r\n <li><strong>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering. </strong></li>\r\n <li><strong>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle]</strong>[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]</li>\r\n</ul>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:24:26','2015-07-23 16:24:26','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1355,1,'2015-07-23 16:24:56','2015-07-23 16:24:56','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"]</strong>\r\n\r\n<strong>[ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are: </strong>\r\n<ul>\r\n <li><strong>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God. </strong></li>\r\n <li><strong>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip. </strong></li>\r\n <li><strong>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen. </strong></li>\r\n <li><strong>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering. </strong></li>\r\n <li><strong>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle]</strong>[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]</li>\r\n</ul>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:24:56','2015-07-23 16:24:56','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1356,1,'2015-07-23 16:27:27','2015-07-23 16:27:27','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"]</strong>\r\n\r\n<strong>[ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are: </strong>\r\n<ul>\r\n <li><strong>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God. </strong></li>\r\n <li><strong>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip. </strong></li>\r\n <li><strong>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen. </strong></li>\r\n <li><strong>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering. </strong></li>\r\n <li><strong>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle]</strong></li>\r\n</ul>\r\n<strong>[ap_toggle title=\"AUTOMATED BANK DEBIT\" status=\"close\"]Automated Bank Debit is the easiest and most effective way to automate your giving. Once it is set up, you may update or change your giving at any time by simply contacting TCB office. Plus, 100% of your gift goes to the ministries of TCB because there are no processing fees. </strong>\r\n\r\n<strong>To sign-up, complete an auto-debit form and mail or fax the completed form to TCB office to have your giving automatically deducted from your checking or savings account. Complete instructions are in the download. [/ap_toggle]</strong>[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:27:27','2015-07-23 16:27:27','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1357,1,'2015-07-23 16:29:15','2015-07-23 16:29:15','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"]</strong>\r\n\r\n<strong>[ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are: </strong>\r\n<ul>\r\n <li><strong>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God. </strong></li>\r\n <li><strong>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip. </strong></li>\r\n <li><strong>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen. </strong></li>\r\n <li><strong>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering. </strong></li>\r\n <li><strong>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle]</strong></li>\r\n</ul>\r\n<strong>[ap_toggle title=\"AUTOMATED BANK DEBIT\" status=\"close\"]Automated Bank Debit is the easiest and most effective way to automate your giving. Once it is set up, you may update or change your giving at any time by simply contacting TCB office. Plus, 100% of your gift goes to the ministries of TCB because there are no processing fees. </strong>\r\n\r\n<strong>To sign-up, complete an auto-debit form and mail or fax the completed form to TCB office to have your giving automatically deducted from your checking or savings account. Complete instructions are in the download. [/ap_toggle]</strong>\r\n\r\n[ap_toggle title=\"STOCKS / BONDS / SECURITIES\" status=\"close\"]Appreciated Marketable Securities are a great way to maximize your giving because you receive an immediate income tax deduction for the full fair market value of your securities. In addition, you pay no capital gains tax on the difference between your cost and the fair market value.\r\n\r\nFor more information on giving stocks/bonds/securities to Twin City\'s e-mail giving@twincitybaptist.com.[/ap_toggle][/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:29:15','2015-07-23 16:29:15','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1358,1,'2015-07-23 16:29:56','2015-07-23 16:29:56','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"]</strong>\r\n\r\n[ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are:\r\n<ul>\r\n <li>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God.</li>\r\n <li>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip.</li>\r\n <li>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen.</li>\r\n <li>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering.</li>\r\n <li>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle]</li>\r\n</ul>\r\n[ap_toggle title=\"AUTOMATED BANK DEBIT\" status=\"close\"]Automated Bank Debit is the easiest and most effective way to automate your giving. Once it is set up, you may update or change your giving at any time by simply contacting TCB office. Plus, 100% of your gift goes to the ministries of TCB because there are no processing fees.\r\n\r\nTo sign-up, complete an auto-debit form and mail or fax the completed form to TCB office to have your giving automatically deducted from your checking or savings account. Complete instructions are in the download. [/ap_toggle]\r\n\r\n[ap_toggle title=\"STOCKS / BONDS / SECURITIES\" status=\"close\"]Appreciated Marketable Securities are a great way to maximize your giving because you receive an immediate income tax deduction for the full fair market value of your securities. In addition, you pay no capital gains tax on the difference between your cost and the fair market value.\r\n\r\nFor more information on giving stocks/bonds/securities to Twin City\'s e-mail giving@twincitybaptist.com.[/ap_toggle][/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:29:56','2015-07-23 16:29:56','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1359,1,'2015-07-23 16:31:45','2015-07-23 16:31:45','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"]</strong>\r\n\r\n[ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are:\r\n<ul>\r\n <li>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God.</li>\r\n <li>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip.</li>\r\n <li>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen.</li>\r\n <li>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering.</li>\r\n <li>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle]</li>\r\n</ul>\r\n[ap_toggle title=\"AUTOMATED BANK DEBIT\" status=\"close\"]Automated Bank Debit is the easiest and most effective way to automate your giving. Once it is set up, you may update or change your giving at any time by simply contacting TCB office. Plus, 100% of your gift goes to the ministries of TCB because there are no processing fees.\r\n\r\nTo sign-up, complete an auto-debit form and mail or fax the completed form to TCB office to have your giving automatically deducted from your checking or savings account. Complete instructions are in the download. [/ap_toggle]\r\n\r\n[ap_toggle title=\"STOCKS / BONDS / SECURITIES\" status=\"close\"]Appreciated Marketable Securities are a great way to maximize your giving because you receive an immediate income tax deduction for the full fair market value of your securities. In addition, you pay no capital gains tax on the difference between your cost and the fair market value.\r\n\r\nFor more information on giving stocks/bonds/securities to Twin City\'s e-mail giving@twincitybaptist.com.[/ap_toggle]\r\n\r\n[ap_toggle title=\"TITHES AND OFFERINGS\" status=\"close\"]Financial giving at Twin City can generally be divided into two categories: tithes and offerings. The Bible teaches us that we worship the Lord with our tithe, which is ten percent of our income contributed to the church on a regular basis. You can learn more about tithes here. When we feel called to give over and above our tithe, we do so as an offering.[/ap_toggle]\r\n\r\n[ap_toggle title=\"STEWARDSHIP\" status=\"close\"]The ministry of TCB is funded by God\'s provision through the tithes and offerings of faithful TCB members and attenders. At TCB, we honor God\'s provision by exercising wise and faithful stewardship, ethical business practices, and full accountability so that the financial integrity of TCB remains beyond reproach.\r\n\r\nOur mission is facilitated through our system of internal controls over financial reporting and our internal budgeting and reporting processes. Additionally, TCB has an annual financial review performed by an independent accounting firm.\r\n\r\nMembers of TCB may request a copy of our most recent financial statements or ask general questions about our financial practices at any time by contacting us at giving@mytwincity.org[/ap_toggle][/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:31:45','2015-07-23 16:31:45','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1360,1,'2015-07-23 16:32:23','2015-07-23 16:32:23','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"]</strong>\r\n\r\n[ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are:\r\n<ul>\r\n <li>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God.</li>\r\n <li>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip.</li>\r\n <li>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen.</li>\r\n <li>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering.</li>\r\n <li>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle]</li>\r\n</ul>\r\n[ap_toggle title=\"AUTOMATED BANK DEBIT\" status=\"close\"]Automated Bank Debit is the easiest and most effective way to automate your giving. Once it is set up, you may update or change your giving at any time by simply contacting TCB office. Plus, 100% of your gift goes to the ministries of TCB because there are no processing fees.\r\n\r\nTo sign-up, complete an auto-debit form and mail or fax the completed form to TCB office to have your giving automatically deducted from your checking or savings account. Complete instructions are in the download. [/ap_toggle]\r\n\r\n[ap_toggle title=\"STOCKS / BONDS / SECURITIES\" status=\"close\"]Appreciated Marketable Securities are a great way to maximize your giving because you receive an immediate income tax deduction for the full fair market value of your securities. In addition, you pay no capital gains tax on the difference between your cost and the fair market value.\r\n\r\nFor more information on giving stocks/bonds/securities to Twin City\'s e-mail giving@twincitybaptist.com.[/ap_toggle]\r\n\r\n[ap_toggle title=\"TITHES AND OFFERINGS\" status=\"close\"]Financial giving at Twin City can generally be divided into two categories: tithes and offerings. The Bible teaches us that we worship the Lord with our tithe, which is ten percent of our income contributed to the church on a regular basis. You can learn more about tithes here. When we feel called to give over and above our tithe, we do so as an offering.[/ap_toggle][ap_toggle title=\"STEWARDSHIP\" status=\"close\"]The ministry of TCB is funded by God\'s provision through the tithes and offerings of faithful TCB members and attenders. At TCB, we honor God\'s provision by exercising wise and faithful stewardship, ethical business practices, and full accountability so that the financial integrity of TCB remains beyond reproach.\r\n\r\nOur mission is facilitated through our system of internal controls over financial reporting and our internal budgeting and reporting processes. Additionally, TCB has an annual financial review performed by an independent accounting firm.\r\n\r\nMembers of TCB may request a copy of our most recent financial statements or ask general questions about our financial practices at any time by contacting us at giving@mytwincity.org[/ap_toggle][/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:32:23','2015-07-23 16:32:23','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1361,1,'2015-07-23 16:33:20','2015-07-23 16:33:20','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"]</strong>\r\n\r\n[ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are:\r\n<ul>\r\n <li>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God.</li>\r\n <li>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip.</li>\r\n <li>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen.</li>\r\n <li>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering.</li>\r\n <li>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle][ap_toggle title=\"AUTOMATED BANK DEBIT\" status=\"close\"]Automated Bank Debit is the easiest and most effective way to automate your giving. Once it is set up, you may update or change your giving at any time by simply contacting TCB office. Plus, 100% of your gift goes to the ministries of TCB because there are no processing fees.</li>\r\n</ul>\r\nTo sign-up, complete an auto-debit form and mail or fax the completed form to TCB office to have your giving automatically deducted from your checking or savings account. Complete instructions are in the download. [/ap_toggle][ap_toggle title=\"STOCKS / BONDS / SECURITIES\" status=\"close\"]Appreciated Marketable Securities are a great way to maximize your giving because you receive an immediate income tax deduction for the full fair market value of your securities. In addition, you pay no capital gains tax on the difference between your cost and the fair market value.\r\n\r\nFor more information on giving stocks/bonds/securities to Twin City\'s e-mail giving@twincitybaptist.com.[/ap_toggle][ap_toggle title=\"TITHES AND OFFERINGS\" status=\"close\"]Financial giving at Twin City can generally be divided into two categories: tithes and offerings. The Bible teaches us that we worship the Lord with our tithe, which is ten percent of our income contributed to the church on a regular basis. You can learn more about tithes here. When we feel called to give over and above our tithe, we do so as an offering.[/ap_toggle][ap_toggle title=\"STEWARDSHIP\" status=\"close\"]The ministry of TCB is funded by God\'s provision through the tithes and offerings of faithful TCB members and attenders. At TCB, we honor God\'s provision by exercising wise and faithful stewardship, ethical business practices, and full accountability so that the financial integrity of TCB remains beyond reproach.\r\n\r\nOur mission is facilitated through our system of internal controls over financial reporting and our internal budgeting and reporting processes. Additionally, TCB has an annual financial review performed by an independent accounting firm.\r\n\r\nMembers of TCB may request a copy of our most recent financial statements or ask general questions about our financial practices at any time by contacting us at giving@mytwincity.org[/ap_toggle][/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:33:20','2015-07-23 16:33:20','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1362,1,'2015-07-23 16:34:55','2015-07-23 16:34:55','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"]</strong>\r\n\r\n[ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are:\r\n<ul>\r\n <li>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God.</li>\r\n <li>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip.</li>\r\n <li>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen.</li>\r\n <li>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering.</li>\r\n <li>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle][ap_toggle title=\"AUTOMATED BANK DEBIT\" status=\"close\"]Automated Bank Debit is the easiest and most effective way to automate your giving. Once it is set up, you may update or change your giving at any time by simply contacting TCB office. Plus, 100% of your gift goes to the ministries of TCB because there are no processing fees.</li>\r\n</ul>\r\nTo sign-up, complete an auto-debit form and mail or fax the completed form to TCB office to have your giving automatically deducted from your checking or savings account. Complete instructions are in the download. [/ap_toggle][ap_toggle title=\"STOCKS / BONDS / SECURITIES\" status=\"close\"]Appreciated Marketable Securities are a great way to maximize your giving because you receive an immediate income tax deduction for the full fair market value of your securities. In addition, you pay no capital gains tax on the difference between your cost and the fair market value.\r\n\r\nFor more information on giving stocks/bonds/securities to Twin City\'s e-mail giving@twincitybaptist.com.[/ap_toggle][ap_toggle title=\"TITHES AND OFFERINGS\" status=\"close\"]Financial giving at Twin City can generally be divided into two categories: tithes and offerings. The Bible teaches us that we worship the Lord with our tithe, which is ten percent of our income contributed to the church on a regular basis. You can learn more about tithes here. When we feel called to give over and above our tithe, we do so as an offering.[/ap_toggle][ap_toggle title=\"STEWARDSHIP\" status=\"close\"]The ministry of TCB is funded by God\'s provision through the tithes and offerings of faithful TCB members and attenders. At TCB, we honor God\'s provision by exercising wise and faithful stewardship, ethical business practices, and full accountability so that the financial integrity of TCB remains beyond reproach.\r\n\r\nOur mission is facilitated through our system of internal controls over financial reporting and our internal budgeting and reporting processes. Additionally, TCB has an annual financial review performed by an independent accounting firm.\r\n\r\nMembers of TCB may request a copy of our most recent financial statements or ask general questions about our financial practices at any time by contacting us at giving@mytwincity.org[/ap_toggle][ap_toggle title=\"A NOTE ABOUT CREDIT CARDS\" status=\"close\"]While we allow the use of credit cards for tithes and offerings, we still strongly encourage the use of electronic funds transfer rather than credit card for two primary reasons:\r\n<ul>\r\n <li>Although many pay off their credit cards each month, many also do not. We do not want to encourage someone to go into debt and pay interest on gifts given to the church.</li>\r\n <li>With electronic transfer, your entire gift goes to the church. When using a credit card, as much as 3% of your gift can go to the credit card company.[/ap_toggle][/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"]Content 3[/ap_tab]\r\n[/ap_tab_group]</li>\r\n</ul>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 16:34:55','2015-07-23 16:34:55','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1363,1,'2015-07-23 17:47:44','2015-07-23 17:47:44','<h5>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Send your comments, questions, or suggestions, but just remember to enter your comments in the space provided below. Tell us how to get in touch with you. Click \"send\" and someone will message you shortly. </strong>[/ap_tagline_box]</h5>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>One more thing...Can you take 10 more seconds and write a simple google church review to reach more people like you? Just click [ap_button button_size=\"ap-small-bttn\" button_url=\"https://www.google.com/webhp?sourceid=chrome-instant&rlz=1C5CHFA_enUS557US557&ion=1&espv=2&ie=UTF-8#q=twin%20city%20baptist%20church&lrd=0x89e3e87e92068881:0x5070c417b503c767,2\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]HERE[/ap_button] and give us your rating of approval!</strong>[/ap_tagline_box]\r\n\r\n[ap_spacing spacing_height=\"10px\"]\r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','inherit','open','open','','1301-revision-v1','','','2015-07-23 17:47:44','2015-07-23 17:47:44','',1301,'http://www.mytwincity.org/2015/07/23/1301-revision-v1/',0,'revision','',0),(1364,1,'2015-07-23 21:17:32','2015-07-23 21:17:32','[ap_button button_size=\"ap-large-bttn\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-left\"]DONATE NOW >[/ap_button]\r\n\r\n \r\n\r\n[ap_spacing spacing_height=\"60px\"]\r\n<h6>[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>\"But just as you excel in everything… see that you also excel in this grace of giving.\" - 2 Corinthians 8:7 [ap_spacing spacing_height=\"10px\"]</strong><strong>If you are having any problems or need assistance with online giving, you can send an email to our finance team at giving@twincitybaptist.com</strong>[/ap_tagline_box]</h6>\r\n \r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>What is Tithing?</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Why do we tithe? The Bible says The purpose of tithing is to teach you always to put God first in your lives. (Deuteronomy 14:23) Tithing is a reminder that God is the supplier of everything we have. It is also God’s personal invitation to an outpouring of His blessing in your life.\r\n\r\nThe word \"tithe\" is derived from the Hebrew word ma’aser and it literally means a tenth. Ten percent of everything belongs to the Lord. In Malachi 3:10, God says this, “Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this,\" says the LORD Almighty, \"and see if I will not throw open the floodgates of heaven and pour out so much blessing that there will not be room enough to store it.” This is the only place in Scripture where God tells us to put Him to the test. In other words, He’s saying, “Go ahead. I dare you. See if you can out-give me.”\r\n\r\nIs God wise? Do you trust him? These are two fundamental questions behind the act of giving. If God is wise, then you should listen to what He says about financial stewardship. If you trust him, then you should trust him with all aspects of your life, including your finances. So go ahead. Accept God’s invitation to put him to the test. Start tithing faithfully and watch what He does in and through your life. [/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Ways to Give @ TCB</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>There are multiple ways for you to give at Twin City Baptist Church. Each method allows for God\'s work to be done as you are faithful to His calling to give back.[ap_spacing spacing_height=\"20px\"]</strong>\r\n\r\n[ap_toggle title=\"GIVE ON-LINE\" status=\"close\"]There are several benefits to online giving for both you and our church. Some of them are:\r\n<ul>\r\n <li>Faithfully Honoring God - When you sign up to give online you are deciding in advance to faithfully give. God always blesses that kind of faith! The Bible teaches that we are to honor God with the “First Fruits” of our labor (Proverbs 3:9). By setting up a recurring contribution that is scheduled to come out of your account on the day you specify, you can ensure that your First Fruits are faithfully given back to God.</li>\r\n <li>Simplicity - You won’t have to remember whether you gave this month or send in an offering by mail when you’re on a trip.</li>\r\n <li>Security – We utilize an encrypted secure website for your online records. Online giving is more secure than giving with a check or cash because an electronic gift can’t be lost or stolen.</li>\r\n <li>Focus – Instead of having to worry about writing a check and filling out an envelope during the service, you can be fully focused on the worship service, knowing that you have already given your offering.</li>\r\n <li>Helping Twin City – Online giving is more cost effective for our church to process, and it makes our record keeping much easier.[/ap_toggle][ap_toggle title=\"AUTOMATED BANK DEBIT\" status=\"close\"]Automated Bank Debit is the easiest and most effective way to automate your giving. Once it is set up, you may update or change your giving at any time by simply contacting TCB office. Plus, 100% of your gift goes to the ministries of TCB because there are no processing fees.</li>\r\n</ul>\r\nTo sign-up, complete an auto-debit form and mail or fax the completed form to TCB office to have your giving automatically deducted from your checking or savings account. Complete instructions are in the download. [/ap_toggle][ap_toggle title=\"STOCKS / BONDS / SECURITIES\" status=\"close\"]Appreciated Marketable Securities are a great way to maximize your giving because you receive an immediate income tax deduction for the full fair market value of your securities. In addition, you pay no capital gains tax on the difference between your cost and the fair market value.\r\n\r\nFor more information on giving stocks/bonds/securities to Twin City\'s e-mail giving@twincitybaptist.com.[/ap_toggle][ap_toggle title=\"TITHES AND OFFERINGS\" status=\"close\"]Financial giving at Twin City can generally be divided into two categories: tithes and offerings. The Bible teaches us that we worship the Lord with our tithe, which is ten percent of our income contributed to the church on a regular basis. You can learn more about tithes here. When we feel called to give over and above our tithe, we do so as an offering.[/ap_toggle][ap_toggle title=\"STEWARDSHIP\" status=\"close\"]The ministry of TCB is funded by God\'s provision through the tithes and offerings of faithful TCB members and attenders. At TCB, we honor God\'s provision by exercising wise and faithful stewardship, ethical business practices, and full accountability so that the financial integrity of TCB remains beyond reproach.\r\n\r\nOur mission is facilitated through our system of internal controls over financial reporting and our internal budgeting and reporting processes. Additionally, TCB has an annual financial review performed by an independent accounting firm.\r\n\r\nMembers of TCB may request a copy of our most recent financial statements or ask general questions about our financial practices at any time by contacting us at giving@mytwincity.org[/ap_toggle][ap_toggle title=\"A NOTE ABOUT CREDIT CARDS\" status=\"close\"]While we allow the use of credit cards for tithes and offerings, we still strongly encourage the use of electronic funds transfer rather than credit card for two primary reasons:\r\n<ul>\r\n <li>Although many pay off their credit cards each month, many also do not. We do not want to encourage someone to go into debt and pay interest on gifts given to the church.</li>\r\n <li>With electronic transfer, your entire gift goes to the church. When using a credit card, as much as 3% of your gift can go to the credit card company.[/ap_toggle][/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Online Giving Privacy Policies</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Your information is held securely by the Sage Virtual System. This information will remain private and will never be given away to third parties, other than to process your scheduled contributions. You can schedule new contributions at any time and can modify or cancel those contributions at any time prior to the date they are scheduled. Once the contribution has been processed, however, it cannot be canceled. If you have any problems or questions related to this, please contact us at giving@mytwincity.org[/ap_tagline_box][/ap_tab]\r\n[/ap_tab_group]</li>\r\n</ul>','Giving @ TCB','','inherit','open','open','','79-revision-v1','','','2015-07-23 21:17:32','2015-07-23 21:17:32','',79,'http://www.mytwincity.org/2015/07/23/79-revision-v1/',0,'revision','',0),(1365,1,'2015-07-23 21:19:52','2015-07-23 21:19:52','[ap_call_to_action button_text=\"DONATE NOW\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_align=\"center\"]Welcome to Online Giving at Twin City Baptist Church Please take time to read the directions below and THANK YOU for being generous and displaying GeneroCITY![/ap_call_to_action]','Give','','inherit','open','open','','27-revision-v1','','','2015-07-23 21:19:52','2015-07-23 21:19:52','',27,'http://www.mytwincity.org/2015/07/23/27-revision-v1/',0,'revision','',0),(1366,1,'2015-07-23 21:20:21','2015-07-23 21:20:21','[ap_call_to_action button_text=\"DONATE NOW\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_align=\"center\"]<strong>Welcome to Online Giving at Twin City Baptist Church Please take time to read the directions below and THANK YOU for being generous and displaying GeneroCITY!</strong>[/ap_call_to_action]','Give','','inherit','open','open','','27-revision-v1','','','2015-07-23 21:20:21','2015-07-23 21:20:21','',27,'http://www.mytwincity.org/2015/07/23/27-revision-v1/',0,'revision','',0),(1367,1,'2015-07-23 21:20:41','2015-07-23 21:20:41','<h3>[ap_call_to_action button_text=\"DONATE NOW\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_align=\"center\"]<strong>Welcome to Online Giving at Twin City Baptist Church Please take time to read the directions below and THANK YOU for being generous and displaying GeneroCITY!</strong>[/ap_call_to_action]</h3>','Give','','inherit','open','open','','27-revision-v1','','','2015-07-23 21:20:41','2015-07-23 21:20:41','',27,'http://www.mytwincity.org/2015/07/23/27-revision-v1/',0,'revision','',0),(1368,1,'2015-07-23 21:21:44','2015-07-23 21:21:44','<h3>[ap_call_to_action button_text=\"DONATE NOW\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_align=\"center\"]Welcome to Online Giving at Twin City Baptist Church. Please take time to read the directions below, and THANK YOU for being generous and displaying \"GeneroCITY\"![/ap_call_to_action]</h3>','Give','','inherit','open','open','','27-revision-v1','','','2015-07-23 21:21:44','2015-07-23 21:21:44','',27,'http://www.mytwincity.org/2015/07/23/27-revision-v1/',0,'revision','',0),(1369,1,'2015-07-23 21:29:25','2015-07-23 21:29:25','<h3>[ap_call_to_action button_text=\"DONATE NOW\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_align=\"center\"]Welcome to Online Giving at Twin City Baptist Church. Please take time to read the directions below, and THANK YOU for being generous and displaying \"GeneroCITY\"![/ap_call_to_action]</h3>\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Now you can give your tithe, offering, donation and register for events at Twin City from the comfort of your computer, Tablet and phone. It\'s safe and It\'s secure!\n\nTwin City Baptist Church is using the services of Sage Virtual Terminal (SVT).\n\nInstructions:\n<ul>\n <li>Click on the “Donate Now” button after reading this.</li>\n <li>You will be directed to the online giving secure site.</li>\n <li>Complete your donation and click “Submit”.</li>\n <li>To set up a Recurring Donation, when you get on the Donation page, click on the recurring button and follow the directions.[/ap_tagline_box]</li>\n</ul>\n ','Give','','inherit','open','open','','27-autosave-v1','','','2015-07-23 21:29:25','2015-07-23 21:29:25','',27,'http://www.mytwincity.org/2015/07/23/27-autosave-v1/',0,'revision','',0),(1370,1,'2015-07-23 21:24:09','2015-07-23 21:24:09','<h3>[ap_call_to_action button_text=\"DONATE NOW\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_align=\"center\"]Welcome to Online Giving at Twin City Baptist Church. Please take time to read the directions below, and THANK YOU for being generous and displaying \"GeneroCITY\"![/ap_call_to_action]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Now you can give your tithe, offering, donation and register for events at Twin City from the comfort of your computer, Tablet and phone. It\'s safe and It\'s secure!\r\n\r\nTwin City Baptist Church is using the services of Sage Virtual Terminal (SVT).\r\n\r\nInstructions:\r\n<ul>\r\n <li>Click on the “Donate Now” button after reading this.</li>\r\n <li>You will be directed to the online giving secure site.</li>\r\n <li>Complete your donation and click “Submit”.</li>\r\n <li>To set up a Recurring Donation, when you get on the Donation page, click on the recurring button and follow the directions.[/ap_tagline_box]</li>\r\n</ul>','Give','','inherit','open','open','','27-revision-v1','','','2015-07-23 21:24:09','2015-07-23 21:24:09','',27,'http://www.mytwincity.org/2015/07/23/27-revision-v1/',0,'revision','',0),(1371,1,'2015-07-23 21:25:15','2015-07-23 21:25:15','<h3>[ap_call_to_action button_text=\"DONATE NOW\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_align=\"center\"]Welcome to Online Giving at Twin City Baptist Church. Please take time to read the directions below, and THANK YOU for being generous and displaying \"GeneroCITY\"![/ap_call_to_action]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>Now you can give your tithe, offering, donation and register for events at Twin City from the comfort of your computer, Tablet and phone. It\'s safe and It\'s secure!</strong>\r\n\r\n<strong>Twin City Baptist Church is using the services of Sage Virtual Terminal (SVT).</strong>\r\n\r\n<strong>Instructions:</strong>\r\n<ul>\r\n <li><strong>Click on the “Donate Now” button after reading this.</strong></li>\r\n <li><strong>You will be directed to the online giving secure site.</strong></li>\r\n <li><strong>Complete your donation and click “Submit”.</strong></li>\r\n <li><strong>To set up a Recurring Donation, when you get on the Donation page, click on the recurring button and follow the directions</strong>.[/ap_tagline_box]</li>\r\n</ul>','Give','','inherit','open','open','','27-revision-v1','','','2015-07-23 21:25:15','2015-07-23 21:25:15','',27,'http://www.mytwincity.org/2015/07/23/27-revision-v1/',0,'revision','',0),(1372,1,'2015-07-23 21:28:20','2015-07-23 21:28:20','<h3>[ap_call_to_action button_text=\"DONATE NOW\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_align=\"center\"]Welcome to Online Giving at Twin City Baptist Church. Please take time to read the directions below, and THANK YOU for being generous and displaying \"GeneroCITY\"![/ap_call_to_action]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Now you can give your tithe, offering, donation and register for events at Twin City from the comfort of your computer, Tablet and phone. It\'s safe and It\'s secure!\r\n\r\nTwin City Baptist Church is using the services of Sage Virtual Terminal (SVT).\r\n\r\nInstructions:\r\n<ul>\r\n <li>Click on the “Donate Now” button after reading this.</li>\r\n <li>You will be directed to the online giving secure site.</li>\r\n <li>Complete your donation and click “Submit”.</li>\r\n <li>To set up a Recurring Donation, when you get on the Donation page, click on the recurring button and follow the directions.[/ap_tagline_box]</li>\r\n</ul>','Give','','inherit','open','open','','27-revision-v1','','','2015-07-23 21:28:20','2015-07-23 21:28:20','',27,'http://www.mytwincity.org/2015/07/23/27-revision-v1/',0,'revision','',0),(1373,1,'2015-07-23 21:30:01','2015-07-23 21:30:01','<h3>[ap_call_to_action button_text=\"DONATE NOW\" button_url=\"https://givesafesecure.net/organizations/mytwincity\" button_align=\"center\"]Welcome to Online Giving at Twin City Baptist Church. Please take time to read the directions below, and THANK YOU for being generous and displaying \"GeneroCITY\"![/ap_call_to_action]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Now you can give your tithe, offering, donation and register for events at Twin City from the comfort of your computer, Tablet and phone. It\'s safe and It\'s secure!\r\n\r\nTwin City Baptist Church is using the services of Sage Virtual Terminal (SVT).\r\n\r\nInstructions:\r\n<ul>\r\n <li>Click on the “Donate Now” button after reading this.</li>\r\n <li>You will be directed to the online giving secure site.</li>\r\n <li>Complete your donation and click “Submit”.</li>\r\n <li>To set up a Recurring Donation, when you get on the Donation page, click on the recurring button and follow the directions.[/ap_tagline_box]</li>\r\n</ul>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>You Have our Word!</strong> Twin City Baptist will never email you and ask for your credit card or any personal information. All information will be entered thru the SVT secure site below.\r\n<blockquote>Twin City Baptist Church discourages the irresponsible use of credit cards. We offer the opportunity to donate by credit card as a convenience for those who manage their finances in a God-honoring way. All offerings are tax deductible, however in accordance with IRS regulations; designated offerings may be put to alternate use.[/ap_tagline_box]</blockquote>','Give','','inherit','open','open','','27-revision-v1','','','2015-07-23 21:30:01','2015-07-23 21:30:01','',27,'http://www.mytwincity.org/2015/07/23/27-revision-v1/',0,'revision','',0),(1374,1,'2015-07-23 21:45:28','2015-07-23 21:45:28','','Menu Item','','publish','open','open','','menu-item','','','2015-07-23 21:45:28','2015-07-23 21:45:28','',0,'http://www.mytwincity.org/?p=1374',1,'nav_menu_item','',0),(1375,1,'2015-07-23 22:03:27','2015-07-23 22:03:27','','Google Map','','publish','open','open','','google-map','','','2015-07-23 22:03:27','2015-07-23 22:03:27','',763,'http://www.mytwincity.org/?page_id=1375',0,'page','',0),(1376,1,'2015-07-23 22:03:27','2015-07-23 22:03:27','','Google Map','','inherit','open','open','','1375-revision-v1','','','2015-07-23 22:03:27','2015-07-23 22:03:27','',1375,'http://www.mytwincity.org/2015/07/23/1375-revision-v1/',0,'revision','',0),(1378,1,'2015-08-04 12:45:43','2015-08-04 12:45:43','','5tctMGNx','','inherit','open','open','','5tctmgnx','','','2015-08-04 12:45:43','2015-08-04 12:45:43','',0,'http://www.mytwincity.org/wp-content/uploads/2015/08/5tctMGNx.jpg',0,'attachment','image/jpeg',0),(1380,1,'2015-08-04 13:26:04','2015-08-04 13:26:04','','DeathtoStock_Medium6','','inherit','open','open','','deathtostock_medium6','','','2015-08-06 14:12:58','2015-08-06 14:12:58','',0,'http://www.mytwincity.org/wp-content/uploads/2015/08/DeathtoStock_Medium6.jpg',0,'attachment','image/jpeg',0),(1381,1,'2015-08-04 13:28:07','2015-08-04 13:28:07','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #ffffff;\"><strong>Contact Us</strong></span></h1>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">With Any Questions or Comments</span></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#ffffff\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n \r\n\r\n \r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact Us','','publish','open','open','','home-contact','','','2015-08-04 13:33:34','2015-08-04 13:33:34','',763,'http://www.mytwincity.org/?page_id=1381',3,'page','',0),(1382,1,'2015-08-04 13:28:07','2015-08-04 13:28:07','','Home Contact','','inherit','open','open','','1381-revision-v1','','','2015-08-04 13:28:07','2015-08-04 13:28:07','',1381,'http://www.mytwincity.org/2015/08/04/1381-revision-v1/',0,'revision','',0),(1383,1,'2015-08-04 13:28:56','2015-08-04 13:28:56','[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Home Contact','','inherit','open','open','','1381-revision-v1','','','2015-08-04 13:28:56','2015-08-04 13:28:56','',1381,'http://www.mytwincity.org/2015/08/04/1381-revision-v1/',0,'revision','',0),(1384,1,'2015-08-04 13:33:34','2015-08-04 13:33:34','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #ffffff;\"><strong>Contact Us</strong></span></h1>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">With Any Questions or Comments</span></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#ffffff\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n \r\n\r\n \r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact Us','','inherit','open','open','','1381-revision-v1','','','2015-08-04 13:33:34','2015-08-04 13:33:34','',1381,'http://www.mytwincity.org/2015/08/04/1381-revision-v1/',0,'revision','',0),(1385,1,'2015-08-04 13:51:35','2015-08-04 13:51:35','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Contact Us</strong></span></h1>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#000000\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n ','Stay In The Know','','inherit','open','open','','11-revision-v1','','','2015-08-04 13:51:35','2015-08-04 13:51:35','',11,'http://www.mytwincity.org/2015/08/04/11-revision-v1/',0,'revision','',0),(1386,1,'2015-08-04 13:59:54','2015-08-04 13:59:54','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Stay in the Know</strong></span></h1>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#709dc4\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n ','Stay In The Know','','inherit','open','open','','11-revision-v1','','','2015-08-04 13:59:54','2015-08-04 13:59:54','',11,'http://www.mytwincity.org/2015/08/04/11-revision-v1/',0,'revision','',0),(1387,1,'2015-08-04 14:38:43','2015-08-04 14:38:43','<p>Your Name (required)<br />\r\n [text* your-name] </p>\r\n\r\n<p>Best Email (required)<br />\r\n [email* your-email] </p>\r\n\r\n<p>Best Phone<br />\r\n [tel tel-885] </p>\r\n\r\n<p>Ministry<br />\r\n [select* subject \"Connect Team\" \"City Kids Team\" \"City Teens Team\" \"City University Team\" \"Music Team\" \"Audio/Video/Tech Team\" \"Creative Arts Team\" \"City Cafe\' Team\" \"Maintenance Team\" \"I just want to serve.\"] </p> \r\n\r\n<p>Comments/Questions<br />\r\n [textarea your-message] </p>\r\n\r\n<p>[submit \"Send\"]</p>\n[your-subject]\n[your-name] <mr.eaton14@gmail.com>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a Serve Request form on Twin City Baptist (http://www.mytwincity.org)\nlbzford@hotmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nTwin City Baptist <mr.eaton14@gmail.com>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Twin City Baptist (http://www.mytwincity.org)\n[your-email]\nReply-To: mr.eaton14@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.','Serve Form','','publish','open','open','','contact-page_copy','','','2015-08-04 14:48:14','2015-08-04 14:48:14','',0,'http://www.mytwincity.org/?post_type=wpcf7_contact_form&p=1387',0,'wpcf7_contact_form','',0),(1388,1,'2015-08-04 14:41:24','2015-08-04 14:41:24','[contact-form-7 id=\"1387\" title=\"Serve Form\"]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-04 14:41:24','2015-08-04 14:41:24','',21,'http://www.mytwincity.org/2015/08/04/21-revision-v1/',0,'revision','',0),(1389,1,'2015-08-04 14:49:17','2015-08-04 14:49:17','','City Life (Young Adults)','','inherit','open','open','','47-revision-v1','','','2015-08-04 14:49:17','2015-08-04 14:49:17','',47,'http://www.mytwincity.org/2015/08/04/47-revision-v1/',0,'revision','',0),(1390,1,'2015-08-04 14:49:31','2015-08-04 14:49:31','','Women\'s Ministry','','inherit','open','open','','51-revision-v1','','','2015-08-04 14:49:31','2015-08-04 14:49:31','',51,'http://www.mytwincity.org/2015/08/04/51-revision-v1/',0,'revision','',0),(1391,1,'2015-08-04 14:49:47','2015-08-04 14:49:47','','Men\'s Ministry','','inherit','open','open','','49-revision-v1','','','2015-08-04 14:49:47','2015-08-04 14:49:47','',49,'http://www.mytwincity.org/2015/08/04/49-revision-v1/',0,'revision','',0),(1393,1,'2015-08-04 14:50:53','2015-08-04 14:50:53','','Senior Citizen\'s Ministry','','inherit','open','open','','53-revision-v1','','','2015-08-04 14:50:53','2015-08-04 14:50:53','',53,'http://www.mytwincity.org/2015/08/04/53-revision-v1/',0,'revision','',0),(1394,1,'2015-08-04 14:54:32','2015-08-04 14:54:32','','Christian School','','publish','open','closed','','christian-school','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=1394',24,'nav_menu_item','',0),(1395,1,'2015-08-04 14:54:32','2015-08-04 14:54:32','','\"The Power\" AM 1000 WCMX','','publish','open','closed','','the-power-am-1000-wcmx','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=1395',25,'nav_menu_item','',0),(1410,1,'2015-08-04 18:27:56','2015-08-04 18:27:56','Come out to play Volleyball at Twin City! We are keeping this competitive, so bring your skills for a night of fun! We do ask that high-school players be limited to juniors and up, unless formally invited. Doors open at 6:15, so be on time, cause we\'re starting at 6:30 and ending at 8:30. See you there!','Twin City Competitive Volleyball','','publish','open','closed','','twin-city-competitive-volleyball','','','2015-08-04 18:39:58','2015-08-04 18:39:58','',0,'http://www.mytwincity.org/?post_type=tribe_events&p=1410',0,'tribe_events','',0),(1411,1,'2015-08-04 18:25:40','2015-08-04 18:25:40','','volleyball-520259_1920','','inherit','open','open','','volleyball-520259_1920','','','2015-08-04 18:25:40','2015-08-04 18:25:40','',1410,'http://www.mytwincity.org/wp-content/uploads/2015/08/volleyball-520259_1920.jpg',0,'attachment','image/jpeg',0),(1412,1,'2015-08-04 18:27:56','2015-08-04 18:27:56','','Twin City Larson Center','','publish','closed','closed','','twin-city-larson-center','','','2015-08-04 18:54:55','2015-08-04 18:54:55','',0,'http://www.mytwincity.org/venue/twin-city-larson-center/',0,'tribe_venue','',0),(1417,1,'2015-08-04 19:09:57','2015-08-04 19:09:57','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:09:57','2015-08-04 19:09:57','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1418,1,'2015-08-04 19:43:52','2015-08-04 19:43:52','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\n\n[ap_column_wrap]\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\n\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\n\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\n<ul>\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\n <li>Prayer by reaching people through all methods available.</li>\n</ul>\n[/su_list]\n\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"bubble\" background=\"#709dc4\" size=\"5\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button]\n\n[su_button url=\"http://www.mytwincity.org/\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: th-list\"]Current Teaching Series[/su_button][/ap_column]\n[/ap_column_wrap]\n\n ','Bring','','inherit','open','open','','23-autosave-v1','','','2015-08-04 19:43:52','2015-08-04 19:43:52','',23,'http://www.mytwincity.org/2015/08/04/23-autosave-v1/',0,'revision','',0),(1419,1,'2015-08-04 19:13:55','2015-08-04 19:13:55','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_expand link_color=\"#709dc4\" link_style=\"button\" more_icon=\"icon: arrow-circle-down\" less_icon=\"icon: arrow-circle-o-up\"]God wants people to invest into other people and invite people to grow in a relationship with Him. Everyone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters. Prayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_expand]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:13:55','2015-08-04 19:13:55','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1420,1,'2015-08-04 19:15:10','2015-08-04 19:15:10','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_note]God wants people to invest into other people and invite people to grow in a relationship with Him. Everyone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters. Prayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_note]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:15:10','2015-08-04 19:15:10','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1421,1,'2015-08-04 19:17:15','2015-08-04 19:17:15','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_pullquote]God wants people to invest into other people and invite people to grow in a relationship with Him. Everyone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters. Prayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_pullquote]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:17:15','2015-08-04 19:17:15','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1422,1,'2015-08-04 19:17:39','2015-08-04 19:17:39','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_pullquote]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters. Prayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_pullquote]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:17:39','2015-08-04 19:17:39','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1423,1,'2015-08-04 19:18:19','2015-08-04 19:18:19','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_pullquote]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_pullquote]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:18:19','2015-08-04 19:18:19','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1424,1,'2015-08-04 19:19:31','2015-08-04 19:19:31','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_pullquote]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_pullquote]\r\n\r\n[su_pullquote align=\"right\"]Pray about what and how you are giving: Your time, treasures and your talents. (see our Giving Page) Praying by investing and inviting people to come on Sunday morning and connection events. Prayer by reaching people through all methods available.[/su_pullquote]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:19:31','2015-08-04 19:19:31','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1425,1,'2015-08-04 19:21:40','2015-08-04 19:21:40','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_pullquote]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_pullquote]\r\n\r\n[su_pullquote align=\"right\"]\r\n\r\n[su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[/su_pullquote]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:21:40','2015-08-04 19:21:40','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1426,1,'2015-08-04 19:24:04','2015-08-04 19:24:04','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_pullquote]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_pullquote]\r\n\r\n[su_heading size=\"30\"]Bring Someone This Sunday![/su_heading]\r\n\r\n[su_pullquote align=\"right\"]\r\n\r\n[su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[/su_pullquote]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:24:04','2015-08-04 19:24:04','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1427,1,'2015-08-04 19:24:30','2015-08-04 19:24:30','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_pullquote]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_pullquote]\r\n\r\n[su_heading size=\"20\"]Bring Someone This Sunday![/su_heading]\r\n\r\n[su_pullquote align=\"right\"]\r\n\r\n[su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[/su_pullquote]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:24:30','2015-08-04 19:24:30','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1428,1,'2015-08-04 19:25:41','2015-08-04 19:25:41','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_pullquote]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_pullquote]\r\n\r\n[su_box style=\"noise\"]Bring Someone This Sunday![/su_box]\r\n\r\n[su_pullquote align=\"right\"]\r\n\r\n[su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[/su_pullquote]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:25:41','2015-08-04 19:25:41','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1429,1,'2015-08-04 19:26:49','2015-08-04 19:26:49','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_pullquote]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_pullquote]\r\n\r\n \r\n\r\n[su_pullquote align=\"right\"]\r\n\r\n[su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[/su_pullquote]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:26:49','2015-08-04 19:26:49','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1430,1,'2015-08-04 19:28:33','2015-08-04 19:28:33','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_column center=\"yes\"]God wants people to invest into other people and invite people to grow in a relationship with Him. Everyone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters. Prayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_column]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[su_pullquote align=\"right\"]\r\n\r\n[su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[/su_pullquote]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:28:33','2015-08-04 19:28:33','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1431,1,'2015-08-04 19:29:01','2015-08-04 19:29:01','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_column center=\"no\"]God wants people to invest into other people and invite people to grow in a relationship with Him. Everyone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters. Prayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_column]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[su_pullquote align=\"right\"]\r\n\r\n[su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[/su_pullquote]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:29:01','2015-08-04 19:29:01','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1432,1,'2015-08-04 19:29:58','2015-08-04 19:29:58','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_column center=\"no\"]God wants people to invest into other people and invite people to grow in a relationship with Him. Everyone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters. Prayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_column]\r\n\r\n[su_column][su_list icon=\"icon: check-circle\"] Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li> Praying by investing and inviting people to come on Sunday morning and connection events. Prayer by reaching people through all methods available. [/su_list][/su_column]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:29:58','2015-08-04 19:29:58','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1433,1,'2015-08-04 19:30:56','2015-08-04 19:30:56','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[su_column center=\"no\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus. [/su_column]\r\n\r\n[su_column][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list][/su_column]','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:30:56','2015-08-04 19:30:56','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1434,1,'2015-08-04 19:35:11','2015-08-04 19:35:11','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][su_pullquote align=\"right\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/su_pullquote][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:35:11','2015-08-04 19:35:11','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1435,1,'2015-08-04 19:35:44','2015-08-04 19:35:44','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][su_pullquote align=\"left\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/su_pullquote][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:35:44','2015-08-04 19:35:44','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1436,1,'2015-08-04 19:36:10','2015-08-04 19:36:10','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][su_pullquote align=\"left\"]God wants people to invest into other people and invite people to grow in a relationship with Him. Everyone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters. Prayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/su_pullquote][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:36:10','2015-08-04 19:36:10','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1437,1,'2015-08-04 19:37:33','2015-08-04 19:37:33','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:37:33','2015-08-04 19:37:33','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1438,1,'2015-08-04 19:40:10','2015-08-04 19:40:10','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"3d\" background=\"#709dc4\" size=\"5\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:40:10','2015-08-04 19:40:10','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1439,1,'2015-08-04 19:41:10','2015-08-04 19:41:10','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"bubble\" background=\"#709dc4\" size=\"5\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:41:10','2015-08-04 19:41:10','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1440,1,'2015-08-04 19:44:04','2015-08-04 19:44:04','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"bubble\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button]\r\n\r\n[su_button url=\"http://www.mytwincity.org/\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: th-list\"]Current Teaching Series[/su_button][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:44:04','2015-08-04 19:44:04','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1441,1,'2015-08-04 19:44:43','2015-08-04 19:44:43','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button]\r\n\r\n[su_button url=\"http://www.mytwincity.org/\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: th-list\"]Current Teaching Series[/su_button][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:44:43','2015-08-04 19:44:43','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1442,1,'2015-08-04 19:45:08','2015-08-04 19:45:08','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button]\r\n\r\n[su_spacer]\r\n\r\n[su_button url=\"http://www.mytwincity.org/\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: th-list\"]Current Teaching Series[/su_button][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:45:08','2015-08-04 19:45:08','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1443,1,'2015-08-04 19:46:12','2015-08-04 19:46:12','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\"><img class=\"alignright wp-image-1687 size-large\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN-1024x640.jpg\" alt=\"\" width=\"640\" height=\"400\" /></a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>CURRENT TEACHING SERIES: </br>BE HAPPY-The me God made me to be</strong>\r\n\r\nIsn’t everyone searching for true happiness? People feel like they are not the “Me” God made them to be. We all know life has difficult times, but people can forget what true happiness is. People are searching and wanting to know how they can find real happiness in a sad world. Does this sound like you? Are you unfulfilled and unhappy?\r\n\r\n[/ap_tagline_box][su_spacer]\r\n\r\n[su_heading size=\"25\"]Join us in this nine-week series as we learn how to Be Happy and discover the ME God made you to be! [/su_heading]','Current Teaching Series','','publish','open','open','','current-teaching-series','','','2015-10-04 03:03:09','2015-10-04 03:03:09','',23,'http://www.mytwincity.org/?page_id=1443',0,'page','',0),(1444,1,'2015-08-04 19:46:12','2015-08-04 19:46:12','','Current Teaching Series','','inherit','open','open','','1443-revision-v1','','','2015-08-04 19:46:12','2015-08-04 19:46:12','',1443,'http://www.mytwincity.org/2015/08/04/1443-revision-v1/',0,'revision','',0),(1445,1,'2015-08-04 19:46:52','2015-08-04 19:46:52',' ','','','publish','open','closed','','1445','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',23,'http://www.mytwincity.org/?p=1445',28,'nav_menu_item','',0),(1446,1,'2015-08-04 19:48:06','2015-08-04 19:48:06','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button]\r\n\r\n[su_spacer]\r\n\r\n[su_button url=\"<a href=\"http://www.mytwincity.org/bring/current-teaching-series/\">http://www.mytwincity.org/</a>bring/current-teaching-series\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: th-list\"]Current Teaching Series[/su_button][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:48:06','2015-08-04 19:48:06','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1447,1,'2015-08-04 19:49:21','2015-08-04 19:49:21','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button]\r\n\r\n[su_spacer]\r\n\r\n[su_button url=\"http://www.mytwincity.org/bring/current-teaching-series/\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: th-list\"]Current Teaching Series[/su_button][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-04 19:49:21','2015-08-04 19:49:21','',23,'http://www.mytwincity.org/2015/08/04/23-revision-v1/',0,'revision','',0),(1448,1,'2015-08-04 19:50:05','2015-08-04 19:50:05','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\"><img class=\"alignnone size-medium wp-image-1294\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1-300x150.jpg\" alt=\"ALQ_WEBwide_wide (1)\" width=\"300\" height=\"150\" /></a>','Current Teaching Series','','inherit','open','open','','1443-revision-v1','','','2015-08-04 19:50:05','2015-08-04 19:50:05','',1443,'http://www.mytwincity.org/2015/08/04/1443-revision-v1/',0,'revision','',0),(1449,1,'2015-10-04 02:54:18','2015-10-04 02:54:18','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\"><img class=\"alignright wp-image-1687 size-large\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN-1024x640.jpg\" alt=\"\" width=\"640\" height=\"400\" /></a>\n\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>CURRENT TEACHING SERIES: BE HAPPY-The me God made me to be</strong>\n\nBusyness and weariness dominate our lives today. We are doing more, working harder, and going faster than ever before, and yet many are physically and spiritually growing weaker. As a result, we lose our strength in Jesus. Let’s regain our strength in the Lord and get stronger in His Word. When we create space for Jesus He will build our lives.\n\n<em>“He giveth power to the faint; and to them that have no might he increaseth strength.</em>\n\n<em>30 Even the youths shall faint and be weary, and the young men shall utterly fall:</em>\n\n<em>31 But they that wait upon the Lord shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; and they shall walk, and not faint.” Isaiah 40:29-31</em>\n\n<em>“The way of the LORD is strength to the upright: but destruction shall be to the workers of iniquity.” Proverbs 10:29</em>\n\n[/ap_tagline_box]\n\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"THESE SERIES OF MESSAGES WILL INCLUDE:\" status=\"close\"]\n<ul>\n <li>Sept 6 Stronger to Know Jesus</li>\n <li>Sept 13 Stronger to Obey Jesus</li>\n <li>Sept 20 Stronger to Serve Jesus</li>\n <li>Sept 27 Stronger to Worship Jesus<span style=\"line-height: 1.5;\">[/ap_toggle][/ap_tagline_box]</span></li>\n</ul>\n[su_spacer]\n\n[su_heading size=\"25\"]Come and discover how to get stronger and build your life in Jesus.[/su_heading]','Current Teaching Series','','inherit','open','open','','1443-autosave-v1','','','2015-10-04 02:54:18','2015-10-04 02:54:18','',1443,'http://www.mytwincity.org/2015/08/04/1443-autosave-v1/',0,'revision','',0),(1450,1,'2015-08-04 19:52:39','2015-08-04 19:52:39','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\">[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\" alt=\"\" />[/su_frame]<img class=\"alignnone size-medium wp-image-1294\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1-300x150.jpg\" alt=\"ALQ_WEBwide_wide (1)\" width=\"300\" height=\"150\" /></a>','Current Teaching Series','','inherit','open','open','','1443-revision-v1','','','2015-08-04 19:52:39','2015-08-04 19:52:39','',1443,'http://www.mytwincity.org/2015/08/04/1443-revision-v1/',0,'revision','',0),(1451,1,'2015-08-04 19:53:01','2015-08-04 19:53:01','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\">[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\" alt=\"\" />[/su_frame]</a>','Current Teaching Series','','inherit','open','open','','1443-revision-v1','','','2015-08-04 19:53:01','2015-08-04 19:53:01','',1443,'http://www.mytwincity.org/2015/08/04/1443-revision-v1/',0,'revision','',0),(1452,1,'2015-08-04 19:56:18','2015-08-04 19:56:18','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\">[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\" alt=\"\" />[/su_frame]</a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>CURRENT TEACHING SERIES: ANSWERING LIFE\'S QUESTIONS: THE STUFF WE ALL ASK </strong>\r\n\r\nAll of us have questions about life. It\'s important to know the meaning of life because we can either invest in eternal things or spend it on temporal things.\r\n\r\nSolomon was King David’s son and was a King who answered many of our life questions. He was considered the wisest man who ever lived, but in foolishness tested life to its limits and discovered in the end, it is all vanity.\r\n\r\n“And God gave Solomon wisdom and understanding exceeding much, and largeness of heart, even as the sand that is on the sea shore.\r\n\r\n30 And Solomon\'s wisdom excelled the wisdom of all the children of the east country, and all the wisdom of Egypt.\r\n\r\n31 For he was wiser than all men; than Ethan the Ezrahite, and Heman, and Chalcol, and Darda, the sons of Mahol: and his fame was in all nations round about.” 1 Kings 4:29-31[/ap_tagline_box]','Current Teaching Series','','inherit','open','open','','1443-revision-v1','','','2015-08-04 19:56:18','2015-08-04 19:56:18','',1443,'http://www.mytwincity.org/2015/08/04/1443-revision-v1/',0,'revision','',0),(1453,1,'2015-08-04 19:59:21','2015-08-04 19:59:21','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\">[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\" alt=\"\" />[/su_frame]</a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>CURRENT TEACHING SERIES: ANSWERING LIFE\'S QUESTIONS: THE STUFF WE ALL ASK </strong>\r\n\r\nAll of us have questions about life. It\'s important to know the meaning of life because we can either invest in eternal things or spend it on temporal things.\r\n\r\nSolomon was King David’s son and was a King who answered many of our life questions. He was considered the wisest man who ever lived, but in foolishness tested life to its limits and discovered in the end, it is all vanity.\r\n\r\n“And God gave Solomon wisdom and understanding exceeding much, and largeness of heart, even as the sand that is on the sea shore.\r\n\r\n30 And Solomon\'s wisdom excelled the wisdom of all the children of the east country, and all the wisdom of Egypt.\r\n\r\n31 For he was wiser than all men; than Ethan the Ezrahite, and Heman, and Chalcol, and Darda, the sons of Mahol: and his fame was in all nations round about.” 1 Kings 4:29-31[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"THESE SERIES OF MESSAGES WILL INCLUDE:\" status=\"close\"]\r\n<ul>\r\n <li>JULY 5 LIFE, WHAT’S THE POINT?</li>\r\n <li>JULY 12 AM I REALLY HAPPY?</li>\r\n <li>JULY 19 AM I MAKING THE MOST OF MY TIME?</li>\r\n <li>JULY 26 IS LIFE ABOUT FAIRNESS!</li>\r\n <li>AUGUST 2 WHAT HAPPENS AFTER YOU DIE?</li>\r\n <li>AUGUST 9 LIFE’S GREEN MONSTER</li>\r\n <li>AUGUST 16 WHY WORK SO HARD?</li>\r\n <li>AUGUST 23 HOW CAN WE FACE THE FUTURE?</li>\r\n</ul>\r\n[/ap_toggle][/ap_tagline_box]\r\n\r\n[su_heading size=\"25\"]Get answers to the questions we all ask about![/su_heading]','Current Teaching Series','','inherit','open','open','','1443-revision-v1','','','2015-08-04 19:59:21','2015-08-04 19:59:21','',1443,'http://www.mytwincity.org/2015/08/04/1443-revision-v1/',0,'revision','',0),(1454,1,'2015-08-04 20:00:07','2015-08-04 20:00:07','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\">[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\" alt=\"\" />[/su_frame]</a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>CURRENT TEACHING SERIES: ANSWERING LIFE\'S QUESTIONS: THE STUFF WE ALL ASK </strong>\r\n\r\nAll of us have questions about life. It\'s important to know the meaning of life because we can either invest in eternal things or spend it on temporal things.\r\n\r\nSolomon was King David’s son and was a King who answered many of our life questions. He was considered the wisest man who ever lived, but in foolishness tested life to its limits and discovered in the end, it is all vanity.\r\n\r\n“And God gave Solomon wisdom and understanding exceeding much, and largeness of heart, even as the sand that is on the sea shore.\r\n\r\n30 And Solomon\'s wisdom excelled the wisdom of all the children of the east country, and all the wisdom of Egypt.\r\n\r\n31 For he was wiser than all men; than Ethan the Ezrahite, and Heman, and Chalcol, and Darda, the sons of Mahol: and his fame was in all nations round about.” 1 Kings 4:29-31[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"THESE SERIES OF MESSAGES WILL INCLUDE:\" status=\"close\"]\r\n<ul>\r\n <li>JULY 5 LIFE, WHAT’S THE POINT?</li>\r\n <li>JULY 12 AM I REALLY HAPPY?</li>\r\n <li>JULY 19 AM I MAKING THE MOST OF MY TIME?</li>\r\n <li>JULY 26 IS LIFE ABOUT FAIRNESS!</li>\r\n <li>AUGUST 2 WHAT HAPPENS AFTER YOU DIE?</li>\r\n <li>AUGUST 9 LIFE’S GREEN MONSTER</li>\r\n <li>AUGUST 16 WHY WORK SO HARD?</li>\r\n <li>AUGUST 23 HOW CAN WE FACE THE FUTURE?</li>\r\n</ul>\r\n[/ap_toggle][/ap_tagline_box]\r\n\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Get answers to the questions we all ask about![/su_heading]','Current Teaching Series','','inherit','open','open','','1443-revision-v1','','','2015-08-04 20:00:07','2015-08-04 20:00:07','',1443,'http://www.mytwincity.org/2015/08/04/1443-revision-v1/',0,'revision','',0),(1455,1,'2015-08-04 20:00:33','2015-08-04 20:00:33','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\">[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\" alt=\"\" />[/su_frame]</a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>CURRENT TEACHING SERIES: ANSWERING LIFE\'S QUESTIONS: THE STUFF WE ALL ASK </strong>\r\n\r\nAll of us have questions about life. It\'s important to know the meaning of life because we can either invest in eternal things or spend it on temporal things.\r\n\r\nSolomon was King David’s son and was a King who answered many of our life questions. He was considered the wisest man who ever lived, but in foolishness tested life to its limits and discovered in the end, it is all vanity.\r\n\r\n“And God gave Solomon wisdom and understanding exceeding much, and largeness of heart, even as the sand that is on the sea shore.\r\n\r\n30 And Solomon\'s wisdom excelled the wisdom of all the children of the east country, and all the wisdom of Egypt.\r\n\r\n31 For he was wiser than all men; than Ethan the Ezrahite, and Heman, and Chalcol, and Darda, the sons of Mahol: and his fame was in all nations round about.” 1 Kings 4:29-31[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"THESE SERIES OF MESSAGES WILL INCLUDE:\" status=\"close\"]\r\n<ul>\r\n <li>JULY 5 LIFE, WHAT’S THE POINT?</li>\r\n <li>JULY 12 AM I REALLY HAPPY?</li>\r\n <li>JULY 19 AM I MAKING THE MOST OF MY TIME?</li>\r\n <li>JULY 26 IS LIFE ABOUT FAIRNESS!</li>\r\n <li>AUGUST 2 WHAT HAPPENS AFTER YOU DIE?</li>\r\n <li>AUGUST 9 LIFE’S GREEN MONSTER</li>\r\n <li>AUGUST 16 WHY WORK SO HARD?</li>\r\n <li>AUGUST 23 HOW CAN WE FACE THE FUTURE?[/ap_toggle][/ap_tagline_box]</li>\r\n</ul>\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Get answers to the questions we all ask about![/su_heading]','Current Teaching Series','','inherit','open','open','','1443-revision-v1','','','2015-08-04 20:00:33','2015-08-04 20:00:33','',1443,'http://www.mytwincity.org/2015/08/04/1443-revision-v1/',0,'revision','',0),(1456,1,'2015-08-04 20:17:24','2015-08-04 20:17:24','[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\n\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]God has custom-made you and you have a purpose to serve Him. Find out how by clicking on these free evaluation tools:\n\n<a href=\"http://elmertowns.com/?page_id=203\" target=\"_blank\">Spiritual Gifts Test</a>\n\n<a href=\"http://personality-testing.info/tests/ODAT/\" target=\"_blank\">DISC Personality Test</a>\n\n[/ap_tagline_box]','Serve','','inherit','open','open','','21-autosave-v1','','','2015-08-04 20:17:24','2015-08-04 20:17:24','',21,'http://www.mytwincity.org/2015/08/04/21-autosave-v1/',0,'revision','',0),(1457,1,'2015-08-04 20:09:11','2015-08-04 20:09:11','[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-04 20:09:11','2015-08-04 20:09:11','',21,'http://www.mytwincity.org/2015/08/04/21-revision-v1/',0,'revision','',0),(1458,1,'2015-08-04 20:10:44','2015-08-04 20:10:44','[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-04 20:10:44','2015-08-04 20:10:44','',21,'http://www.mytwincity.org/2015/08/04/21-revision-v1/',0,'revision','',0),(1459,1,'2015-08-04 20:14:27','2015-08-04 20:14:27','[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\r\n\r\n[su_service title=\"Evaluation Tools\" icon=\"icon: file\"]Service description[/su_service]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-04 20:14:27','2015-08-04 20:14:27','',21,'http://www.mytwincity.org/2015/08/04/21-revision-v1/',0,'revision','',0),(1460,1,'2015-08-04 20:16:03','2015-08-04 20:16:03','[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]God has custom-made you and you have a purpose to serve Him. Find out how by clicking on these free evaluation tools: [/ap_tagline_box]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-04 20:16:03','2015-08-04 20:16:03','',21,'http://www.mytwincity.org/2015/08/04/21-revision-v1/',0,'revision','',0),(1461,1,'2015-08-04 20:18:20','2015-08-04 20:18:20','[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]God has custom-made you and you have a purpose to serve Him. Find out how by clicking on these free evaluation tools:\r\n\r\nLeadership Shape Test (<a href=\"http://www.mytwincity.org/home-3/home-contact/\" target=\"_blank\">Email us to request </a>)\r\n\r\n \r\n\r\n<a href=\"http://elmertowns.com/?page_id=203\" target=\"_blank\">Spiritual Gifts Test</a>\r\n\r\n<a href=\"http://personality-testing.info/tests/ODAT/\" target=\"_blank\">DISC Personality Test</a>\r\n\r\n<a href=\"http://www.personalitypathways.com/type_inventory.html\" target=\"_blank\">MYERS BRIGGS Test</a>[/ap_tagline_box]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-04 20:18:20','2015-08-04 20:18:20','',21,'http://www.mytwincity.org/2015/08/04/21-revision-v1/',0,'revision','',0),(1462,1,'2015-08-04 20:18:40','2015-08-04 20:18:40','[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]God has custom-made you and you have a purpose to serve Him. Find out how by clicking on these free evaluation tools:\r\n\r\nLeadership Shape Test (<a href=\"http://www.mytwincity.org/home-3/home-contact/\" target=\"_blank\">Email us to request </a>)\r\n\r\n<a href=\"http://elmertowns.com/?page_id=203\" target=\"_blank\">Spiritual Gifts Test</a>\r\n\r\n<a href=\"http://personality-testing.info/tests/ODAT/\" target=\"_blank\">DISC Personality Test</a>\r\n\r\n<a href=\"http://www.personalitypathways.com/type_inventory.html\" target=\"_blank\">MYERS BRIGGS Test</a>[/ap_tagline_box]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-04 20:18:40','2015-08-04 20:18:40','',21,'http://www.mytwincity.org/2015/08/04/21-revision-v1/',0,'revision','',0),(1463,1,'2015-08-04 20:19:38','2015-08-04 20:19:38','[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]God has custom-made you and you have a purpose to serve Him. Find out how by clicking on these free evaluation tools:\r\n\r\nLeadership Shape Test (<a href=\"http://www.mytwincity.org/contact-2/\">Email us to request</a> )\r\n\r\n<a href=\"http://elmertowns.com/?page_id=203\" target=\"_blank\">Spiritual Gifts Test</a>\r\n\r\n<a href=\"http://personality-testing.info/tests/ODAT/\" target=\"_blank\">DISC Personality Test</a>\r\n\r\n<a href=\"http://www.personalitypathways.com/type_inventory.html\" target=\"_blank\">MYERS BRIGGS Test</a>[/ap_tagline_box]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-04 20:19:38','2015-08-04 20:19:38','',21,'http://www.mytwincity.org/2015/08/04/21-revision-v1/',0,'revision','',0),(1464,1,'2015-08-04 20:19:56','2015-08-04 20:19:56','[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]God has custom-made you and you have a purpose to serve Him. Find out how by clicking on these free evaluation tools:\r\n\r\nLeadership Shape Test (<a href=\"http://www.mytwincity.org/contact-2/\">Email us to request</a>)\r\n\r\n<a href=\"http://elmertowns.com/?page_id=203\" target=\"_blank\">Spiritual Gifts Test</a>\r\n\r\n<a href=\"http://personality-testing.info/tests/ODAT/\" target=\"_blank\">DISC Personality Test</a>\r\n\r\n<a href=\"http://www.personalitypathways.com/type_inventory.html\" target=\"_blank\">MYERS BRIGGS Test</a>[/ap_tagline_box]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-04 20:19:56','2015-08-04 20:19:56','',21,'http://www.mytwincity.org/2015/08/04/21-revision-v1/',0,'revision','',0),(1465,1,'2015-08-04 20:43:51','2015-08-04 20:43:51','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" rel=\"no\"]','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 20:43:51','2015-08-04 20:43:51','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1466,1,'2015-08-05 14:46:08','2015-08-05 14:46:08','[ap_column_wrap]\n[ap_column span=\"3\"][su_youtube url=\"https://www.youtube.com/watch?v=_90SFev_iFk\" responsive=\"no\"][/ap_column]\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box][/ap_column]\n[/ap_column_wrap]\n\n[su_spacer]\n\n[ap_tab_group type=\"vertical\"]\n[ap_tab title=\"<strong>Admit</strong>\"]<span style=\"text-decoration: underline;\">Admit that you are a sinner and deserve hell.</span>\n\n“For all have sinned and come short of the glory of God.” – Romans 3:23\n\n“For the wages of sin is death.” – Romans 6:23a\n\n[/ap_tab]\n[ap_tab title=\"<strong>Believe</strong>\"]<span style=\"text-decoration: underline;\">Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.</span>\n\n“…the gift of God is eternal life through Jesus Christ our Lord” – Romans 6:23b\n\n“But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.” – Romans 5:8\n\n“If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.” – Romans 10:9\n\n[/ap_tab]\n[ap_tab title=\"<strong>Call</strong>\"]<span style=\"text-decoration: underline;\">Call upon the Lord through prayer for salvation.</span>\n\n“For whosoever shall call upon the name of the Lord shall be saved.” – Romans 10:3\n\n[/ap_tab]\n[ap_tab title=\"<strong>Pray</strong>\"]<span style=\"text-decoration: underline;\">Pray today and receive Jesus Christ as your personal Lord and Savior.</span>\n\n“…now is the accepted time, behold, now is the day of salvation.” – II Corinthians 6:2\n\n“But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.” – John 1:12\n\n[/ap_tab]\n[/ap_tab_group]\n\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]If you would like to receive Christ as your personal Lord and Savior, tell God in the following prayer:[/ap_tagline_box]\n\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">Dear God, I am a sinner. Because of my sin, I deserve to spend eternity in hell. I believe that Jesus died on the cross, was buried, and rose from the grave for my sins. I therefore, turn from my sins and put my faith in Jesus Christ to get me to heaven. Thank you for saving me today, and help me to serve you the rest of my life. In Jesus\' Name, Amen.</span>[/ap_tagline_box]\n\n ','Gospel','','inherit','open','open','','37-autosave-v1','','','2015-08-05 14:46:08','2015-08-05 14:46:08','',37,'http://www.mytwincity.org/2015/08/04/37-autosave-v1/',0,'revision','',0),(1467,1,'2015-08-04 20:48:06','2015-08-04 20:48:06','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 20:48:06','2015-08-04 20:48:06','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1468,1,'2015-08-04 20:56:25','2015-08-04 20:56:25','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]\r\n\r\n[su_heading size=\"20\" align=\"left\"]The Gospel[/su_heading]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box]','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 20:56:25','2015-08-04 20:56:25','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1469,1,'2015-08-04 20:56:47','2015-08-04 20:56:47','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box]','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 20:56:47','2015-08-04 20:56:47','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1470,1,'2015-08-04 21:00:11','2015-08-04 21:00:11','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box]\r\n\r\n[su_tabs vertical=\"yes\"][su_tab title=\"Admit\"]Admit that you are a sinner and deserve hell. \"For all have sinned and come short of the glory of God.\" - Romans 3:23 \"For the wages of sin is death.\" - Romans 6:23a[/su_tab] [su_tab title=\"Believe\"] Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven. \"...the gift of God is eternal life through Jesus Christ our Lord\" - Romans 6:23b \"But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.\" - Romans 5:8 \"If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.\" - Romans 10:9 [/su_tab] [su_tab title=\"Call\"]Call upon the Lord through prayer for salvation. \"For whosoever shall call upon the name of the Lord shall be saved.\" - Romans 10:3 [/su_tab] [su_tab title=\"Pray\"]Pray today and receive Jesus Christ as your personal Lord and Savior. \"...now is the accepted time, behold, now is the day of salvation.\" - II Corinthians 6:2 \"But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.\" - John 1:12[/su_tab][/su_tabs]','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 21:00:11','2015-08-04 21:00:11','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1471,1,'2015-08-04 21:01:37','2015-08-04 21:01:37','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box]\r\n\r\n[su_tabs vertical=\"yes\"][su_tab title=\"Admit\"]Admit that you are a sinner and deserve hell.\r\n\r\n\"For all have sinned and come short of the glory of God.\" - Romans 3:23\r\n\r\n\"For the wages of sin is death.\" - Romans 6:23a[/su_tab]\r\n\r\n[su_tab title=\"Believe\"] Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.\r\n\r\n\"...the gift of God is eternal life through Jesus Christ our Lord\" - Romans 6:23b\r\n\r\n\"But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.\" - Romans 5:8\r\n\r\n\"If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.\" - Romans 10:9 [/su_tab]\r\n\r\n[su_tab title=\"Call\"]Call upon the Lord through prayer for salvation.\r\n\r\n\"For whosoever shall call upon the name of the Lord shall be saved.\" - Romans 10:3 [/su_tab]\r\n\r\n[su_tab title=\"Pray\"]Pray today and receive Jesus Christ as your personal Lord and Savior.\r\n\r\n\"...now is the accepted time, behold, now is the day of salvation.\" - II Corinthians 6:2\r\n\r\n\"But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.\" - John 1:12[/su_tab][/su_tabs]','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 21:01:37','2015-08-04 21:01:37','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1472,1,'2015-08-04 21:02:45','2015-08-04 21:02:45','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box]\r\n\r\n[su_tabs vertical=\"yes\"][su_tab title=\"<strong>Admit</strong>\"]Admit that you are a sinner and deserve hell.\r\n\r\n\"For all have sinned and come short of the glory of God.\" - Romans 3:23\r\n\r\n\"For the wages of sin is death.\" - Romans 6:23a[/su_tab]\r\n\r\n[su_tab title=\"<strong>Believe</strong>\"] Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.\r\n\r\n\"...the gift of God is eternal life through Jesus Christ our Lord\" - Romans 6:23b\r\n\r\n\"But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.\" - Romans 5:8\r\n\r\n\"If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.\" - Romans 10:9 [/su_tab]\r\n\r\n[su_tab title=\"<strong>Call</strong>\"]Call upon the Lord through prayer for salvation.\r\n\r\n\"For whosoever shall call upon the name of the Lord shall be saved.\" - Romans 10:3 [/su_tab]\r\n\r\n[su_tab title=\"<strong>Pray</strong>\"]Pray today and receive Jesus Christ as your personal Lord and Savior.\r\n\r\n\"...now is the accepted time, behold, now is the day of salvation.\" - II Corinthians 6:2\r\n\r\n\"But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.\" - John 1:12[/su_tab][/su_tabs]','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 21:02:45','2015-08-04 21:02:45','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1473,1,'2015-08-04 21:04:18','2015-08-04 21:04:18','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box]\r\n\r\n[su_spacer]\r\n\r\n[su_tabs vertical=\"yes\"][su_tab title=\"<strong>Admit</strong>\"]Admit that you are a sinner and deserve hell.\r\n\r\n\"For all have sinned and come short of the glory of God.\" - Romans 3:23\r\n\r\n\"For the wages of sin is death.\" - Romans 6:23a[/su_tab]\r\n\r\n[su_tab title=\"<strong>Believe</strong>\"] Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.\r\n\r\n\"...the gift of God is eternal life through Jesus Christ our Lord\" - Romans 6:23b\r\n\r\n\"But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.\" - Romans 5:8\r\n\r\n\"If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.\" - Romans 10:9 [/su_tab]\r\n\r\n[su_tab title=\"<strong>Call</strong>\"]Call upon the Lord through prayer for salvation.\r\n\r\n\"For whosoever shall call upon the name of the Lord shall be saved.\" - Romans 10:3 [/su_tab]\r\n\r\n[su_tab title=\"<strong>Pray</strong>\"]Pray today and receive Jesus Christ as your personal Lord and Savior.\r\n\r\n\"...now is the accepted time, behold, now is the day of salvation.\" - II Corinthians 6:2\r\n\r\n\"But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.\" - John 1:12[/su_tab][/su_tabs]','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 21:04:18','2015-08-04 21:04:18','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1474,1,'2015-08-04 21:06:37','2015-08-04 21:06:37','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box]\r\n\r\n[su_spacer]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"Admit\"]Admit that you are a sinner and deserve hell.\r\n\r\n“For all have sinned and come short of the glory of God.” – Romans 3:23\r\n\r\n“For the wages of sin is death.” – Romans 6:23a\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"Believe\"]Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.\r\n\r\n“…the gift of God is eternal life through Jesus Christ our Lord” – Romans 6:23b\r\n\r\n“But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.” – Romans 5:8\r\n\r\n“If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.” – Romans 10:9\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"Call\"]Call upon the Lord through prayer for salvation.\r\n\r\n“For whosoever shall call upon the name of the Lord shall be saved.” – Romans 10:3\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"Pray\"]Pray today and receive Jesus Christ as your personal Lord and Savior.\r\n\r\n“…now is the accepted time, behold, now is the day of salvation.” – II Corinthians 6:2\r\n\r\n“But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.” – John 1:12\r\n\r\n[/ap_tab]\r\n[/ap_tab_group]\r\n\r\n ','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 21:06:37','2015-08-04 21:06:37','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1475,1,'2015-08-04 21:07:17','2015-08-04 21:07:17','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box]\r\n\r\n[su_spacer]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Admit</strong>\"]Admit that you are a sinner and deserve hell.\r\n\r\n“For all have sinned and come short of the glory of God.” – Romans 3:23\r\n\r\n“For the wages of sin is death.” – Romans 6:23a\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Believe</strong>\"]Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.\r\n\r\n“…the gift of God is eternal life through Jesus Christ our Lord” – Romans 6:23b\r\n\r\n“But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.” – Romans 5:8\r\n\r\n“If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.” – Romans 10:9\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Call</strong>\"]Call upon the Lord through prayer for salvation.\r\n\r\n“For whosoever shall call upon the name of the Lord shall be saved.” – Romans 10:3\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Pray</strong>\"]Pray today and receive Jesus Christ as your personal Lord and Savior.\r\n\r\n“…now is the accepted time, behold, now is the day of salvation.” – II Corinthians 6:2\r\n\r\n“But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.” – John 1:12\r\n\r\n[/ap_tab]\r\n[/ap_tab_group]\r\n\r\n ','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 21:07:17','2015-08-04 21:07:17','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1476,1,'2015-08-04 21:07:58','2015-08-04 21:07:58','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box]\r\n\r\n[su_spacer]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Admit</strong>\"]<span style=\"text-decoration: underline;\">Admit that you are a sinner and deserve hell.</span>\r\n\r\n“For all have sinned and come short of the glory of God.” – Romans 3:23\r\n\r\n“For the wages of sin is death.” – Romans 6:23a\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Believe</strong>\"]<span style=\"text-decoration: underline;\">Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.</span>\r\n\r\n“…the gift of God is eternal life through Jesus Christ our Lord” – Romans 6:23b\r\n\r\n“But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.” – Romans 5:8\r\n\r\n“If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.” – Romans 10:9\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Call</strong>\"]<span style=\"text-decoration: underline;\">Call upon the Lord through prayer for salvation.</span>\r\n\r\n“For whosoever shall call upon the name of the Lord shall be saved.” – Romans 10:3\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Pray</strong>\"]<span style=\"text-decoration: underline;\">Pray today and receive Jesus Christ as your personal Lord and Savior.</span>\r\n\r\n“…now is the accepted time, behold, now is the day of salvation.” – II Corinthians 6:2\r\n\r\n“But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.” – John 1:12\r\n\r\n[/ap_tab]\r\n[/ap_tab_group]\r\n\r\n ','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 21:07:58','2015-08-04 21:07:58','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1477,1,'2015-08-04 21:09:43','2015-08-04 21:09:43','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box]\r\n\r\n[su_spacer]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Admit</strong>\"]<span style=\"text-decoration: underline;\">Admit that you are a sinner and deserve hell.</span>\r\n\r\n“For all have sinned and come short of the glory of God.” – Romans 3:23\r\n\r\n“For the wages of sin is death.” – Romans 6:23a\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Believe</strong>\"]<span style=\"text-decoration: underline;\">Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.</span>\r\n\r\n“…the gift of God is eternal life through Jesus Christ our Lord” – Romans 6:23b\r\n\r\n“But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.” – Romans 5:8\r\n\r\n“If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.” – Romans 10:9\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Call</strong>\"]<span style=\"text-decoration: underline;\">Call upon the Lord through prayer for salvation.</span>\r\n\r\n“For whosoever shall call upon the name of the Lord shall be saved.” – Romans 10:3\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Pray</strong>\"]<span style=\"text-decoration: underline;\">Pray today and receive Jesus Christ as your personal Lord and Savior.</span>\r\n\r\n“…now is the accepted time, behold, now is the day of salvation.” – II Corinthians 6:2\r\n\r\n“But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.” – John 1:12\r\n\r\n[/ap_tab]\r\n[/ap_tab_group]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]If you would like to receive Christ as your personal Lord and Savior, tell God in the following prayer:[ap_tagline_box tag_box_style=\"ap-bg-box\"]Dear God, I am a sinner. Because of my sin, I deserve to spend eternity in hell. I believe that Jesus died on the cross, was buried, and rose from the grave for my sins. I therefore, turn from my sins and put my faith in Jesus Christ to get me to heaven. Thank you for saving me today, and help me to serve you the rest of my life. In Jesus\' Name, Amen.[/ap_tagline_box][/ap_tagline_box]\r\n\r\n ','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 21:09:43','2015-08-04 21:09:43','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1478,1,'2015-08-04 21:10:23','2015-08-04 21:10:23','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box]\r\n\r\n[su_spacer]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Admit</strong>\"]<span style=\"text-decoration: underline;\">Admit that you are a sinner and deserve hell.</span>\r\n\r\n“For all have sinned and come short of the glory of God.” – Romans 3:23\r\n\r\n“For the wages of sin is death.” – Romans 6:23a\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Believe</strong>\"]<span style=\"text-decoration: underline;\">Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.</span>\r\n\r\n“…the gift of God is eternal life through Jesus Christ our Lord” – Romans 6:23b\r\n\r\n“But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.” – Romans 5:8\r\n\r\n“If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.” – Romans 10:9\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Call</strong>\"]<span style=\"text-decoration: underline;\">Call upon the Lord through prayer for salvation.</span>\r\n\r\n“For whosoever shall call upon the name of the Lord shall be saved.” – Romans 10:3\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Pray</strong>\"]<span style=\"text-decoration: underline;\">Pray today and receive Jesus Christ as your personal Lord and Savior.</span>\r\n\r\n“…now is the accepted time, behold, now is the day of salvation.” – II Corinthians 6:2\r\n\r\n“But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.” – John 1:12\r\n\r\n[/ap_tab]\r\n[/ap_tab_group]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]If you would like to receive Christ as your personal Lord and Savior, tell God in the following prayer:[/ap_tagline_box][ap_tagline_box tag_box_style=\"ap-bg-box\"]Dear God, I am a sinner. Because of my sin, I deserve to spend eternity in hell. I believe that Jesus died on the cross, was buried, and rose from the grave for my sins. I therefore, turn from my sins and put my faith in Jesus Christ to get me to heaven. Thank you for saving me today, and help me to serve you the rest of my life. In Jesus\' Name, Amen.[/ap_tagline_box]\r\n\r\n ','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 21:10:23','2015-08-04 21:10:23','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1479,1,'2015-08-04 21:10:59','2015-08-04 21:10:59','[su_youtube_advanced url=\"https://www.youtube.com/watch?v=K48-Li7lIfA\" controls=\"alt\" rel=\"no\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box]\r\n\r\n[su_spacer]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Admit</strong>\"]<span style=\"text-decoration: underline;\">Admit that you are a sinner and deserve hell.</span>\r\n\r\n“For all have sinned and come short of the glory of God.” – Romans 3:23\r\n\r\n“For the wages of sin is death.” – Romans 6:23a\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Believe</strong>\"]<span style=\"text-decoration: underline;\">Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.</span>\r\n\r\n“…the gift of God is eternal life through Jesus Christ our Lord” – Romans 6:23b\r\n\r\n“But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.” – Romans 5:8\r\n\r\n“If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.” – Romans 10:9\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Call</strong>\"]<span style=\"text-decoration: underline;\">Call upon the Lord through prayer for salvation.</span>\r\n\r\n“For whosoever shall call upon the name of the Lord shall be saved.” – Romans 10:3\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Pray</strong>\"]<span style=\"text-decoration: underline;\">Pray today and receive Jesus Christ as your personal Lord and Savior.</span>\r\n\r\n“…now is the accepted time, behold, now is the day of salvation.” – II Corinthians 6:2\r\n\r\n“But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.” – John 1:12\r\n\r\n[/ap_tab]\r\n[/ap_tab_group]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]If you would like to receive Christ as your personal Lord and Savior, tell God in the following prayer:[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">Dear God, I am a sinner. Because of my sin, I deserve to spend eternity in hell. I believe that Jesus died on the cross, was buried, and rose from the grave for my sins. I therefore, turn from my sins and put my faith in Jesus Christ to get me to heaven. Thank you for saving me today, and help me to serve you the rest of my life. In Jesus\' Name, Amen.</span>[/ap_tagline_box]\r\n\r\n ','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-04 21:10:59','2015-08-04 21:10:59','',37,'http://www.mytwincity.org/2015/08/04/37-revision-v1/',0,'revision','',0),(1480,1,'2015-08-04 21:16:46','2015-08-04 21:16:46','','water-drops-baptism-still','','inherit','open','open','','water-drops-baptism-still','','','2015-08-04 21:16:46','2015-08-04 21:16:46','',0,'http://www.mytwincity.org/wp-content/uploads/2015/08/water-drops-baptism-still.jpg',0,'attachment','image/jpeg',0),(1481,1,'2015-08-04 21:17:30','2015-08-04 21:17:30','[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/08/water-drops-baptism-still.jpg\" alt=\"\" />[/su_frame]','Baptism','','inherit','open','open','','39-revision-v1','','','2015-08-04 21:17:30','2015-08-04 21:17:30','',39,'http://www.mytwincity.org/2015/08/04/39-revision-v1/',0,'revision','',0),(1482,1,'2015-08-04 21:18:41','2015-08-04 21:18:41','[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/08/water-drops-baptism-still.jpg\" alt=\"\" />[/su_frame]\r\n\r\n[su_heading size=\"25\"]Baptism is an outward reflection of an inward connection![/su_heading]','Baptism','','inherit','open','open','','39-revision-v1','','','2015-08-04 21:18:41','2015-08-04 21:18:41','',39,'http://www.mytwincity.org/2015/08/04/39-revision-v1/',0,'revision','',0),(1483,1,'2015-08-05 14:37:13','2015-08-05 14:37:13','<p style=\"text-align: center;\">[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/08/water-drops-baptism-still.jpg\" alt=\"\" />[/su_frame]</p>\n[su_heading size=\"25\"]Baptism is an outward reflection of an inward connection![/su_heading]\n\n[ap_tab_group type=\"horizontal\"]\n[ap_tab title=\"<strong>Who Should Be Baptized?</strong>\"][ap_toggle title=\"Every person who has believed in Christ\" status=\"close\"]\"Those who believe and accepted His message were baptized...\" --Acts 2:41\n\n\"Simon himself believed and was baptized...\" --Acts 8:13\n\n\"But when they believed Philip as he preached the Good News… and the name of Jesus Christ, they were baptized, both men and women.\" --Acts 8:12[/ap_toggle][/ap_tab]\n[ap_tab title=\"<strong>When Should I Be Baptized?</strong>\"][ap_toggle title=\"As soon as you have believed\" status=\"close\"]\"Those who believe...were baptized...that day!\" --Acts 2:41\n\n\"Then Philip began with the scripture and told him the Good News about Jesus. As they traveled along the road, they came to some water, and the man said, ´Look, here is water! Why shouldn´t I be baptized right now?´ Philip said, ´If you believe with all your heart, you may.´ The man answered, ´I believe that Jesus Christ is the Son of God.´ So they went down into the water and Philip baptized him.\" --Acts 8:35-38\n\nThere is no reason to delay. As soon as you have decided to receive Christ into your life, you can and should be baptized. If you wait until you are \"perfect,\" you´ll never feel \"good enough\"![/ap_toggle]\n\n[ap_toggle title=\"At TCB, we wait until our children are old enough to believe and understand the true meaning of baptism before we baptize them.\" status=\"close\"]Some churches practice a \"baptism of confirmation\" for children. This ceremony is intended to be a covenant between the parents and God on the behalf of the child. The parents promise to raise their child in the faith until the child is old enough to make his own personal confession of Christ. This custom began about 300 years after the Bible was completed.\n\nThis is different from the baptism talked about in the Bible which was only for those old enough to believe. The purpose is to publicly confess your personal commitment to Christ.[/ap_toggle][/ap_tab]\n[ap_tab title=\"<strong>TCB practices adult believer\'s baptism by immersion</strong>\"][ap_toggle title=\"Because Jesus was baptized that way.\" status=\"close\"]\"As soon as Jesus was baptized, He went up out of the water,\" --Matthew 3:16 [/ap_toggle][ap_toggle title=\"Every baptism in the Bible was by immersion.\" status=\"close\"](Example) \"...then both Philip and the man went down into the water and Philip baptized him. When they came up out of the water...\" --Acts 8:38-39\n\nThe word Baptize means \"To dip under water\".\n\nThe Greek word baptize means \"to immerse or dip under water\".\n\nIt best symbolized a burial and resurrection![/ap_toggle]\n\n[ap_toggle title=\"The founders of denominations agree:\" status=\"close\"]Martin Luther… \"I would have those who are to be baptized to be entirely immersed, as the work imports and the mystery signifies.\"\n\nJohn Calvin… \"The word ´baptize´ signifies to immerse. It is certain that immersion was the practice of the ancient church.\"\n\nJohn Wesley… \"Buried with Him, alludes to baptizing by immersion according to the custom of the first church.\"[/ap_toggle][/ap_tab]\n\n[ap_tab title=\"<strong>How Does this Work?</strong>\"][ap_toggle title=\"What Should I Wear?\" status=\"close\"]Women should wear a dark t-shirt and swim suit/shorts. Men may wear shorts and dark t-shirts, or a swimsuit. Bring a change of clothes, a towel, and a plastic bag for your wet clothes.[/ap_toggle]\n\n[ap_toggle title=\"Will I Have to Say Anything?\" status=\"close\"]Yes! At the beginning of the service, one of the pastor\'s will briefly explain the meaning of baptism. At that time, they will ask you a question that will indicate you giving a public confession of Jesus Christ.\n\nYou will wait in the water for your turn to be baptized. The pastor will introduce you, briefly lower you just under the water, and then you can leave the water, dry off, and watch the others. Later you will receive your baptism certificate.\n\nWe encourage you to invite all your relatives and friends to attend your baptism.[/ap_toggle]\n\n[ap_toggle title=\"Can my family and friends be baptized together?\" status=\"close\"]Yes! If each person understands fully the meaning of Biblical baptism, and each one has personally placed his/her trust in Christ for salvation, we encourage families to be baptized at the same time. It is a wonderful expression of commitment.\n\nHowever, it is important to remember that baptism is a personal statement of faith, not a family or group tradition. It is usually not wise to delay your baptism while waiting on others to join you. This puts an undue pressure on them and delays your obedience.\n\nSalvation is private between you and God. Baptism is public between You, God and the Church.[/ap_toggle][/ap_tab]\n[/ap_tab_group]','Baptism','','inherit','open','open','','39-autosave-v1','','','2015-08-05 14:37:13','2015-08-05 14:37:13','',39,'http://www.mytwincity.org/2015/08/05/39-autosave-v1/',0,'revision','',0),(1484,1,'2015-08-05 14:36:03','2015-08-05 14:36:03','[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/08/water-drops-baptism-still.jpg\" alt=\"\" />[/su_frame]\r\n\r\n[su_heading size=\"25\"]Baptism is an outward reflection of an inward connection![/su_heading]\r\n\r\n[ap_tab_group type=\"horizontal\"]\r\n[ap_tab title=\"<strong>Who Should Be Baptized?</strong>\"][ap_toggle title=\"Every person who has believed in Christ\" status=\"close\"]\"Those who believe and accepted His message were baptized...\" --Acts 2:41\r\n\r\n\"Simon himself believed and was baptized...\" --Acts 8:13\r\n\r\n\"But when they believed Philip as he preached the Good News… and the name of Jesus Christ, they were baptized, both men and women.\" --Acts 8:12[/ap_toggle][/ap_tab]\r\n[ap_tab title=\"<strong>When Should I Be Baptized?</strong>\"][ap_toggle title=\"As soon as you have believed\" status=\"close\"]\"Those who believe...were baptized...that day!\" --Acts 2:41\r\n\r\n\"Then Philip began with the scripture and told him the Good News about Jesus. As they traveled along the road, they came to some water, and the man said, ´Look, here is water! Why shouldn´t I be baptized right now?´ Philip said, ´If you believe with all your heart, you may.´ The man answered, ´I believe that Jesus Christ is the Son of God.´ So they went down into the water and Philip baptized him.\" --Acts 8:35-38\r\n\r\nThere is no reason to delay. As soon as you have decided to receive Christ into your life, you can and should be baptized. If you wait until you are \"perfect,\" you´ll never feel \"good enough\"![/ap_toggle]\r\n\r\n[ap_toggle title=\"At TCB, we wait until our children are old enough to believe and understand the true meaning of baptism before we baptize them.\" status=\"close\"]Some churches practice a \"baptism of confirmation\" for children. This ceremony is intended to be a covenant between the parents and God on the behalf of the child. The parents promise to raise their child in the faith until the child is old enough to make his own personal confession of Christ. This custom began about 300 years after the Bible was completed.\r\n\r\nThis is different from the baptism talked about in the Bible which was only for those old enough to believe. The purpose is to publicly confess your personal commitment to Christ.[/ap_toggle][/ap_tab]\r\n[ap_tab title=\"<strong>TCB practices adult believer\'s baptism by immersion</strong>\"][ap_toggle title=\"Because Jesus was baptized that way.\" status=\"close\"]\"As soon as Jesus was baptized, He went up out of the water,\" --Matthew 3:16 [/ap_toggle][ap_toggle title=\"Every baptism in the Bible was by immersion.\" status=\"close\"](Example) \"...then both Philip and the man went down into the water and Philip baptized him. When they came up out of the water...\" --Acts 8:38-39\r\n\r\nThe word Baptize means \"To dip under water\".\r\n\r\nThe Greek word baptize means \"to immerse or dip under water\".\r\n\r\nIt best symbolized a burial and resurrection![/ap_toggle]\r\n\r\n[ap_toggle title=\"The founders of denominations agree:\" status=\"close\"]Martin Luther… \"I would have those who are to be baptized to be entirely immersed, as the work imports and the mystery signifies.\"\r\n\r\nJohn Calvin… \"The word ´baptize´ signifies to immerse. It is certain that immersion was the practice of the ancient church.\"\r\n\r\nJohn Wesley… \"Buried with Him, alludes to baptizing by immersion according to the custom of the first church.\"[/ap_toggle][/ap_tab]\r\n\r\n[ap_tab title=\"<strong>How Does this Work?</strong>\"][ap_toggle title=\"What Should I Wear?\" status=\"close\"]Women should wear a dark t-shirt and swim suit/shorts. Men may wear shorts and dark t-shirts, or a swimsuit. Bring a change of clothes, a towel, and a plastic bag for your wet clothes.[/ap_toggle]\r\n\r\n[ap_toggle title=\"Will I Have to Say Anything?\" status=\"close\"]Yes! At the beginning of the service, one of the pastor\'s will briefly explain the meaning of baptism. At that time, they will ask you a question that will indicate you giving a public confession of Jesus Christ.\r\n\r\nYou will wait in the water for your turn to be baptized. The pastor will introduce you, briefly lower you just under the water, and then you can leave the water, dry off, and watch the others. Later you will receive your baptism certificate.\r\n\r\nWe encourage you to invite all your relatives and friends to attend your baptism.[/ap_toggle]\r\n\r\n[ap_toggle title=\"Can my family and friends be baptized together?\" status=\"close\"]Yes! If each person understands fully the meaning of Biblical baptism, and each one has personally placed his/her trust in Christ for salvation, we encourage families to be baptized at the same time. It is a wonderful expression of commitment.\r\n\r\nHowever, it is important to remember that baptism is a personal statement of faith, not a family or group tradition. It is usually not wise to delay your baptism while waiting on others to join you. This puts an undue pressure on them and delays your obedience.\r\n\r\nSalvation is private between you and God. Baptism is public between You, God and the Church.[/ap_toggle][/ap_tab]\r\n[/ap_tab_group]','Baptism','','inherit','open','open','','39-revision-v1','','','2015-08-05 14:36:03','2015-08-05 14:36:03','',39,'http://www.mytwincity.org/2015/08/05/39-revision-v1/',0,'revision','',0),(1485,1,'2015-08-05 14:37:20','2015-08-05 14:37:20','[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/08/water-drops-baptism-still.jpg\" alt=\"\" />[/su_frame]\r\n\r\n[su_heading size=\"25\"]Baptism is an outward reflection of an inward connection![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tab_group type=\"horizontal\"]\r\n[ap_tab title=\"<strong>Who Should Be Baptized?</strong>\"][ap_toggle title=\"Every person who has believed in Christ\" status=\"close\"]\"Those who believe and accepted His message were baptized...\" --Acts 2:41</p>\r\n\"Simon himself believed and was baptized...\" --Acts 8:13\r\n\r\n\"But when they believed Philip as he preached the Good News… and the name of Jesus Christ, they were baptized, both men and women.\" --Acts 8:12[/ap_toggle][/ap_tab]\r\n[ap_tab title=\"<strong>When Should I Be Baptized?</strong>\"][ap_toggle title=\"As soon as you have believed\" status=\"close\"]\"Those who believe...were baptized...that day!\" --Acts 2:41\r\n\r\n\"Then Philip began with the scripture and told him the Good News about Jesus. As they traveled along the road, they came to some water, and the man said, ´Look, here is water! Why shouldn´t I be baptized right now?´ Philip said, ´If you believe with all your heart, you may.´ The man answered, ´I believe that Jesus Christ is the Son of God.´ So they went down into the water and Philip baptized him.\" --Acts 8:35-38\r\n\r\nThere is no reason to delay. As soon as you have decided to receive Christ into your life, you can and should be baptized. If you wait until you are \"perfect,\" you´ll never feel \"good enough\"![/ap_toggle]\r\n\r\n[ap_toggle title=\"At TCB, we wait until our children are old enough to believe and understand the true meaning of baptism before we baptize them.\" status=\"close\"]Some churches practice a \"baptism of confirmation\" for children. This ceremony is intended to be a covenant between the parents and God on the behalf of the child. The parents promise to raise their child in the faith until the child is old enough to make his own personal confession of Christ. This custom began about 300 years after the Bible was completed.\r\n\r\nThis is different from the baptism talked about in the Bible which was only for those old enough to believe. The purpose is to publicly confess your personal commitment to Christ.[/ap_toggle][/ap_tab]\r\n[ap_tab title=\"<strong>TCB practices adult believer\'s baptism by immersion</strong>\"][ap_toggle title=\"Because Jesus was baptized that way.\" status=\"close\"]\"As soon as Jesus was baptized, He went up out of the water,\" --Matthew 3:16 [/ap_toggle][ap_toggle title=\"Every baptism in the Bible was by immersion.\" status=\"close\"](Example) \"...then both Philip and the man went down into the water and Philip baptized him. When they came up out of the water...\" --Acts 8:38-39\r\n\r\nThe word Baptize means \"To dip under water\".\r\n\r\nThe Greek word baptize means \"to immerse or dip under water\".\r\n\r\nIt best symbolized a burial and resurrection![/ap_toggle]\r\n\r\n[ap_toggle title=\"The founders of denominations agree:\" status=\"close\"]Martin Luther… \"I would have those who are to be baptized to be entirely immersed, as the work imports and the mystery signifies.\"\r\n\r\nJohn Calvin… \"The word ´baptize´ signifies to immerse. It is certain that immersion was the practice of the ancient church.\"\r\n\r\nJohn Wesley… \"Buried with Him, alludes to baptizing by immersion according to the custom of the first church.\"[/ap_toggle][/ap_tab]\r\n\r\n[ap_tab title=\"<strong>How Does this Work?</strong>\"][ap_toggle title=\"What Should I Wear?\" status=\"close\"]Women should wear a dark t-shirt and swim suit/shorts. Men may wear shorts and dark t-shirts, or a swimsuit. Bring a change of clothes, a towel, and a plastic bag for your wet clothes.[/ap_toggle]\r\n\r\n[ap_toggle title=\"Will I Have to Say Anything?\" status=\"close\"]Yes! At the beginning of the service, one of the pastor\'s will briefly explain the meaning of baptism. At that time, they will ask you a question that will indicate you giving a public confession of Jesus Christ.\r\n\r\nYou will wait in the water for your turn to be baptized. The pastor will introduce you, briefly lower you just under the water, and then you can leave the water, dry off, and watch the others. Later you will receive your baptism certificate.\r\n\r\nWe encourage you to invite all your relatives and friends to attend your baptism.[/ap_toggle]\r\n\r\n[ap_toggle title=\"Can my family and friends be baptized together?\" status=\"close\"]Yes! If each person understands fully the meaning of Biblical baptism, and each one has personally placed his/her trust in Christ for salvation, we encourage families to be baptized at the same time. It is a wonderful expression of commitment.\r\n\r\nHowever, it is important to remember that baptism is a personal statement of faith, not a family or group tradition. It is usually not wise to delay your baptism while waiting on others to join you. This puts an undue pressure on them and delays your obedience.\r\n\r\nSalvation is private between you and God. Baptism is public between You, God and the Church.[/ap_toggle][/ap_tab]\r\n[/ap_tab_group]','Baptism','','inherit','open','open','','39-revision-v1','','','2015-08-05 14:37:20','2015-08-05 14:37:20','',39,'http://www.mytwincity.org/2015/08/05/39-revision-v1/',0,'revision','',0),(1486,1,'2015-08-05 14:46:19','2015-08-05 14:46:19','[ap_column_wrap]\r\n[ap_column span=\"3\"][su_youtube url=\"https://www.youtube.com/watch?v=_90SFev_iFk\" responsive=\"no\"][/ap_column]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n[su_spacer]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Admit</strong>\"]<span style=\"text-decoration: underline;\">Admit that you are a sinner and deserve hell.</span>\r\n\r\n“For all have sinned and come short of the glory of God.” – Romans 3:23\r\n\r\n“For the wages of sin is death.” – Romans 6:23a\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Believe</strong>\"]<span style=\"text-decoration: underline;\">Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.</span>\r\n\r\n“…the gift of God is eternal life through Jesus Christ our Lord” – Romans 6:23b\r\n\r\n“But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.” – Romans 5:8\r\n\r\n“If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.” – Romans 10:9\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Call</strong>\"]<span style=\"text-decoration: underline;\">Call upon the Lord through prayer for salvation.</span>\r\n\r\n“For whosoever shall call upon the name of the Lord shall be saved.” – Romans 10:3\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Pray</strong>\"]<span style=\"text-decoration: underline;\">Pray today and receive Jesus Christ as your personal Lord and Savior.</span>\r\n\r\n“…now is the accepted time, behold, now is the day of salvation.” – II Corinthians 6:2\r\n\r\n“But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.” – John 1:12\r\n\r\n[/ap_tab]\r\n[/ap_tab_group]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]If you would like to receive Christ as your personal Lord and Savior, tell God in the following prayer:[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">Dear God, I am a sinner. Because of my sin, I deserve to spend eternity in hell. I believe that Jesus died on the cross, was buried, and rose from the grave for my sins. I therefore, turn from my sins and put my faith in Jesus Christ to get me to heaven. Thank you for saving me today, and help me to serve you the rest of my life. In Jesus\' Name, Amen.</span>[/ap_tagline_box]\r\n\r\n ','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-05 14:46:19','2015-08-05 14:46:19','',37,'http://www.mytwincity.org/2015/08/05/37-revision-v1/',0,'revision','',0),(1487,1,'2015-08-05 14:47:27','2015-08-05 14:47:27','[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_youtube url=\"https://www.youtube.com/watch?v=_90SFev_iFk\" responsive=\"no\"][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n[su_spacer]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Admit</strong>\"]<span style=\"text-decoration: underline;\">Admit that you are a sinner and deserve hell.</span>\r\n\r\n“For all have sinned and come short of the glory of God.” – Romans 3:23\r\n\r\n“For the wages of sin is death.” – Romans 6:23a\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Believe</strong>\"]<span style=\"text-decoration: underline;\">Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.</span>\r\n\r\n“…the gift of God is eternal life through Jesus Christ our Lord” – Romans 6:23b\r\n\r\n“But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.” – Romans 5:8\r\n\r\n“If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.” – Romans 10:9\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Call</strong>\"]<span style=\"text-decoration: underline;\">Call upon the Lord through prayer for salvation.</span>\r\n\r\n“For whosoever shall call upon the name of the Lord shall be saved.” – Romans 10:3\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Pray</strong>\"]<span style=\"text-decoration: underline;\">Pray today and receive Jesus Christ as your personal Lord and Savior.</span>\r\n\r\n“…now is the accepted time, behold, now is the day of salvation.” – II Corinthians 6:2\r\n\r\n“But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.” – John 1:12\r\n\r\n[/ap_tab]\r\n[/ap_tab_group]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]If you would like to receive Christ as your personal Lord and Savior, tell God in the following prayer:[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">Dear God, I am a sinner. Because of my sin, I deserve to spend eternity in hell. I believe that Jesus died on the cross, was buried, and rose from the grave for my sins. I therefore, turn from my sins and put my faith in Jesus Christ to get me to heaven. Thank you for saving me today, and help me to serve you the rest of my life. In Jesus\' Name, Amen.</span>[/ap_tagline_box]\r\n\r\n ','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-05 14:47:27','2015-08-05 14:47:27','',37,'http://www.mytwincity.org/2015/08/05/37-revision-v1/',0,'revision','',0),(1488,1,'2015-08-05 14:48:25','2015-08-05 14:48:25','[ap_column_wrap]\r\n[ap_column span=\"3\"][su_heading size=\"30\"]The Gospel[/su_heading][ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_youtube url=\"https://www.youtube.com/watch?v=_90SFev_iFk\" responsive=\"no\"][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n[su_spacer]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Admit</strong>\"]<span style=\"text-decoration: underline;\">Admit that you are a sinner and deserve hell.</span>\r\n\r\n“For all have sinned and come short of the glory of God.” – Romans 3:23\r\n\r\n“For the wages of sin is death.” – Romans 6:23a\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Believe</strong>\"]<span style=\"text-decoration: underline;\">Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.</span>\r\n\r\n“…the gift of God is eternal life through Jesus Christ our Lord” – Romans 6:23b\r\n\r\n“But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.” – Romans 5:8\r\n\r\n“If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.” – Romans 10:9\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Call</strong>\"]<span style=\"text-decoration: underline;\">Call upon the Lord through prayer for salvation.</span>\r\n\r\n“For whosoever shall call upon the name of the Lord shall be saved.” – Romans 10:3\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Pray</strong>\"]<span style=\"text-decoration: underline;\">Pray today and receive Jesus Christ as your personal Lord and Savior.</span>\r\n\r\n“…now is the accepted time, behold, now is the day of salvation.” – II Corinthians 6:2\r\n\r\n“But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.” – John 1:12\r\n\r\n[/ap_tab]\r\n[/ap_tab_group]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]If you would like to receive Christ as your personal Lord and Savior, tell God in the following prayer:[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">Dear God, I am a sinner. Because of my sin, I deserve to spend eternity in hell. I believe that Jesus died on the cross, was buried, and rose from the grave for my sins. I therefore, turn from my sins and put my faith in Jesus Christ to get me to heaven. Thank you for saving me today, and help me to serve you the rest of my life. In Jesus\' Name, Amen.</span>[/ap_tagline_box]\r\n\r\n ','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-05 14:48:25','2015-08-05 14:48:25','',37,'http://www.mytwincity.org/2015/08/05/37-revision-v1/',0,'revision','',0),(1489,1,'2015-08-05 14:49:30','2015-08-05 14:49:30','[ap_column_wrap]\r\n[ap_column span=\"3\"][su_heading size=\"30\" margin=\"60\"]The Gospel[/su_heading][ap_tagline_box tag_box_style=\"ap-all-border-box\"]Have you come to a place in your life that you know for certain you have eternal life and that you will go to heaven when you die? If you cannot answer yes - then read on to see how you can know for sure that you are going to heaven.[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_youtube url=\"https://www.youtube.com/watch?v=_90SFev_iFk\" responsive=\"no\"][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n[su_spacer]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Admit</strong>\"]<span style=\"text-decoration: underline;\">Admit that you are a sinner and deserve hell.</span>\r\n\r\n“For all have sinned and come short of the glory of God.” – Romans 3:23\r\n\r\n“For the wages of sin is death.” – Romans 6:23a\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Believe</strong>\"]<span style=\"text-decoration: underline;\">Believe that Jesus Christ died on the cross for your sins and rose from the grave so that you could go to heaven.</span>\r\n\r\n“…the gift of God is eternal life through Jesus Christ our Lord” – Romans 6:23b\r\n\r\n“But God commendeth His love toward us, in that, while we were yet sinners, Christ died for us.” – Romans 5:8\r\n\r\n“If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved.” – Romans 10:9\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Call</strong>\"]<span style=\"text-decoration: underline;\">Call upon the Lord through prayer for salvation.</span>\r\n\r\n“For whosoever shall call upon the name of the Lord shall be saved.” – Romans 10:3\r\n\r\n[/ap_tab]\r\n[ap_tab title=\"<strong>Pray</strong>\"]<span style=\"text-decoration: underline;\">Pray today and receive Jesus Christ as your personal Lord and Savior.</span>\r\n\r\n“…now is the accepted time, behold, now is the day of salvation.” – II Corinthians 6:2\r\n\r\n“But as many as received Him, to them gave He power to become the sons of God, even to them that believe on His name.” – John 1:12\r\n\r\n[/ap_tab]\r\n[/ap_tab_group]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]If you would like to receive Christ as your personal Lord and Savior, tell God in the following prayer:[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">Dear God, I am a sinner. Because of my sin, I deserve to spend eternity in hell. I believe that Jesus died on the cross, was buried, and rose from the grave for my sins. I therefore, turn from my sins and put my faith in Jesus Christ to get me to heaven. Thank you for saving me today, and help me to serve you the rest of my life. In Jesus\' Name, Amen.</span>[/ap_tagline_box]\r\n\r\n ','Gospel','','inherit','open','open','','37-revision-v1','','','2015-08-05 14:49:30','2015-08-05 14:49:30','',37,'http://www.mytwincity.org/2015/08/05/37-revision-v1/',0,'revision','',0),(1490,1,'2015-08-05 15:19:13','2015-08-05 15:19:13','[su_heading size=\"30\" align=\"right\" margin=\"30\"]Serve[/su_heading]\r\n\r\n[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]God has custom-made you and you have a purpose to serve Him. Find out how by clicking on these free evaluation tools:\r\n\r\nLeadership Shape Test (<a href=\"http://www.mytwincity.org/contact-2/\">Email us to request</a>)\r\n\r\n<a href=\"http://elmertowns.com/?page_id=203\" target=\"_blank\">Spiritual Gifts Test</a>\r\n\r\n<a href=\"http://personality-testing.info/tests/ODAT/\" target=\"_blank\">DISC Personality Test</a>\r\n\r\n<a href=\"http://www.personalitypathways.com/type_inventory.html\" target=\"_blank\">MYERS BRIGGS Test</a>[/ap_tagline_box]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-05 15:19:13','2015-08-05 15:19:13','',21,'http://www.mytwincity.org/2015/08/05/21-revision-v1/',0,'revision','',0),(1491,1,'2015-08-05 15:19:36','2015-08-05 15:19:36','[su_heading size=\"30\" align=\"center\" margin=\"30\"]Serve[/su_heading]\r\n\r\n[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]God has custom-made you and you have a purpose to serve Him. Find out how by clicking on these free evaluation tools:\r\n\r\nLeadership Shape Test (<a href=\"http://www.mytwincity.org/contact-2/\">Email us to request</a>)\r\n\r\n<a href=\"http://elmertowns.com/?page_id=203\" target=\"_blank\">Spiritual Gifts Test</a>\r\n\r\n<a href=\"http://personality-testing.info/tests/ODAT/\" target=\"_blank\">DISC Personality Test</a>\r\n\r\n<a href=\"http://www.personalitypathways.com/type_inventory.html\" target=\"_blank\">MYERS BRIGGS Test</a>[/ap_tagline_box]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-05 15:19:36','2015-08-05 15:19:36','',21,'http://www.mytwincity.org/2015/08/05/21-revision-v1/',0,'revision','',0),(1492,1,'2015-08-05 15:22:44','2015-08-05 15:22:44',' \r\n\r\n[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]God has custom-made you and you have a purpose to serve Him. Find out how by clicking on these free evaluation tools:\r\n\r\nLeadership Shape Test (<a href=\"http://www.mytwincity.org/contact-2/\">Email us to request</a>)\r\n\r\n<a href=\"http://elmertowns.com/?page_id=203\" target=\"_blank\">Spiritual Gifts Test</a>\r\n\r\n<a href=\"http://personality-testing.info/tests/ODAT/\" target=\"_blank\">DISC Personality Test</a>\r\n\r\n<a href=\"http://www.personalitypathways.com/type_inventory.html\" target=\"_blank\">MYERS BRIGGS Test</a>[/ap_tagline_box]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-05 15:22:44','2015-08-05 15:22:44','',21,'http://www.mytwincity.org/2015/08/05/21-revision-v1/',0,'revision','',0),(1493,1,'2015-08-05 15:22:59','2015-08-05 15:22:59','','volunteer-map-still','','inherit','open','open','','volunteer-map-still','','','2015-08-05 15:22:59','2015-08-05 15:22:59','',0,'http://www.mytwincity.org/wp-content/uploads/2015/08/volunteer-map-still.jpg',0,'attachment','image/jpeg',0),(1494,1,'2015-08-05 15:23:47','2015-08-05 15:23:47','[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/08/volunteer-map-still.jpg\" alt=\"\" />[/su_frame]\r\n\r\n[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]God has custom-made you and you have a purpose to serve Him. Find out how by clicking on these free evaluation tools:\r\n\r\nLeadership Shape Test (<a href=\"http://www.mytwincity.org/contact-2/\">Email us to request</a>)\r\n\r\n<a href=\"http://elmertowns.com/?page_id=203\" target=\"_blank\">Spiritual Gifts Test</a>\r\n\r\n<a href=\"http://personality-testing.info/tests/ODAT/\" target=\"_blank\">DISC Personality Test</a>\r\n\r\n<a href=\"http://www.personalitypathways.com/type_inventory.html\" target=\"_blank\">MYERS BRIGGS Test</a>[/ap_tagline_box]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-05 15:23:47','2015-08-05 15:23:47','',21,'http://www.mytwincity.org/2015/08/05/21-revision-v1/',0,'revision','',0),(1495,1,'2015-08-05 15:52:55','2015-08-05 15:52:55',' \r\n\r\n[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button]\r\n\r\n[su_spacer]\r\n\r\n[su_button url=\"http://www.mytwincity.org/bring/current-teaching-series/\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: th-list\"]Current Teaching Series[/su_button][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-05 15:52:55','2015-08-05 15:52:55','',23,'http://www.mytwincity.org/2015/08/05/23-revision-v1/',0,'revision','',0),(1496,1,'2015-08-05 15:53:08','2015-08-05 15:53:08','','students-703003_1920','','inherit','open','open','','students-703003_1920','','','2015-08-05 17:42:41','2015-08-05 17:42:41','',0,'http://www.mytwincity.org/wp-content/uploads/2015/08/students-703003_1920.jpg',0,'attachment','image/jpeg',0),(1497,1,'2015-08-05 15:53:56','2015-08-05 15:53:56','[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/08/students-703003_1920.jpg\" alt=\"\" />[/su_frame]\r\n\r\n[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button]\r\n\r\n[su_spacer]\r\n\r\n[su_button url=\"http://www.mytwincity.org/bring/current-teaching-series/\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: th-list\"]Current Teaching Series[/su_button][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-05 15:53:56','2015-08-05 15:53:56','',23,'http://www.mytwincity.org/2015/08/05/23-revision-v1/',0,'revision','',0),(1498,1,'2015-08-05 15:55:59','2015-08-05 15:55:59','<h5>[su_frame align=\"center\"]<img src=\"http://www.mytwincity.org/wp-content/uploads/2015/08/DeathtoStock_Medium6.jpg\" alt=\"\" />[/su_frame]</h5>\r\n<h5>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Send your comments, questions, or suggestions, but just remember to enter your comments in the space provided below. Tell us how to get in touch with you. Click \"send\" and someone will message you shortly. </strong>[/ap_tagline_box]</h5>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>One more thing...Can you take 10 more seconds and write a simple google church review to reach more people like you? Just click [ap_button button_size=\"ap-small-bttn\" button_url=\"https://www.google.com/webhp?sourceid=chrome-instant&rlz=1C5CHFA_enUS557US557&ion=1&espv=2&ie=UTF-8#q=twin%20city%20baptist%20church&lrd=0x89e3e87e92068881:0x5070c417b503c767,2\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]HERE[/ap_button] and give us your rating of approval!</strong>[/ap_tagline_box]\r\n\r\n[ap_spacing spacing_height=\"10px\"]\r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','inherit','open','open','','1301-revision-v1','','','2015-08-05 15:55:59','2015-08-05 15:55:59','',1301,'http://www.mytwincity.org/2015/08/05/1301-revision-v1/',0,'revision','',0),(1499,1,'2015-08-05 17:41:48','2015-08-05 17:41:48',' \r\n\r\n[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button]\r\n\r\n[su_spacer]\r\n\r\n[su_button url=\"http://www.mytwincity.org/bring/current-teaching-series/\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: th-list\"]Current Teaching Series[/su_button][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','open','open','','23-revision-v1','','','2015-08-05 17:41:48','2015-08-05 17:41:48','',23,'http://www.mytwincity.org/2015/08/05/23-revision-v1/',0,'revision','',0),(1500,1,'2015-08-06 13:52:49','2015-08-06 13:52:49','[su_heading size=\"20\"]We are so glad that you have an interest to serve at TCB![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-top-border-box\"]Please fill out the following form and your interest will be sent to the office and the appropriate ministry leader or the pastor will be in touch with you. [/ap_tagline_box]</p>\r\n[contact-form-7 id=\"1387\" title=\"Serve Form\"]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]God has custom-made you and you have a purpose to serve Him. Find out how by clicking on these free evaluation tools:\r\n\r\nLeadership Shape Test (<a href=\"http://www.mytwincity.org/contact-2/\">Email us to request</a>)\r\n\r\n<a href=\"http://elmertowns.com/?page_id=203\" target=\"_blank\">Spiritual Gifts Test</a>\r\n\r\n<a href=\"http://personality-testing.info/tests/ODAT/\" target=\"_blank\">DISC Personality Test</a>\r\n\r\n<a href=\"http://www.personalitypathways.com/type_inventory.html\" target=\"_blank\">MYERS BRIGGS Test</a>[/ap_tagline_box]','Serve','','inherit','open','open','','21-revision-v1','','','2015-08-06 13:52:49','2015-08-06 13:52:49','',21,'http://www.mytwincity.org/2015/08/06/21-revision-v1/',0,'revision','',0),(1501,1,'2015-08-06 13:54:29','2015-08-06 13:54:29','[su_heading size=\"25\"]Baptism is an outward reflection of an inward connection![/su_heading]\r\n<p style=\"text-align: center;\">[ap_tab_group type=\"horizontal\"]\r\n[ap_tab title=\"<strong>Who Should Be Baptized?</strong>\"][ap_toggle title=\"Every person who has believed in Christ\" status=\"close\"]\"Those who believe and accepted His message were baptized...\" --Acts 2:41</p>\r\n\"Simon himself believed and was baptized...\" --Acts 8:13\r\n\r\n\"But when they believed Philip as he preached the Good News… and the name of Jesus Christ, they were baptized, both men and women.\" --Acts 8:12[/ap_toggle][/ap_tab]\r\n[ap_tab title=\"<strong>When Should I Be Baptized?</strong>\"][ap_toggle title=\"As soon as you have believed\" status=\"close\"]\"Those who believe...were baptized...that day!\" --Acts 2:41\r\n\r\n\"Then Philip began with the scripture and told him the Good News about Jesus. As they traveled along the road, they came to some water, and the man said, ´Look, here is water! Why shouldn´t I be baptized right now?´ Philip said, ´If you believe with all your heart, you may.´ The man answered, ´I believe that Jesus Christ is the Son of God.´ So they went down into the water and Philip baptized him.\" --Acts 8:35-38\r\n\r\nThere is no reason to delay. As soon as you have decided to receive Christ into your life, you can and should be baptized. If you wait until you are \"perfect,\" you´ll never feel \"good enough\"![/ap_toggle]\r\n\r\n[ap_toggle title=\"At TCB, we wait until our children are old enough to believe and understand the true meaning of baptism before we baptize them.\" status=\"close\"]Some churches practice a \"baptism of confirmation\" for children. This ceremony is intended to be a covenant between the parents and God on the behalf of the child. The parents promise to raise their child in the faith until the child is old enough to make his own personal confession of Christ. This custom began about 300 years after the Bible was completed.\r\n\r\nThis is different from the baptism talked about in the Bible which was only for those old enough to believe. The purpose is to publicly confess your personal commitment to Christ.[/ap_toggle][/ap_tab]\r\n[ap_tab title=\"<strong>TCB practices adult believer\'s baptism by immersion</strong>\"][ap_toggle title=\"Because Jesus was baptized that way.\" status=\"close\"]\"As soon as Jesus was baptized, He went up out of the water,\" --Matthew 3:16 [/ap_toggle][ap_toggle title=\"Every baptism in the Bible was by immersion.\" status=\"close\"](Example) \"...then both Philip and the man went down into the water and Philip baptized him. When they came up out of the water...\" --Acts 8:38-39\r\n\r\nThe word Baptize means \"To dip under water\".\r\n\r\nThe Greek word baptize means \"to immerse or dip under water\".\r\n\r\nIt best symbolized a burial and resurrection![/ap_toggle]\r\n\r\n[ap_toggle title=\"The founders of denominations agree:\" status=\"close\"]Martin Luther… \"I would have those who are to be baptized to be entirely immersed, as the work imports and the mystery signifies.\"\r\n\r\nJohn Calvin… \"The word ´baptize´ signifies to immerse. It is certain that immersion was the practice of the ancient church.\"\r\n\r\nJohn Wesley… \"Buried with Him, alludes to baptizing by immersion according to the custom of the first church.\"[/ap_toggle][/ap_tab]\r\n\r\n[ap_tab title=\"<strong>How Does this Work?</strong>\"][ap_toggle title=\"What Should I Wear?\" status=\"close\"]Women should wear a dark t-shirt and swim suit/shorts. Men may wear shorts and dark t-shirts, or a swimsuit. Bring a change of clothes, a towel, and a plastic bag for your wet clothes.[/ap_toggle]\r\n\r\n[ap_toggle title=\"Will I Have to Say Anything?\" status=\"close\"]Yes! At the beginning of the service, one of the pastor\'s will briefly explain the meaning of baptism. At that time, they will ask you a question that will indicate you giving a public confession of Jesus Christ.\r\n\r\nYou will wait in the water for your turn to be baptized. The pastor will introduce you, briefly lower you just under the water, and then you can leave the water, dry off, and watch the others. Later you will receive your baptism certificate.\r\n\r\nWe encourage you to invite all your relatives and friends to attend your baptism.[/ap_toggle]\r\n\r\n[ap_toggle title=\"Can my family and friends be baptized together?\" status=\"close\"]Yes! If each person understands fully the meaning of Biblical baptism, and each one has personally placed his/her trust in Christ for salvation, we encourage families to be baptized at the same time. It is a wonderful expression of commitment.\r\n\r\nHowever, it is important to remember that baptism is a personal statement of faith, not a family or group tradition. It is usually not wise to delay your baptism while waiting on others to join you. This puts an undue pressure on them and delays your obedience.\r\n\r\nSalvation is private between you and God. Baptism is public between You, God and the Church.[/ap_toggle][/ap_tab]\r\n[/ap_tab_group]','Baptism','','inherit','open','open','','39-revision-v1','','','2015-08-06 13:54:29','2015-08-06 13:54:29','',39,'http://www.mytwincity.org/2015/08/06/39-revision-v1/',0,'revision','',0),(1502,1,'2015-08-06 14:11:54','2015-08-06 14:11:54','<h5>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Send your comments, questions, or suggestions, but just remember to enter your comments in the space provided below. Tell us how to get in touch with you. Click \"send\" and someone will message you shortly. </strong>[/ap_tagline_box]</h5>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>One more thing...Can you take 10 more seconds and write a simple google church review to reach more people like you? Just click [ap_button button_size=\"ap-small-bttn\" button_url=\"https://www.google.com/webhp?sourceid=chrome-instant&rlz=1C5CHFA_enUS557US557&ion=1&espv=2&ie=UTF-8#q=twin%20city%20baptist%20church&lrd=0x89e3e87e92068881:0x5070c417b503c767,2\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]HERE[/ap_button] and give us your rating of approval!</strong>[/ap_tagline_box]\r\n\r\n[ap_spacing spacing_height=\"10px\"]\r\n\r\n[contact-form-7 id=\"1304\" title=\"Contact Page\"]','Contact','','inherit','open','open','','1301-revision-v1','','','2015-08-06 14:11:54','2015-08-06 14:11:54','',1301,'http://www.mytwincity.org/2015/08/06/1301-revision-v1/',0,'revision','',0),(1503,1,'2015-08-06 14:21:58','2015-08-06 14:21:58','','volunteer-652383','','inherit','open','open','','volunteer-652383','','','2015-08-06 14:21:58','2015-08-06 14:21:58','',0,'http://www.mytwincity.org/wp-content/uploads/2015/08/volunteer-652383.jpg',0,'attachment','image/jpeg',0),(1504,1,'2015-08-06 14:22:02','2015-08-06 14:22:02','','hands-462296_1920','','inherit','open','open','','hands-462296_1920','','','2015-08-06 14:22:02','2015-08-06 14:22:02','',0,'http://www.mytwincity.org/wp-content/uploads/2015/08/hands-462296_1920.jpg',0,'attachment','image/jpeg',0),(1505,1,'2015-08-06 14:28:35','2015-08-06 14:28:35','','clasped-hands-541849_1920','','inherit','open','open','','clasped-hands-541849_1920','','','2015-08-06 14:28:35','2015-08-06 14:28:35','',0,'http://www.mytwincity.org/wp-content/uploads/2015/08/clasped-hands-541849_1920.jpg',0,'attachment','image/jpeg',0),(1506,1,'2015-08-07 15:34:51','2015-08-07 15:34:51','[gcal id=\"1518\"]','Events','','publish','open','closed','','events-2','','','2015-08-07 16:06:31','2015-08-07 16:06:31','',23,'http://www.mytwincity.org/?page_id=1506',1,'page','',0),(1507,1,'2015-08-07 15:34:51','2015-08-07 15:34:51','','Events','','inherit','open','open','','1506-revision-v1','','','2015-08-07 15:34:51','2015-08-07 15:34:51','',1506,'http://www.mytwincity.org/2015/08/07/1506-revision-v1/',0,'revision','',0),(1508,1,'2015-08-07 15:35:02','2015-08-07 15:35:02','<iframe src=\"https://www.google.com/calendar/embed?src=bk6dbeduhvvv79vg7m57fgngqo%40group.calendar.google.com&ctz=America/New_York\" style=\"border: 0\" width=\"800\" height=\"600\" frameborder=\"0\" scrolling=\"no\"></iframe>','Events','','inherit','open','open','','1506-revision-v1','','','2015-08-07 15:35:02','2015-08-07 15:35:02','',1506,'http://www.mytwincity.org/2015/08/07/1506-revision-v1/',0,'revision','',0),(1510,1,'2015-08-07 15:37:25','2015-08-07 15:37:25','<iframe src=\"https://www.google.com/calendar/embed?height=600&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=bk6dbeduhvvv79vg7m57fgngqo%40group.calendar.google.com&amp;color=%23182C57&amp;ctz=America%2FNew_York\" style=\" border-width:0 \" width=\"800\" height=\"600\" frameborder=\"0\" scrolling=\"no\"></iframe>','Events','','inherit','open','open','','1506-revision-v1','','','2015-08-07 15:37:25','2015-08-07 15:37:25','',1506,'http://www.mytwincity.org/2015/08/07/1506-revision-v1/',0,'revision','',0),(1511,1,'2015-08-07 15:52:08','2015-08-07 15:52:08','','Twin City Competitive Volleyball','','publish','closed','closed','','twin-city-competitive-volleyball','','','2015-08-07 15:53:31','2015-08-07 15:53:31','',0,'http://www.mytwincity.org/?post_type=ecwd_event&p=1511',0,'ecwd_event','',0),(1518,1,'2015-08-07 16:02:11','2015-08-07 16:02:11','<div class=\"gce-list-event gce-tooltip-event\">[event-title]</div>\r\n<div>Starts: [start-time]</div>\r\n<div>Ends: [end-date] - [end-time]</div>\r\n[if-location]\r\n<div>Location: [location]</div>\r\n[/if-location]\r\n[if-description]\r\n<div>Description: [description]</div>\r\n[/if-description]\r\n<div>[link newwindow=\"true\"]More details...[/link]</div>','Church Events','','draft','closed','closed','','1518','','','2015-09-03 15:44:38','2015-09-03 15:44:38','',0,'http://www.mytwincity.org/?post_type=gce_feed&p=1518',0,'gce_feed','',0),(1519,1,'2015-08-07 16:06:31','2015-08-07 16:06:31','[gcal id=\"1518\"]','Events','','inherit','open','open','','1506-revision-v1','','','2015-08-07 16:06:31','2015-08-07 16:06:31','',1506,'http://www.mytwincity.org/2015/08/07/1506-revision-v1/',0,'revision','',0),(1520,1,'2015-08-07 16:06:58','2015-08-07 16:06:58',' ','','','publish','open','closed','','1520','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',23,'http://www.mytwincity.org/?p=1520',29,'nav_menu_item','',0),(1523,1,'2015-09-02 15:55:37','2015-09-02 15:55:37','','STRONGER SERMON MAINpsd','','inherit','open','open','','stronger-sermon-mainpsd','','','2015-09-02 15:55:37','2015-09-02 15:55:37','',1293,'http://www.mytwincity.org/wp-content/uploads/2015/07/STRONGER-SERMON-MAINpsd.jpg',0,'attachment','image/jpeg',0),(1524,1,'2015-09-02 15:56:39','2015-09-02 15:56:39','','WCMX Radio','','publish','open','open','','wcmx-radio','','','2015-09-02 15:56:39','2015-09-02 15:56:39','',0,'http://www.mytwincity.org/?p=1524',0,'post','',0),(1525,1,'2015-09-02 15:56:22','2015-09-02 15:56:22','','WCMX WEB_wide','','inherit','open','open','','wcmx-web_wide','','','2015-09-02 15:56:22','2015-09-02 15:56:22','',1524,'http://www.mytwincity.org/wp-content/uploads/2015/09/WCMX-WEB_wide.jpg',0,'attachment','image/jpeg',0),(1526,1,'2015-09-02 15:56:39','2015-09-02 15:56:39','','WCMX Radio','','inherit','open','open','','1524-revision-v1','','','2015-09-02 15:56:39','2015-09-02 15:56:39','',1524,'http://www.mytwincity.org/2015/09/02/1524-revision-v1/',0,'revision','',0),(1527,1,'2015-09-02 16:11:04','2015-09-02 16:11:04','','church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6','','inherit','open','open','','church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6','','','2015-09-03 16:30:50','2015-09-03 16:30:50','',1307,'http://www.mytwincity.org/wp-content/uploads/2015/09/church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6.jpg',0,'attachment','image/jpeg',0),(1528,1,'2015-09-03 14:23:05','2015-09-03 14:23:05','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\">[su_frame align=\"center\"]</a><img class=\"alignnone wp-image-1523 size-large\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/STRONGER-SERMON-MAINpsd-1024x640.jpg\" alt=\"STRONGER SERMON MAINpsd\" width=\"640\" height=\"400\" /><a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/ALQ_WEBwide_wide-1.jpg\">[/su_frame]</a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>CURRENT TEACHING SERIES: ANSWERING LIFE\'S QUESTIONS: THE STUFF WE ALL ASK </strong>\r\n\r\nAll of us have questions about life. It\'s important to know the meaning of life because we can either invest in eternal things or spend it on temporal things.\r\n\r\nSolomon was King David’s son and was a King who answered many of our life questions. He was considered the wisest man who ever lived, but in foolishness tested life to its limits and discovered in the end, it is all vanity.\r\n\r\n“And God gave Solomon wisdom and understanding exceeding much, and largeness of heart, even as the sand that is on the sea shore.\r\n\r\n30 And Solomon\'s wisdom excelled the wisdom of all the children of the east country, and all the wisdom of Egypt.\r\n\r\n31 For he was wiser than all men; than Ethan the Ezrahite, and Heman, and Chalcol, and Darda, the sons of Mahol: and his fame was in all nations round about.” 1 Kings 4:29-31[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"THESE SERIES OF MESSAGES WILL INCLUDE:\" status=\"close\"]\r\n<ul>\r\n <li>JULY 5 LIFE, WHAT’S THE POINT?</li>\r\n <li>JULY 12 AM I REALLY HAPPY?</li>\r\n <li>JULY 19 AM I MAKING THE MOST OF MY TIME?</li>\r\n <li>JULY 26 IS LIFE ABOUT FAIRNESS!</li>\r\n <li>AUGUST 2 WHAT HAPPENS AFTER YOU DIE?</li>\r\n <li>AUGUST 9 LIFE’S GREEN MONSTER</li>\r\n <li>AUGUST 16 WHY WORK SO HARD?</li>\r\n <li>AUGUST 23 HOW CAN WE FACE THE FUTURE?[/ap_toggle][/ap_tagline_box]</li>\r\n</ul>\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Get answers to the questions we all ask about![/su_heading]','Current Teaching Series','','inherit','open','open','','1443-revision-v1','','','2015-09-03 14:23:05','2015-09-03 14:23:05','',1443,'http://www.mytwincity.org/2015/09/03/1443-revision-v1/',0,'revision','',0),(1529,1,'2015-09-03 14:25:18','2015-09-03 14:25:18','<img class=\"aligncenter wp-image-1523 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/STRONGER-SERMON-MAINpsd.jpg\" alt=\"STRONGER SERMON MAINpsd\" width=\"1890\" height=\"1181\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>CURRENT TEACHING SERIES: ANSWERING LIFE\'S QUESTIONS: THE STUFF WE ALL ASK </strong>\r\n\r\nAll of us have questions about life. It\'s important to know the meaning of life because we can either invest in eternal things or spend it on temporal things.\r\n\r\nSolomon was King David’s son and was a King who answered many of our life questions. He was considered the wisest man who ever lived, but in foolishness tested life to its limits and discovered in the end, it is all vanity.\r\n\r\n“And God gave Solomon wisdom and understanding exceeding much, and largeness of heart, even as the sand that is on the sea shore.\r\n\r\n30 And Solomon\'s wisdom excelled the wisdom of all the children of the east country, and all the wisdom of Egypt.\r\n\r\n31 For he was wiser than all men; than Ethan the Ezrahite, and Heman, and Chalcol, and Darda, the sons of Mahol: and his fame was in all nations round about.” 1 Kings 4:29-31[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"THESE SERIES OF MESSAGES WILL INCLUDE:\" status=\"close\"]\r\n<ul>\r\n <li>JULY 5 LIFE, WHAT’S THE POINT?</li>\r\n <li>JULY 12 AM I REALLY HAPPY?</li>\r\n <li>JULY 19 AM I MAKING THE MOST OF MY TIME?</li>\r\n <li>JULY 26 IS LIFE ABOUT FAIRNESS!</li>\r\n <li>AUGUST 2 WHAT HAPPENS AFTER YOU DIE?</li>\r\n <li>AUGUST 9 LIFE’S GREEN MONSTER</li>\r\n <li>AUGUST 16 WHY WORK SO HARD?</li>\r\n <li>AUGUST 23 HOW CAN WE FACE THE FUTURE?[/ap_toggle][/ap_tagline_box]</li>\r\n</ul>\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Get answers to the questions we all ask about![/su_heading]','Current Teaching Series','','inherit','open','open','','1443-revision-v1','','','2015-09-03 14:25:18','2015-09-03 14:25:18','',1443,'http://www.mytwincity.org/2015/09/03/1443-revision-v1/',0,'revision','',0),(1530,1,'2015-09-03 14:29:09','2015-09-03 14:29:09','<img class=\"aligncenter wp-image-1523 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/STRONGER-SERMON-MAINpsd.jpg\" alt=\"STRONGER SERMON MAINpsd\" width=\"1890\" height=\"1181\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>CURRENT TEACHING SERIES: STRONGER: BUILDING YOUR LIFE IN JESUS</strong>\r\n\r\nBusyness and weariness dominate our lives today. We are doing more, working harder, and going faster than ever before, and yet many are physically and spiritually growing weaker. As a result, we lose our strength in Jesus. Let’s regain our strength in the Lord and get stronger in His Word. When we create space for Jesus He will build our lives.\r\n\r\n<em>“He giveth power to the faint; and to them that have no might he increaseth strength.</em>\r\n\r\n<em>30 Even the youths shall faint and be weary, and the young men shall utterly fall:</em>\r\n\r\n<em>31 But they that wait upon the Lord shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; and they shall walk, and not faint.” Isaiah 40:29-31</em>\r\n\r\n<em>“The way of the LORD is strength to the upright: but destruction shall be to the workers of iniquity.” Proverbs 10:29</em>\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"THESE SERIES OF MESSAGES WILL INCLUDE:\" status=\"close\"]\r\n<ul>\r\n <li>Sept 6 Stronger to Know Jesus</li>\r\n <li>Sept 13 Stronger to Obey Jesus</li>\r\n <li>Sept 20 Stronger to Serve Jesus</li>\r\n <li>Sept 27 Stronger to Worship Jesus\r\n\r\n<span style=\"line-height: 1.5;\">[/ap_toggle][/ap_tagline_box]</span></li>\r\n</ul>\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Come and discover how to get stronger and build your life in Jesus.[/su_heading]','Current Teaching Series','','inherit','open','open','','1443-revision-v1','','','2015-09-03 14:29:09','2015-09-03 14:29:09','',1443,'http://www.mytwincity.org/2015/09/03/1443-revision-v1/',0,'revision','',0),(1531,1,'2015-09-03 14:41:17','2015-09-03 14:41:17','','power logo color-01','','inherit','open','open','','power-logo-color-01','','','2015-09-03 14:41:17','2015-09-03 14:41:17','',0,'http://www.mytwincity.org/wp-content/uploads/2015/09/power-logo-color-01.png',0,'attachment','image/png',0),(1532,1,'2015-09-03 14:47:17','2015-09-03 14:47:17','','sermon.net_','','inherit','open','open','','sermon-net_','','','2015-09-03 16:32:13','2015-09-03 16:32:13','',1307,'http://www.mytwincity.org/wp-content/uploads/2015/09/sermon.net_.jpg',0,'attachment','image/jpeg',0),(1533,1,'2015-09-03 15:00:30','2015-09-03 15:00:30','','Facebook','','publish','open','closed','','facebook','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=1533',11,'nav_menu_item','',0),(1534,1,'2015-09-03 15:00:30','2015-09-03 15:00:30','','Twitter','','publish','open','closed','','twitter','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',0,'http://www.mytwincity.org/?p=1534',12,'nav_menu_item','',0),(1535,1,'2015-09-03 15:05:02','2015-09-03 15:05:02','[ap_call_to_action button_text=\"\" button_url=\"\" button_align=\"center\"]Why is church membership important?[/ap_call_to_action]','Belong','','inherit','open','open','','17-revision-v1','','','2015-09-03 15:05:02','2015-09-03 15:05:02','',17,'http://www.mytwincity.org/2015/09/03/17-revision-v1/',0,'revision','',0),(1536,1,'2015-09-03 15:14:05','2015-09-03 15:14:05','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Why is church membership important?[/ap_tagline_box]</h3>\n \n\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]\n\nThe universal Church—the Body of Christ (Romans 12:5)—is composed of all true believers in Christ. Nonbelievers aren’t part of the Body of Christ; therefore, it would seem that God keeps a “membership list” of who is in the Church. We see just such a list in Revelations 20:12, the Lamb’s book of life. If the universal Church has a “membership roll” in heaven, it would be appropriate for local churches to maintain a list of members on earth.\n\n“And the Lord added to them day by day those that were being saved” (Acts 2:47). This verse indicates that salvation is a prerequisite for being “added” to the church. Churches today who require salvation before membership are simply following the Biblical model. See also 2 Corinthians 6:14-18.\n\nMembership in the local church is strongly implied in Paul’s instructions to the Corinthians to “put away from among yourselves that wicked person” (1 Corinthians 5:13).\n\nThe preceding verse speaks of those “without” and “within” the local church. Such language is meaningless without a clearly defined group of members.\n\nWhy is church membership important? Church membership is a way of officially identifying yourself with a local body of believers. Church membership is a statement that you are in agreement with that local church and are a representative of it.\n\n[/ap_tagline_box]\n<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]We want to...[/ap_tagline_box]</h3>\n \n\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"<strong>Help YOU Belong:</strong>\" status=\"close\"]In order to belong to the Church you have to come to the foot of the cross and be saved, baptized and then added to the church. (Acts 2:41-47) If you had not asked Jesus Christ into your heart as Lord and Savior, one Biblically is only an attender but not spiritually part of the local chruch. We desire that for you![/ap_toggle]\n\n[ap_toggle title=\"<strong>Help YOU Connect:</strong>\" status=\"close\"]You must then connect to a small group, where you will grow with other people in your age group and stage of life. If Jesus had a small group we need one to![/ap_toggle]\n\n[ap_toggle title=\"<strong>Help YOU Serve:</strong>\" status=\"close\"]You will naturally begin to serve others![/ap_toggle]\n\n[ap_toggle title=\"<strong>Help YOU Bring:</strong>\" status=\"close\"]Because of your life changing, it will be natural for you to begin to talk about the things that Jesus has done in your life. Naturally, you will begin to bring people along with you.[/ap_toggle]\n\n \n\n[/ap_tagline_box]','Belong','','inherit','open','open','','17-autosave-v1','','','2015-09-03 15:14:05','2015-09-03 15:14:05','',17,'http://www.mytwincity.org/2015/09/03/17-autosave-v1/',0,'revision','',0),(1537,1,'2015-09-03 15:06:25','2015-09-03 15:06:25','<h3>[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Why is church membership important?[/ap_tagline_box]</h3>','Belong','','inherit','open','open','','17-revision-v1','','','2015-09-03 15:06:25','2015-09-03 15:06:25','',17,'http://www.mytwincity.org/2015/09/03/17-revision-v1/',0,'revision','',0),(1538,1,'2015-09-03 15:06:50','2015-09-03 15:06:50','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Why is church membership important?[/ap_tagline_box]</h3>','Belong','','inherit','open','open','','17-revision-v1','','','2015-09-03 15:06:50','2015-09-03 15:06:50','',17,'http://www.mytwincity.org/2015/09/03/17-revision-v1/',0,'revision','',0),(1539,1,'2015-09-03 15:07:47','2015-09-03 15:07:47','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Why is church membership important?[/ap_tagline_box]</h3>\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n\r\nThe universal Church—the Body of Christ (Romans 12:5)—is composed of all true believers in Christ. Nonbelievers aren’t part of the Body of Christ; therefore, it would seem that God keeps a “membership list” of who is in the Church. We see just such a list in Revelations 20:12, the Lamb’s book of life. If the universal Church has a “membership roll” in heaven, it would be appropriate for local churches to maintain a list of members on earth.\r\n\r\n“And the Lord added to them day by day those that were being saved” (Acts 2:47). This verse indicates that salvation is a prerequisite for being “added” to the church. Churches today who require salvation before membership are simply following the Biblical model. See also 2 Corinthians 6:14-18.\r\n\r\nMembership in the local church is strongly implied in Paul’s instructions to the Corinthians to “put away from among yourselves that wicked person” (1 Corinthians 5:13).\r\n\r\nThe preceding verse speaks of those “without” and “within” the local church. Such language is meaningless without a clearly defined group of members.\r\n\r\nWhy is church membership important? Church membership is a way of officially identifying yourself with a local body of believers. Church membership is a statement that you are in agreement with that local church and are a representative of it.\r\n\r\n[/ap_tagline_box]','Belong','','inherit','open','open','','17-revision-v1','','','2015-09-03 15:07:47','2015-09-03 15:07:47','',17,'http://www.mytwincity.org/2015/09/03/17-revision-v1/',0,'revision','',0),(1540,1,'2015-09-03 15:15:01','2015-09-03 15:15:01','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Why is church membership important?[/ap_tagline_box]</h3>\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n\r\nThe universal Church—the Body of Christ (Romans 12:5)—is composed of all true believers in Christ. Nonbelievers aren’t part of the Body of Christ; therefore, it would seem that God keeps a “membership list” of who is in the Church. We see just such a list in Revelations 20:12, the Lamb’s book of life. If the universal Church has a “membership roll” in heaven, it would be appropriate for local churches to maintain a list of members on earth.\r\n\r\n“And the Lord added to them day by day those that were being saved” (Acts 2:47). This verse indicates that salvation is a prerequisite for being “added” to the church. Churches today who require salvation before membership are simply following the Biblical model. See also 2 Corinthians 6:14-18.\r\n\r\nMembership in the local church is strongly implied in Paul’s instructions to the Corinthians to “put away from among yourselves that wicked person” (1 Corinthians 5:13).\r\n\r\nThe preceding verse speaks of those “without” and “within” the local church. Such language is meaningless without a clearly defined group of members.\r\n\r\nWhy is church membership important? Church membership is a way of officially identifying yourself with a local body of believers. Church membership is a statement that you are in agreement with that local church and are a representative of it.\r\n\r\n[/ap_tagline_box]\r\n<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]We want to...[/ap_tagline_box]</h3>\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"<strong>Help YOU Belong:</strong>\" status=\"close\"]In order to belong to the Church you have to come to the foot of the cross and be saved, baptized and then added to the church. (Acts 2:41-47) If you had not asked Jesus Christ into your heart as Lord and Savior, one Biblically is only an attender but not spiritually part of the local chruch. We desire that for you![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Connect:</strong>\" status=\"close\"]You must then connect to a small group, where you will grow with other people in your age group and stage of life. If Jesus had a small group we need one to![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Serve:</strong>\" status=\"close\"]You will naturally begin to serve others![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Bring:</strong>\" status=\"close\"]Because of your life changing, it will be natural for you to begin to talk about the things that Jesus has done in your life. Naturally, you will begin to bring people along with you.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Worship:</strong>\" status=\"close\"]Your life will want to give praise to God because of everything he has done for you in all areas of your life. (John 4:24)[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n<h4>[ap_tagline_box tag_box_style=\"ap-bg-box\"]\"But speaking the truth in love, may grow up into him in all things, which is the head, even Christ:\" - Eph 4:15[/ap_tagline_box]</h4>','Belong','','inherit','open','open','','17-revision-v1','','','2015-09-03 15:15:01','2015-09-03 15:15:01','',17,'http://www.mytwincity.org/2015/09/03/17-revision-v1/',0,'revision','',0),(1541,1,'2015-09-03 15:15:25','2015-09-03 15:15:25','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Why is church membership important?[/ap_tagline_box]</h3>\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n\r\nThe universal Church—the Body of Christ (Romans 12:5)—is composed of all true believers in Christ. Nonbelievers aren’t part of the Body of Christ; therefore, it would seem that God keeps a “membership list” of who is in the Church. We see just such a list in Revelations 20:12, the Lamb’s book of life. If the universal Church has a “membership roll” in heaven, it would be appropriate for local churches to maintain a list of members on earth.\r\n\r\n“And the Lord added to them day by day those that were being saved” (Acts 2:47). This verse indicates that salvation is a prerequisite for being “added” to the church. Churches today who require salvation before membership are simply following the Biblical model. See also 2 Corinthians 6:14-18.\r\n\r\nMembership in the local church is strongly implied in Paul’s instructions to the Corinthians to “put away from among yourselves that wicked person” (1 Corinthians 5:13).\r\n\r\nThe preceding verse speaks of those “without” and “within” the local church. Such language is meaningless without a clearly defined group of members.\r\n\r\nWhy is church membership important? Church membership is a way of officially identifying yourself with a local body of believers. Church membership is a statement that you are in agreement with that local church and are a representative of it.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]We want to...[/ap_tagline_box]</h3>\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"<strong>Help YOU Belong:</strong>\" status=\"close\"]In order to belong to the Church you have to come to the foot of the cross and be saved, baptized and then added to the church. (Acts 2:41-47) If you had not asked Jesus Christ into your heart as Lord and Savior, one Biblically is only an attender but not spiritually part of the local chruch. We desire that for you![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Connect:</strong>\" status=\"close\"]You must then connect to a small group, where you will grow with other people in your age group and stage of life. If Jesus had a small group we need one to![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Serve:</strong>\" status=\"close\"]You will naturally begin to serve others![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Bring:</strong>\" status=\"close\"]Because of your life changing, it will be natural for you to begin to talk about the things that Jesus has done in your life. Naturally, you will begin to bring people along with you.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Worship:</strong>\" status=\"close\"]Your life will want to give praise to God because of everything he has done for you in all areas of your life. (John 4:24)[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n<h4>[ap_tagline_box tag_box_style=\"ap-bg-box\"]\"But speaking the truth in love, may grow up into him in all things, which is the head, even Christ:\" - Eph 4:15[/ap_tagline_box]</h4>','Belong','','inherit','open','open','','17-revision-v1','','','2015-09-03 15:15:25','2015-09-03 15:15:25','',17,'http://www.mytwincity.org/2015/09/03/17-revision-v1/',0,'revision','',0),(1542,1,'2015-09-03 15:15:49','2015-09-03 15:15:49','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Why is church membership important?[/ap_tagline_box]</h3>\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n\r\nThe universal Church—the Body of Christ (Romans 12:5)—is composed of all true believers in Christ. Nonbelievers aren’t part of the Body of Christ; therefore, it would seem that God keeps a “membership list” of who is in the Church. We see just such a list in Revelations 20:12, the Lamb’s book of life. If the universal Church has a “membership roll” in heaven, it would be appropriate for local churches to maintain a list of members on earth.\r\n\r\n“And the Lord added to them day by day those that were being saved” (Acts 2:47). This verse indicates that salvation is a prerequisite for being “added” to the church. Churches today who require salvation before membership are simply following the Biblical model. See also 2 Corinthians 6:14-18.\r\n\r\nMembership in the local church is strongly implied in Paul’s instructions to the Corinthians to “put away from among yourselves that wicked person” (1 Corinthians 5:13).\r\n\r\nThe preceding verse speaks of those “without” and “within” the local church. Such language is meaningless without a clearly defined group of members.\r\n\r\nWhy is church membership important? Church membership is a way of officially identifying yourself with a local body of believers. Church membership is a statement that you are in agreement with that local church and are a representative of it.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]We want to...[/ap_tagline_box]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"<strong>Help YOU Belong:</strong>\" status=\"close\"]In order to belong to the Church you have to come to the foot of the cross and be saved, baptized and then added to the church. (Acts 2:41-47) If you had not asked Jesus Christ into your heart as Lord and Savior, one Biblically is only an attender but not spiritually part of the local chruch. We desire that for you![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Connect:</strong>\" status=\"close\"]You must then connect to a small group, where you will grow with other people in your age group and stage of life. If Jesus had a small group we need one to![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Serve:</strong>\" status=\"close\"]You will naturally begin to serve others![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Bring:</strong>\" status=\"close\"]Because of your life changing, it will be natural for you to begin to talk about the things that Jesus has done in your life. Naturally, you will begin to bring people along with you.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Worship:</strong>\" status=\"close\"]Your life will want to give praise to God because of everything he has done for you in all areas of your life. (John 4:24)[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n<h4>[ap_tagline_box tag_box_style=\"ap-bg-box\"]\"But speaking the truth in love, may grow up into him in all things, which is the head, even Christ:\" - Eph 4:15[/ap_tagline_box]</h4>','Belong','','inherit','open','open','','17-revision-v1','','','2015-09-03 15:15:49','2015-09-03 15:15:49','',17,'http://www.mytwincity.org/2015/09/03/17-revision-v1/',0,'revision','',0),(1543,1,'2015-09-03 15:16:19','2015-09-03 15:16:19','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Why is church membership important?[/ap_tagline_box]</h3>\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n\r\nThe universal Church—the Body of Christ (Romans 12:5)—is composed of all true believers in Christ. Nonbelievers aren’t part of the Body of Christ; therefore, it would seem that God keeps a “membership list” of who is in the Church. We see just such a list in Revelations 20:12, the Lamb’s book of life. If the universal Church has a “membership roll” in heaven, it would be appropriate for local churches to maintain a list of members on earth.\r\n\r\n“And the Lord added to them day by day those that were being saved” (Acts 2:47). This verse indicates that salvation is a prerequisite for being “added” to the church. Churches today who require salvation before membership are simply following the Biblical model. See also 2 Corinthians 6:14-18.\r\n\r\nMembership in the local church is strongly implied in Paul’s instructions to the Corinthians to “put away from among yourselves that wicked person” (1 Corinthians 5:13).\r\n\r\nThe preceding verse speaks of those “without” and “within” the local church. Such language is meaningless without a clearly defined group of members.\r\n\r\nWhy is church membership important? Church membership is a way of officially identifying yourself with a local body of believers. Church membership is a statement that you are in agreement with that local church and are a representative of it.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]We want to...[/ap_tagline_box]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"<strong>Help YOU Belong:</strong>\" status=\"close\"]In order to belong to the Church you have to come to the foot of the cross and be saved, baptized and then added to the church. (Acts 2:41-47) If you had not asked Jesus Christ into your heart as Lord and Savior, one Biblically is only an attender but not spiritually part of the local chruch. We desire that for you![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Connect:</strong>\" status=\"close\"]You must then connect to a small group, where you will grow with other people in your age group and stage of life. If Jesus had a small group we need one to![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Serve:</strong>\" status=\"close\"]You will naturally begin to serve others![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Bring:</strong>\" status=\"close\"]Because of your life changing, it will be natural for you to begin to talk about the things that Jesus has done in your life. Naturally, you will begin to bring people along with you.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Worship:</strong>\" status=\"close\"]Your life will want to give praise to God because of everything he has done for you in all areas of your life. (John 4:24)[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n<h4 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-bg-box\"]\"But speaking the truth in love, may grow up into him in all things, which is the head, even Christ:\" - Eph 4:15[/ap_tagline_box]</h4>','Belong','','inherit','open','open','','17-revision-v1','','','2015-09-03 15:16:19','2015-09-03 15:16:19','',17,'http://www.mytwincity.org/2015/09/03/17-revision-v1/',0,'revision','',0),(1544,1,'2015-09-03 15:16:39','2015-09-03 15:16:39','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Why is church membership important?[/ap_tagline_box]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n\r\nThe universal Church—the Body of Christ (Romans 12:5)—is composed of all true believers in Christ. Nonbelievers aren’t part of the Body of Christ; therefore, it would seem that God keeps a “membership list” of who is in the Church. We see just such a list in Revelations 20:12, the Lamb’s book of life. If the universal Church has a “membership roll” in heaven, it would be appropriate for local churches to maintain a list of members on earth.\r\n\r\n“And the Lord added to them day by day those that were being saved” (Acts 2:47). This verse indicates that salvation is a prerequisite for being “added” to the church. Churches today who require salvation before membership are simply following the Biblical model. See also 2 Corinthians 6:14-18.\r\n\r\nMembership in the local church is strongly implied in Paul’s instructions to the Corinthians to “put away from among yourselves that wicked person” (1 Corinthians 5:13).\r\n\r\nThe preceding verse speaks of those “without” and “within” the local church. Such language is meaningless without a clearly defined group of members.\r\n\r\nWhy is church membership important? Church membership is a way of officially identifying yourself with a local body of believers. Church membership is a statement that you are in agreement with that local church and are a representative of it.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]We want to...[/ap_tagline_box]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"<strong>Help YOU Belong:</strong>\" status=\"close\"]In order to belong to the Church you have to come to the foot of the cross and be saved, baptized and then added to the church. (Acts 2:41-47) If you had not asked Jesus Christ into your heart as Lord and Savior, one Biblically is only an attender but not spiritually part of the local chruch. We desire that for you![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Connect:</strong>\" status=\"close\"]You must then connect to a small group, where you will grow with other people in your age group and stage of life. If Jesus had a small group we need one to![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Serve:</strong>\" status=\"close\"]You will naturally begin to serve others![/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Bring:</strong>\" status=\"close\"]Because of your life changing, it will be natural for you to begin to talk about the things that Jesus has done in your life. Naturally, you will begin to bring people along with you.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Help YOU Worship:</strong>\" status=\"close\"]Your life will want to give praise to God because of everything he has done for you in all areas of your life. (John 4:24)[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n<h4 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-bg-box\"]\"But speaking the truth in love, may grow up into him in all things, which is the head, even Christ:\" - Eph 4:15[/ap_tagline_box]</h4>','Belong','','inherit','open','open','','17-revision-v1','','','2015-09-03 15:16:39','2015-09-03 15:16:39','',17,'http://www.mytwincity.org/2015/09/03/17-revision-v1/',0,'revision','',0),(1545,1,'2015-09-03 15:42:05','2015-09-03 15:42:05','<h3>Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.</h3>\n \n\n<i class=\"fa fa-rocket\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/city-kids/\">City Kids</a> <i class=\"fa fa-tachometer\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/city-teens/\">City Teens</a> <i class=\"fa fa-university\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/c-university/\">City University</a> <i class=\"fa fa-coffee\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/young-adults/\">City Life</a> <i class=\"fa fa-male\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/men/\">Men\'s Ministry</a> <i class=\"fa fa-female\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/women/\">Women\'s Ministry</a> <i class=\"fa fa-compass\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/city-seniors/\">Senior Citizen\'s Ministry</a> <i class=\"fa fa-graduation-cap\"></i> <a class=\"bttn\" href=\"http://www.twincitychristian.com/\">Christian School</a> <i class=\"fa fa-rocket\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/city-kids/\">City Kids</a>','Connect','','inherit','open','open','','19-autosave-v1','','','2015-09-03 15:42:05','2015-09-03 15:42:05','',19,'http://www.mytwincity.org/2015/09/03/19-autosave-v1/',0,'revision','',0),(1546,1,'2015-09-03 15:31:25','2015-09-03 15:31:25','<h3>Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.</h3>\r\n \r\n\r\n \r\n<h5 class=\"ap-icon-text-title\">City Kids</h5>\r\n ','Connect','','inherit','open','open','','19-revision-v1','','','2015-09-03 15:31:25','2015-09-03 15:31:25','',19,'http://www.mytwincity.org/2015/09/03/19-revision-v1/',0,'revision','',0),(1547,1,'2015-09-03 15:32:59','2015-09-03 15:32:59','<h3>Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.</h3>\r\n \r\n\r\n<i class=\"fa fa-rocket\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/city-kids/\">City Kids</a>','Connect','','inherit','open','open','','19-revision-v1','','','2015-09-03 15:32:59','2015-09-03 15:32:59','',19,'http://www.mytwincity.org/2015/09/03/19-revision-v1/',0,'revision','',0),(1548,1,'2015-09-03 15:42:41','2015-09-03 15:42:41','<h3>Connecting is the greatest way to be involved within a local church. Many people walk through our doors and it is very important that they connect with one another.</h3>\r\n \r\n\r\n<i class=\"fa fa-rocket\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/city-kids/\">City Kids</a> <i class=\"fa fa-tachometer\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/city-teens/\">City Teens</a> <i class=\"fa fa-university\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/c-university/\">City University</a> <i class=\"fa fa-coffee\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/young-adults/\">City Life</a> <i class=\"fa fa-male\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/men/\">Men\'s Ministry</a> <i class=\"fa fa-female\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/women/\">Women\'s Ministry</a> <i class=\"fa fa-compass\"></i> <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/city-seniors/\">Senior Citizen\'s Ministry</a> <i class=\"fa fa-graduation-cap\"></i> <a class=\"bttn\" href=\"http://www.twincitychristian.com/\">Christian School</a> <i class=\"fa fa-music\"></i> <a class=\"bttn\" href=\"http://wcmxradio.com/\">\"The Power\" AM 1000 WCMX</a>','Connect','','inherit','open','open','','19-revision-v1','','','2015-09-03 15:42:41','2015-09-03 15:42:41','',19,'http://www.mytwincity.org/2015/09/03/19-revision-v1/',0,'revision','',0),(1549,1,'2015-09-03 16:13:02','2015-09-03 16:13:02','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]HEY I\'M NEW HERE!![/ap_tagline_box]</h3>\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]It is SCARY looking for a new church! We understand that!! Whether you\'ve attended church your whole life or never stepped foot in one before, we know it’s not easy visiting a church for the first time. Where do I go? Where should I park? How should I dress? How long does it last? What about my kids?\n\nWe want your first experience at TCB to be relaxed, and for you and your family to enjoy the service. So, here is some information to help you know what to expect: [/ap_tagline_box]\n\n[ap_tab_group type=\"vertical\"]\n[ap_tab title=\"<strong>WHAT TIME IS THE SERVICE?</strong>\"]TCB meets every Sunday at 11:00 am, and the service lasts no longer than 75 minutes. We encourage you to arrive 10-15 minutes early, especially if you have young children. This will give you plenty of time to get your children checked into City Kids and for you to find a good seat in the auditorium prior to the service starting. [/ap_tab]\n[ap_tab title=\"<strong>WHERE IS TCB?</strong>\"]TCB meets at 194 Electric Ave Lunenburg, MA 01462 Click Here to map it!![/ap_tab]\n[ap_tab title=\"<strong>WHAT SHOULD I DO WHEN I GET THERE?</strong>\"]\n\nWhen you arrive, our friendly Greeting Team will help direct you. If you have children ages birth through 5th grade, then just follow the signs to our City Kids check-in area to the left of the main theater entrance.\n\nYou will receive a program and a pen on your way into the service. This program will include message notes, important information, and a connection card, which you will turn in at the end of the service.\n\nAnd on your way in, if you have questions, just look for one of our courteous volunteers in a City Kids t-shirts. They’re easy to spot and always happy to help! [/ap_tab]\n[ap_tab title=\"<strong>HOW SHOULD I DRESS?</strong>\"]We care more about you than with what you wear, so the dress is usally business casual. At TCB, you will find many people wearing anything from jeans, shorts, suites and sandals. Dress how you are most comfortable, and you will fit right in – shorts and suits are equally welcomed and by the way in the summer, our AC is awesome!! With woman we say modest..I think you get it![/ap_tab]\n[ap_tab title=\"<strong>WHAT ARE THE MESSAGES LIKE?</strong>\"]Our goal every Sunday is clarity!!! We teach the timeless truths of the Bible in a way that is engaging and applicable to your life through teaching series. These might be anywhere from 4-10 weeks in nature wrapped around one big idea. You will find that the messages are practical, easy to understand, and grounded in Scripture. We want to help you on Monday\'s and not just Sunday\'s.[/ap_tab]\n[ap_tab title=\"<strong>WHAT ABOUT THE MUSIC?</strong>\"]The music at TCB strives to be uplifting! TCB features a live ensemble/band with praise singers every week.[/ap_tab]\n[ap_tab title=\"<strong>WHAT\'S AVAILABLE FOR MY KIDS?</strong>\"]\n\nTCB offers a safe and exciting children’s program during the worship service for your children, birth to 6th grade.\n\nAs you approach the service, you will see our City Kids check-in area just to the right of the main lobby (just follow the signs). There you will meet one of our fully-trained and background-checked team members who will help you check your child in.\n\nDuring check-in, you will receive a receipt sticker, which you will need to pick up your child after the service. For the security of your children, it is important that you keep track of your receipt sticker. This helps us know that you are the person authorized to pick up your child.\n\nCity Kids is staffed solely by members in good standing at TCB, who have been background checked and receive ongoing training to make your children’s experience the best it can be!\n\nDuring City Kids, your children will experience fun Bible lessons, activities and games to help them build a spiritual foundation. Simply stated: we want this to be the best hour of your child’s week![/ap_tab]\n[ap_tab title=\"<strong>WHAT\'S AVAILABLE FOR STUDENTS?</strong>\"]At TCB, we have a great group of teens who meet together as a Life Groups during the week. The relevent music, casual dress, and relaxed atmosphere during Sunday nights called REfuel makes for the perfect place for teens to worship God and grow in their faith. For this reason, we encourage all teens to participate and serve in the main Sunday service. [/ap_tab]\n[ap_tab title=\"<strong>WHAT\'S AVAILABLE DURING THE WEEK?</strong>\"]\n\n<big><strong>Visit Us:</strong></big>\n\n<big><strong>SUNDAY MORNINGS: </strong>\n9:00 AM PRAYER\n10:00 AM LIFEGROUPS\n11:00 AM MAIN WORSHIP SERVICE</big>\n\n<big><strong>SUNDAY NIGHTS </strong>5:00 PM\nLIFE UNIVERSITY FAMILY CLASS ELECTIVES\n\n<strong>WEDNESDAY NIGHT</strong> 6:30 PM\nAWANA - PRAYER SERVICE </big>\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td><big><a href=\"http://goo.gl/maps/K2o4v\"><strong>DIRECTIONS:</strong></a></big></td>\n<td><big>194 Electric Ave </big>\nLunenburg, MA 01462</td>\n</tr>\n<tr>\n<td><big><strong>Contact Us:</strong></big></td>\n<td><big>(P) 978-582-4901</big></td>\n</tr>\n<tr>\n<td><big><a href=\"http://Pastor@twincitybaptist.com/\">Pastor@Twincitybaptist.com</a></big></td>\n<td><big>(F) 978-582-4978</big></td>\n</tr>\n</tbody>\n</table>\n[/ap_tab]\n[/ap_tab_group]','New','','inherit','open','open','','15-autosave-v1','','','2015-09-03 16:13:02','2015-09-03 16:13:02','',15,'http://www.mytwincity.org/2015/09/03/15-autosave-v1/',0,'revision','',0),(1550,1,'2015-09-03 16:05:03','2015-09-03 16:05:03','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]HEY I\'M NEW HERE!![/ap_tagline_box]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]It is SCARY looking for a new church? We understand that!! Whether you\'ve attended church your whole life or never stepped foot in one before, we know it’s not easy visiting a church for the first time. Where do I go? Where should I park? How should I dress? How long does it last? What about my kids?\r\n\r\nWe want your first experience at TCB to be relaxed, and for you and your family to enjoy the service. So, here is some information to help you know what to expect: [/ap_tagline_box]','New','','inherit','open','open','','15-revision-v1','','','2015-09-03 16:05:03','2015-09-03 16:05:03','',15,'http://www.mytwincity.org/2015/09/03/15-revision-v1/',0,'revision','',0),(1551,1,'2015-09-03 16:06:27','2015-09-03 16:06:27','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]HEY I\'M NEW HERE!![/ap_tagline_box]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]It is SCARY looking for a new church! We understand that!! Whether you\'ve attended church your whole life or never stepped foot in one before, we know it’s not easy visiting a church for the first time. Where do I go? Where should I park? How should I dress? How long does it last? What about my kids?\r\n\r\nWe want your first experience at TCB to be relaxed, and for you and your family to enjoy the service. So, here is some information to help you know what to expect: [/ap_tagline_box]','New','','inherit','open','open','','15-revision-v1','','','2015-09-03 16:06:27','2015-09-03 16:06:27','',15,'http://www.mytwincity.org/2015/09/03/15-revision-v1/',0,'revision','',0),(1552,1,'2015-09-03 16:13:21','2015-09-03 16:13:21','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]HEY I\'M NEW HERE!![/ap_tagline_box]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]It is SCARY looking for a new church! We understand that!! Whether you\'ve attended church your whole life or never stepped foot in one before, we know it’s not easy visiting a church for the first time. Where do I go? Where should I park? How should I dress? How long does it last? What about my kids?\r\n\r\nWe want your first experience at TCB to be relaxed, and for you and your family to enjoy the service. So, here is some information to help you know what to expect: [/ap_tagline_box]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>WHAT TIME IS THE SERVICE?</strong>\"]TCB meets every Sunday at 11:00 am, and the service lasts no longer than 75 minutes. We encourage you to arrive 10-15 minutes early, especially if you have young children. This will give you plenty of time to get your children checked into City Kids and for you to find a good seat in the auditorium prior to the service starting. [/ap_tab]\r\n[ap_tab title=\"<strong>WHERE IS TCB?</strong>\"]TCB meets at 194 Electric Ave Lunenburg, MA 01462 Click Here to map it!![/ap_tab]\r\n[ap_tab title=\"<strong>WHAT SHOULD I DO WHEN I GET THERE?</strong>\"]\r\n\r\nWhen you arrive, our friendly Greeting Team will help direct you. If you have children ages birth through 5th grade, then just follow the signs to our City Kids check-in area to the left of the main theater entrance.\r\n\r\nYou will receive a program and a pen on your way into the service. This program will include message notes, important information, and a connection card, which you will turn in at the end of the service.\r\n\r\nAnd on your way in, if you have questions, just look for one of our courteous volunteers in a City Kids t-shirts. They’re easy to spot and always happy to help! [/ap_tab]\r\n[ap_tab title=\"<strong>HOW SHOULD I DRESS?</strong>\"]We care more about you than with what you wear, so the dress is usally business casual. At TCB, you will find many people wearing anything from jeans, shorts, suites and sandals. Dress how you are most comfortable, and you will fit right in – shorts and suits are equally welcomed and by the way in the summer, our AC is awesome!! With woman we say modest..I think you get it![/ap_tab]\r\n[ap_tab title=\"<strong>WHAT ARE THE MESSAGES LIKE?</strong>\"]Our goal every Sunday is clarity!!! We teach the timeless truths of the Bible in a way that is engaging and applicable to your life through teaching series. These might be anywhere from 4-10 weeks in nature wrapped around one big idea. You will find that the messages are practical, easy to understand, and grounded in Scripture. We want to help you on Monday\'s and not just Sunday\'s.[/ap_tab]\r\n[ap_tab title=\"<strong>WHAT ABOUT THE MUSIC?</strong>\"]The music at TCB strives to be uplifting! TCB features a live ensemble/band with praise singers every week.[/ap_tab]\r\n[ap_tab title=\"<strong>WHAT\'S AVAILABLE FOR MY KIDS?</strong>\"]\r\n\r\nTCB offers a safe and exciting children’s program during the worship service for your children, birth to 6th grade.\r\n\r\nAs you approach the service, you will see our City Kids check-in area just to the right of the main lobby (just follow the signs). There you will meet one of our fully-trained and background-checked team members who will help you check your child in.\r\n\r\nDuring check-in, you will receive a receipt sticker, which you will need to pick up your child after the service. For the security of your children, it is important that you keep track of your receipt sticker. This helps us know that you are the person authorized to pick up your child.\r\n\r\nCity Kids is staffed solely by members in good standing at TCB, who have been background checked and receive ongoing training to make your children’s experience the best it can be!\r\n\r\nDuring City Kids, your children will experience fun Bible lessons, activities and games to help them build a spiritual foundation. Simply stated: we want this to be the best hour of your child’s week![/ap_tab]\r\n[ap_tab title=\"<strong>WHAT\'S AVAILABLE FOR STUDENTS?</strong>\"]At TCB, we have a great group of teens who meet together as a Life Groups during the week. The relevent music, casual dress, and relaxed atmosphere during Sunday nights called REfuel makes for the perfect place for teens to worship God and grow in their faith. For this reason, we encourage all teens to participate and serve in the main Sunday service. [/ap_tab]\r\n[ap_tab title=\"<strong>WHAT\'S AVAILABLE DURING THE WEEK?</strong>\"]\r\n\r\n<big><strong>Visit Us:</strong></big>\r\n\r\n<big><strong>SUNDAY MORNINGS: </strong>\r\n9:00 AM PRAYER\r\n10:00 AM LIFEGROUPS\r\n11:00 AM MAIN WORSHIP SERVICE</big>\r\n\r\n<big><strong>SUNDAY NIGHTS </strong>5:00 PM\r\nLIFE UNIVERSITY FAMILY CLASS ELECTIVES\r\n\r\n<strong>WEDNESDAY NIGHT</strong> 6:30 PM\r\nAWANA - PRAYER SERVICE </big>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><big><a href=\"http://goo.gl/maps/K2o4v\"><strong>DIRECTIONS:</strong></a></big></td>\r\n<td><big>194 Electric Ave </big>\r\nLunenburg, MA 01462</td>\r\n</tr>\r\n<tr>\r\n<td><big><strong>Contact Us:</strong></big></td>\r\n<td><big>(P) 978-582-4901</big></td>\r\n</tr>\r\n<tr>\r\n<td><big><a href=\"http://Pastor@twincitybaptist.com/\">Pastor@Twincitybaptist.com</a></big></td>\r\n<td><big>(F) 978-582-4978</big></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ap_tab]\r\n[/ap_tab_group]','New','','inherit','open','open','','15-revision-v1','','','2015-09-03 16:13:21','2015-09-03 16:13:21','',15,'http://www.mytwincity.org/2015/09/03/15-revision-v1/',0,'revision','',0),(1553,1,'2015-09-03 16:15:27','2015-09-03 16:15:27','<h3 style=\"text-align: center;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]HEY I\'M NEW HERE!![/ap_tagline_box]</h3>\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]It is SCARY looking for a new church! We understand that!! Whether you\'ve attended church your whole life or never stepped foot in one before, we know it’s not easy visiting a church for the first time. Where do I go? Where should I park? How should I dress? How long does it last? What about my kids?\r\n\r\nWe want your first experience at TCB to be relaxed, and for you and your family to enjoy the service. So, here is some information to help you know what to expect: [/ap_tagline_box]\r\n\r\n[ap_tab_group type=\"horizontal\"]\r\n[ap_tab title=\"<strong>WHAT TIME IS THE SERVICE?</strong>\"]TCB meets every Sunday at 11:00 am, and the service lasts no longer than 75 minutes. We encourage you to arrive 10-15 minutes early, especially if you have young children. This will give you plenty of time to get your children checked into City Kids and for you to find a good seat in the auditorium prior to the service starting. [/ap_tab]\r\n[ap_tab title=\"<strong>WHERE IS TCB?</strong>\"]TCB meets at 194 Electric Ave Lunenburg, MA 01462 Click Here to map it!![/ap_tab]\r\n[ap_tab title=\"<strong>WHAT SHOULD I DO WHEN I GET THERE?</strong>\"]\r\n\r\nWhen you arrive, our friendly Greeting Team will help direct you. If you have children ages birth through 5th grade, then just follow the signs to our City Kids check-in area to the left of the main theater entrance.\r\n\r\nYou will receive a program and a pen on your way into the service. This program will include message notes, important information, and a connection card, which you will turn in at the end of the service.\r\n\r\nAnd on your way in, if you have questions, just look for one of our courteous volunteers in a City Kids t-shirts. They’re easy to spot and always happy to help! [/ap_tab]\r\n[ap_tab title=\"<strong>HOW SHOULD I DRESS?</strong>\"]We care more about you than with what you wear, so the dress is usally business casual. At TCB, you will find many people wearing anything from jeans, shorts, suites and sandals. Dress how you are most comfortable, and you will fit right in – shorts and suits are equally welcomed and by the way in the summer, our AC is awesome!! With woman we say modest..I think you get it![/ap_tab]\r\n[ap_tab title=\"<strong>WHAT ARE THE MESSAGES LIKE?</strong>\"]Our goal every Sunday is clarity!!! We teach the timeless truths of the Bible in a way that is engaging and applicable to your life through teaching series. These might be anywhere from 4-10 weeks in nature wrapped around one big idea. You will find that the messages are practical, easy to understand, and grounded in Scripture. We want to help you on Monday\'s and not just Sunday\'s.[/ap_tab]\r\n[ap_tab title=\"<strong>WHAT ABOUT THE MUSIC?</strong>\"]The music at TCB strives to be uplifting! TCB features a live ensemble/band with praise singers every week.[/ap_tab]\r\n[ap_tab title=\"<strong>WHAT\'S AVAILABLE FOR MY KIDS?</strong>\"]\r\n\r\nTCB offers a safe and exciting children’s program during the worship service for your children, birth to 6th grade.\r\n\r\nAs you approach the service, you will see our City Kids check-in area just to the right of the main lobby (just follow the signs). There you will meet one of our fully-trained and background-checked team members who will help you check your child in.\r\n\r\nDuring check-in, you will receive a receipt sticker, which you will need to pick up your child after the service. For the security of your children, it is important that you keep track of your receipt sticker. This helps us know that you are the person authorized to pick up your child.\r\n\r\nCity Kids is staffed solely by members in good standing at TCB, who have been background checked and receive ongoing training to make your children’s experience the best it can be!\r\n\r\nDuring City Kids, your children will experience fun Bible lessons, activities and games to help them build a spiritual foundation. Simply stated: we want this to be the best hour of your child’s week![/ap_tab]\r\n[ap_tab title=\"<strong>WHAT\'S AVAILABLE FOR STUDENTS?</strong>\"]At TCB, we have a great group of teens who meet together as a Life Groups during the week. The relevent music, casual dress, and relaxed atmosphere during Sunday nights called REfuel makes for the perfect place for teens to worship God and grow in their faith. For this reason, we encourage all teens to participate and serve in the main Sunday service. [/ap_tab]\r\n[ap_tab title=\"<strong>WHAT\'S AVAILABLE DURING THE WEEK?</strong>\"]\r\n\r\n<big><strong>Visit Us:</strong></big>\r\n\r\n<big><strong>SUNDAY MORNINGS: </strong>\r\n9:00 AM PRAYER\r\n10:00 AM LIFEGROUPS\r\n11:00 AM MAIN WORSHIP SERVICE</big>\r\n\r\n<big><strong>SUNDAY NIGHTS </strong>5:00 PM\r\nLIFE UNIVERSITY FAMILY CLASS ELECTIVES</big>\r\n\r\n<strong>WEDNESDAY NIGHT</strong> 6:30 PM\r\nAWANA - PRAYER SERVICE\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><big><a href=\"http://goo.gl/maps/K2o4v\"><strong>DIRECTIONS:</strong></a></big></td>\r\n<td><big>194 Electric Ave </big>\r\nLunenburg, MA 01462</td>\r\n</tr>\r\n<tr>\r\n<td><big><strong>Contact Us:</strong></big></td>\r\n<td><big>(P) 978-582-4901</big></td>\r\n</tr>\r\n<tr>\r\n<td><big><a href=\"http://Pastor@twincitybaptist.com/\">Pastor@Twincitybaptist.com</a></big></td>\r\n<td><big>(F) 978-582-4978</big></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ap_tab]\r\n[/ap_tab_group]','New','','inherit','open','open','','15-revision-v1','','','2015-09-03 16:15:27','2015-09-03 16:15:27','',15,'http://www.mytwincity.org/2015/09/03/15-revision-v1/',0,'revision','',0),(1554,1,'2015-09-03 16:33:11','2015-09-03 16:33:11','Service Archives\n\n[ap_column_wrap]\n[ap_column span=\"3\"]<a href=\"http://mytcbonline.churchonline.org/#\"><img class=\"wp-image-1527 size-thumbnail\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6-150x150.jpg\" alt=\"church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6\" width=\"150\" height=\"150\" /></a>Live Streaming[/ap_column]\n[ap_column span=\"3\"]<img class=\"wp-image-1532 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/sermon.net_.jpg\" alt=\"sermon.net_\" width=\"138\" height=\"138\" />[/ap_column]\n[/ap_column_wrap]','Media','','inherit','open','open','','1307-autosave-v1','','','2015-09-03 16:33:11','2015-09-03 16:33:11','',1307,'http://www.mytwincity.org/2015/09/03/1307-autosave-v1/',0,'revision','',0),(1555,1,'2015-09-03 16:34:51','2015-09-03 16:34:51','[ap_column_wrap]\r\n[ap_column span=\"3\"]<a href=\"http://mytcbonline.churchonline.org/#\"><img class=\"wp-image-1527 size-thumbnail\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6-150x150.jpg\" alt=\"church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6\" width=\"150\" height=\"150\" /></a>Live Streaming[/ap_column]\r\n[ap_column span=\"3\"]<img class=\"wp-image-1532 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/sermon.net_.jpg\" alt=\"sermon.net_\" width=\"138\" height=\"138\" />Service Archives\r\n\r\n<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/Twitter_logo_blue.png\"><img class=\"alignnone size-medium wp-image-8\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/Twitter_logo_blue-300x244.png\" alt=\"Twitter_logo_blue\" width=\"300\" height=\"244\" /></a>\r\n\r\n[/ap_column]\r\n[/ap_column_wrap]','Media','','inherit','open','open','','1307-revision-v1','','','2015-09-03 16:34:51','2015-09-03 16:34:51','',1307,'http://www.mytwincity.org/2015/09/03/1307-revision-v1/',0,'revision','',0),(1556,1,'2015-09-03 16:36:03','2015-09-03 16:36:03','[ap_column_wrap]\r\n[ap_column span=\"3\"]<a href=\"http://mytcbonline.churchonline.org/#\"><img class=\"wp-image-1527 size-thumbnail\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6-150x150.jpg\" alt=\"church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6\" width=\"150\" height=\"150\" /></a>Live Streaming[/ap_column]\r\n[ap_column span=\"3\"]<img class=\"wp-image-1532 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/sermon.net_.jpg\" alt=\"sermon.net_\" width=\"138\" height=\"138\" />Service Archives\r\n\r\n \r\n\r\n[/ap_column]\r\n[/ap_column_wrap]','Media','','inherit','open','open','','1307-revision-v1','','','2015-09-03 16:36:03','2015-09-03 16:36:03','',1307,'http://www.mytwincity.org/2015/09/03/1307-revision-v1/',0,'revision','',0),(1557,1,'2015-09-03 16:36:54','2015-09-03 16:36:54','[ap_column_wrap]\r\n[ap_column span=\"3\"]<a href=\"http://mytcbonline.churchonline.org/#\"><img class=\"wp-image-1527 size-thumbnail\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6-150x150.jpg\" alt=\"church_online_platform_logo-909bdfef26dfd1b76db7bb62d0d8bee6\" width=\"150\" height=\"150\" /></a>Live Streaming[/ap_column]\r\n[ap_column span=\"3\"]<a href=\"http://wwwtwincitybaptistcom.sermon.net/main/main/20477922\"><img class=\"alignnone wp-image-1532 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/sermon.net_.jpg\" alt=\"sermon.net_\" width=\"138\" height=\"138\" /></a>Service Archives\r\n\r\n \r\n\r\n[/ap_column]\r\n[/ap_column_wrap]','Media','','inherit','open','open','','1307-revision-v1','','','2015-09-03 16:36:54','2015-09-03 16:36:54','',1307,'http://www.mytwincity.org/2015/09/03/1307-revision-v1/',0,'revision','',0),(1558,1,'2015-09-03 16:39:01','2015-09-03 16:39:01','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\n<strong>Sunday</strong>: 9:00 am Pastors prayer partners group, 10:00 am campus groups 11:00 am service, 5:00pm service.\r\n\r\n<em>* Childrens, teen programs and college age connection groups available at multiple times.</em>\r\n\r\n<strong>Monday-Friday</strong>: Sermon-based community groups, evening times\r\n\r\n<strong>Wednesday</strong> at 6:30 pm: Campus groups: Bible studies, prayer, and outreach groups meet on campus.\r\n\r\n<strong>Saturday</strong>: Events, prayer groups, and bible studies available\r\n\r\n[/ap_tagline_box]','Meeting Times','','publish','open','open','','meeting-times','','','2015-09-03 16:46:15','2015-09-03 16:46:15','',15,'http://www.mytwincity.org/?page_id=1558',0,'page','',0),(1559,1,'2015-09-03 16:39:01','2015-09-03 16:39:01','','Meeting Times','','inherit','open','open','','1558-revision-v1','','','2015-09-03 16:39:01','2015-09-03 16:39:01','',1558,'http://www.mytwincity.org/2015/09/03/1558-revision-v1/',0,'revision','',0),(1560,1,'2015-09-03 16:40:31','2015-09-03 16:40:31',' ','','','publish','open','closed','','1560','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',15,'http://www.mytwincity.org/?p=1560',4,'nav_menu_item','',0),(1561,1,'2015-09-03 16:46:15','2015-09-03 16:46:15','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\n<strong>Sunday</strong>: 9:00 am Pastors prayer partners group, 10:00 am campus groups 11:00 am service, 5:00pm service.\r\n\r\n<em>* Childrens, teen programs and college age connection groups available at multiple times.</em>\r\n\r\n<strong>Monday-Friday</strong>: Sermon-based community groups, evening times\r\n\r\n<strong>Wednesday</strong> at 6:30 pm: Campus groups: Bible studies, prayer, and outreach groups meet on campus.\r\n\r\n<strong>Saturday</strong>: Events, prayer groups, and bible studies available\r\n\r\n[/ap_tagline_box]','Meeting Times','','inherit','open','open','','1558-revision-v1','','','2015-09-03 16:46:15','2015-09-03 16:46:15','',1558,'http://www.mytwincity.org/2015/09/03/1558-revision-v1/',0,'revision','',0),(1562,1,'2015-09-03 19:57:44','2015-09-03 19:57:44','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\n\n<strong>Mission Statement:</strong>\n\nTo lead people into a growing relationship with Jesus Christ.\n\n<strong>VISION STATEMENT:</strong>\n\nTo create safe environments for people to Discover Christ, Uncover truth and Recover their life for eternal impact.\n\n<strong>CORE VALUES:</strong>\n<ul>\n <li>We Pray Earnestly</li>\n <li>We Connect Strategically</li>\n <li>We Give Generously</li>\n <li>We Teach Biblically</li>\n</ul>\n[/ap_tagline_box]','Purpose','','inherit','open','open','','29-autosave-v1','','','2015-09-03 19:57:44','2015-09-03 19:57:44','',29,'http://www.mytwincity.org/2015/09/03/29-autosave-v1/',0,'revision','',0),(1563,1,'2015-09-03 19:56:39','2015-09-03 19:56:39','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\n<strong>Mission Statement:</strong>\r\n\r\nTo lead people into a growing relationship with Jesus Christ.\r\n\r\n<strong>Vision Statement:</strong>\r\n\r\nTo create safe environments for people to Discover Christ, Uncover truth and Recover their life for eternal impact.\r\n\r\n<strong>CORE VALUES:</strong>\r\n\r\nWe Pray Earnestly\r\nWe Connect Strategically\r\nWe Give Generously\r\nWe Teach Biblically\r\n\r\n[/ap_tagline_box]','Purpose','','inherit','open','open','','29-revision-v1','','','2015-09-03 19:56:39','2015-09-03 19:56:39','',29,'http://www.mytwincity.org/2015/09/03/29-revision-v1/',0,'revision','',0),(1564,1,'2015-09-03 19:57:55','2015-09-03 19:57:55','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\n<strong>MISSION STATEMENT:</strong>\r\n\r\nTo lead people into a growing relationship with Jesus Christ.\r\n\r\n<strong>VISION STATEMENT:</strong>\r\n\r\nTo create safe environments for people to Discover Christ, Uncover truth and Recover their life for eternal impact.\r\n\r\n<strong>CORE VALUES:</strong>\r\n<ul>\r\n <li>We Pray Earnestly</li>\r\n <li>We Connect Strategically</li>\r\n <li>We Give Generously</li>\r\n <li>We Teach Biblically</li>\r\n</ul>\r\n[/ap_tagline_box]','Purpose','','inherit','open','open','','29-revision-v1','','','2015-09-03 19:57:55','2015-09-03 19:57:55','',29,'http://www.mytwincity.org/2015/09/03/29-revision-v1/',0,'revision','',0),(1565,1,'2015-09-03 20:01:50','2015-09-03 20:01:50','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h4><strong>OUR BELIEFS</strong></h4>\r\n<strong>Don\'t have a lot of time to read...Just need to know the basics...</strong>\r\n\r\nWe believe the Bible to be without error. The Bible reveals God, the spiritual separation of man from God, the way of salvation, and how to have a personal relationship with God. (II Tim. 3:15-16; II Peter 1:20-21)\r\n\r\nWe believe the one, true God reveals Himself in three distinct persons: God the Father, God the Son, and God the Holy Spirit. All three are co-eternal, co-powerful, and co-equal. (I John 5:7)\r\n\r\nWe believe that Jesus Christ is the Son of God, born of the virgin Mary. He lived a life without sin and is our example. (I Peter 2:21-25)\r\n\r\nWe believe salvation (a personal relationship with God) is by \"grace,\" plus nothing and minus nothing. This salvation is found only by receiving Jesus Christ into your life. Salvation is by repentance and faith (truly being sorrowful for your sins, confessing that Jesus Christ died for your sins, and inviting Him into your life). (Eph.2:8-9; Titus 3:5-7)\r\n\r\nWe believe in the visible and personal return of Jesus Christ. (I Thess. 4:16-17)\r\n\r\nWe believe that those who receive Jesus Christ will go to Heaven and those who reject Him will be separated from the Lord forever. (Rev. 20:10-15)\r\n\r\n[/ap_tagline_box]','Doctrine','','inherit','open','open','','31-revision-v1','','','2015-09-03 20:01:50','2015-09-03 20:01:50','',31,'http://www.mytwincity.org/2015/09/03/31-revision-v1/',0,'revision','',0),(1566,1,'2015-09-29 16:21:28','2015-09-29 16:21:28','<h2 style=\"text-align: left;\"> <strong>Lead Pastor</strong></h2>\n<img class=\"wp-image-1623 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"667\" height=\"1000\" />[ap_tagline_box tag_box_style=\"ap-left-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA.[/ap_tagline_box]\n<h2></h2>\n<h2></h2>\n<h2></h2>\n<h2></h2>\n<h2></h2>\n<h2></h2>\n<h2></h2>\n<h2></h2>\n<h2></h2>\n<h2></h2>\n<h2></h2>\n<h2></h2>\n<h2> <strong>Pastor Emeritus</strong></h2>\n<img class=\"alignnone wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\n\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\n\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\n\n[/ap_tagline_box]\n\n \n\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\n\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\n\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\n\n[/ap_tagline_box]','Pastors','','inherit','open','open','','33-autosave-v1','','','2015-09-29 16:21:28','2015-09-29 16:21:28','',33,'http://www.mytwincity.org/2015/09/03/33-autosave-v1/',0,'revision','',0),(1567,1,'2015-09-03 20:07:32','2015-09-03 20:07:32','','FOUNDER','','inherit','open','open','','founder','','','2015-09-03 20:07:32','2015-09-03 20:07:32','',33,'http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg',0,'attachment','image/jpeg',0),(1568,1,'2015-09-03 20:10:24','2015-09-03 20:10:24','','family pic','','inherit','open','open','','family-pic','','','2015-09-03 20:10:24','2015-09-03 20:10:24','',33,'http://www.mytwincity.org/wp-content/uploads/2015/07/family-pic.jpg',0,'attachment','image/jpeg',0),(1569,1,'2015-09-03 20:13:25','2015-09-03 20:13:25','<h2>Our Pastors</h2>\r\n<h3>Meet Our Founding Pastor</h3>\r\n<img class=\"alignnone wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n<h3><strong>Co-Pastor</strong></h3>\r\n<img class=\"alignnone wp-image-1568 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/family-pic.jpg\" alt=\"family pic\" width=\"500\" height=\"327\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA. [/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','open','open','','33-revision-v1','','','2015-09-03 20:13:25','2015-09-03 20:13:25','',33,'http://www.mytwincity.org/2015/09/03/33-revision-v1/',0,'revision','',0),(1570,1,'2015-09-03 20:14:30','2015-09-03 20:14:30','<h2><strong>Meet Our Founding Pastor</strong></h2>\r\n<img class=\"alignnone wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n<h3><strong>Co-Pastor</strong></h3>\r\n<img class=\"alignnone wp-image-1568 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/family-pic.jpg\" alt=\"family pic\" width=\"500\" height=\"327\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA. [/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','open','open','','33-revision-v1','','','2015-09-03 20:14:30','2015-09-03 20:14:30','',33,'http://www.mytwincity.org/2015/09/03/33-revision-v1/',0,'revision','',0),(1571,1,'2015-09-03 20:19:09','2015-09-03 20:19:09','<h2><strong>HOW IT BEGAN...</strong></h2>\n \n\n<img class=\"alignleft wp-image-1567 size-medium\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER-300x263.jpg\" alt=\"FOUNDER\" width=\"300\" height=\"263\" />\n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n ','Founders','','inherit','open','open','','35-autosave-v1','','','2015-09-03 20:19:09','2015-09-03 20:19:09','',35,'http://www.mytwincity.org/2015/09/03/35-autosave-v1/',0,'revision','',0),(1572,1,'2015-09-03 20:19:51','2015-09-03 20:19:51','<h2><strong>HOW IT BEGAN...</strong></h2>\r\n \r\n\r\n<img class=\"alignleft wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<div>\r\n<h3><strong>Meet Our Founding Pastor and His Wife</strong></h3>\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\nTwin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.\r\n\r\nIn 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.\r\n\r\nOn February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.\r\n\r\nIn 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.\r\n\r\nOctober 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at<a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a>\r\n\r\n[/ap_tagline_box]','Founders','','inherit','open','open','','35-revision-v1','','','2015-09-03 20:19:51','2015-09-03 20:19:51','',35,'http://www.mytwincity.org/2015/09/03/35-revision-v1/',0,'revision','',0),(1573,1,'2015-09-03 20:20:23','2015-09-03 20:20:23','<h2><strong>HOW IT BEGAN...</strong></h2>\r\n \r\n\r\n<img class=\"alignleft wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<div>\r\n<h3><strong>Meet Our Founding Pastor and His Wife</strong></h3>\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\nTwin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.\r\n\r\nIn 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.\r\n\r\nOn February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.\r\n\r\nIn 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.\r\n\r\nOctober 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at<a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a>\r\n\r\n[/ap_tagline_box]','Founders','','inherit','open','open','','35-revision-v1','','','2015-09-03 20:20:23','2015-09-03 20:20:23','',35,'http://www.mytwincity.org/2015/09/03/35-revision-v1/',0,'revision','',0),(1574,1,'2015-09-03 20:21:54','2015-09-03 20:21:54','<h2></h2>\r\n<img class=\"alignleft wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<div>\r\n<h3><strong>Meet Our Founding Pastor and His Wife</strong></h3>\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\nTwin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.\r\n\r\nIn 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.\r\n\r\nOn February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.\r\n\r\nIn 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.\r\n\r\nOctober 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at<a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a>\r\n\r\n[/ap_tagline_box]','Founders','','inherit','open','open','','35-revision-v1','','','2015-09-03 20:21:54','2015-09-03 20:21:54','',35,'http://www.mytwincity.org/2015/09/03/35-revision-v1/',0,'revision','',0),(1575,1,'2015-09-03 20:22:20','2015-09-03 20:22:20','<h2></h2>\r\n<img class=\"alignleft wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]<strong>Meet Our Founding Pastor and His Wife</strong>\r\n<div>\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\nTwin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.\r\n\r\nIn 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.\r\n\r\nOn February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.\r\n\r\nIn 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.\r\n\r\nOctober 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at<a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a>\r\n\r\n[/ap_tagline_box]','Founders','','inherit','open','open','','35-revision-v1','','','2015-09-03 20:22:20','2015-09-03 20:22:20','',35,'http://www.mytwincity.org/2015/09/03/35-revision-v1/',0,'revision','',0),(1576,1,'2015-09-03 20:22:57','2015-09-03 20:22:57','<h2></h2>\r\n<img class=\"alignleft wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Meet Our Founding Pastor and His Wife</strong></h3>\r\n<div>\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\nTwin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.\r\n\r\nIn 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.\r\n\r\nOn February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.\r\n\r\nIn 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.\r\n\r\nOctober 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at<a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a>\r\n\r\n[/ap_tagline_box]','Founders','','inherit','open','open','','35-revision-v1','','','2015-09-03 20:22:57','2015-09-03 20:22:57','',35,'http://www.mytwincity.org/2015/09/03/35-revision-v1/',0,'revision','',0),(1577,1,'2015-09-03 20:23:32','2015-09-03 20:23:32','<h2></h2>\r\n<img class=\"alignleft wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Meet Our Founding Pastor and His Wife</strong></h3>\r\n<div>\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\nTwin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.\r\n\r\nIn 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.\r\n\r\nOn February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.\r\n\r\nIn 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.\r\n\r\nOctober 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at <a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a>\r\n\r\n[/ap_tagline_box]','Founders','','inherit','open','open','','35-revision-v1','','','2015-09-03 20:23:32','2015-09-03 20:23:32','',35,'http://www.mytwincity.org/2015/09/03/35-revision-v1/',0,'revision','',0),(1578,1,'2015-09-03 20:40:29','2015-09-03 20:40:29','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\n<h2><strong>CITY KIDS: Children\'s Ministries</strong></h2>\nWhile your little ones are learning about Jesus, you can feel secure in knowing your little ones are safe!\n\nAll volunteers and church staff working with our young people are interviewed by the Children\'s Ministry Director and/or the Pastor personally and have background checks to ensure safety.\n\n[/ap_tagline_box]\n\n[ap_tab_group type=\"vertical\"]\n[ap_tab title=\"<strong>Nursery</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Nursery is always available at TCB for all services for children under 3 years old by ladies with young child/infant experience. Parents are encouraged to bring their own food or drink if needed (in case of food allergies. We are a peanut/tree nut free facility). These precious ones enjoy Bible Songs and free-play with age appropriate toys.[/ap_tagline_box][/ap_tab]\n[ap_tab title=\"<strong>Sunday Mornings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\n<h3><strong>Children\'s Sunday School</strong></h3>\nSunday Mornings 9:45 AM (Ages 4 through 12)\n\nSunday School is a time that children really get to learn the fundamentals of the Christian faith and walk through the various stories of the Bible geared to their age level. Curriculum provided by Joyful Life, a subsidiary of A Beka Publications.\n\n \n<h3><strong>Junior Church</strong></h3>\nSunday Worship Time 11:00 AM (Ages 4 through 12)\n\nThe Junior Church Hour is an extension of the Bible learning time where all the children get to continue to learn about the Lord with fun, hands-on, interactive Bible activities appropriate for their age level. Children can also win awards for bringing visitors, consistent attendance, and Bible memory.\n\n[/ap_tagline_box][/ap_tab]\n[ap_tab title=\"<strong>Sunday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\n<h3><strong>Word of Life Club: Olympians</strong></h3>\nSunday Nights 5:00 PM (Ages 4 through 12)\n\nThis program teaches children and their parents how to have a quiet time with God and learn the basics of what it means to spend quality time with the Lord. There is music, games, and creative ways to learn the Bible in a relevant way.[/ap_tagline_box][/ap_tab]\n[ap_tab title=\"<strong>Wednesday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\n<h3><strong>Olympians\' Club Check-in</strong></h3>\nWednesday Nights 6:30 PM (Ages 4 through 12)\n\nThis is simply a mid-week checkup time for children who are participating in the Sunday night Olympian Club from Word of Life. There is games, Bible memory, snacks, and\n\n[/ap_tagline_box][/ap_tab]\n[/ap_tab_group]','City Kids','','inherit','open','open','','43-autosave-v1','','','2015-09-03 20:40:29','2015-09-03 20:40:29','',43,'http://www.mytwincity.org/2015/09/03/43-autosave-v1/',0,'revision','',0),(1579,1,'2015-09-03 20:31:37','2015-09-03 20:31:37','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>CITY KIDS: Children\'s Ministries</strong></h2>\r\nWhile your little ones are learning about Jesus, you can feel secure in knowing your little ones are safe!\r\n\r\nAll volunteers and church staff working with our young people are interviewed by the Children\'s Ministry Director and/or the Pastor personally and have background checks to ensure safety.\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Nursery</strong>\"][ap_tagline_box tag_box_style=\"ap-top-border-box\"]Nursery is always available at TCB for all services for children under 3 years old by ladies with young child/infant experience. Parents are encouraged to bring their own food or drink if needed (in case of food allergies. We are a peanut/tree nut free facility). These precious ones enjoy Bible Songs and free-play with age appropriate toys.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Mornings</strong>\"]Content 2[/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Evenings</strong>\"]Content 3[/ap_tab]\r\n[ap_tab title=\"<strong>Wednesday Evenings</strong>\"]Content 4[/ap_tab]\r\n[/ap_tab_group]','City Kids','','inherit','open','open','','43-revision-v1','','','2015-09-03 20:31:37','2015-09-03 20:31:37','',43,'http://www.mytwincity.org/2015/09/03/43-revision-v1/',0,'revision','',0),(1580,1,'2015-09-03 20:32:07','2015-09-03 20:32:07','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>CITY KIDS: Children\'s Ministries</strong></h2>\r\nWhile your little ones are learning about Jesus, you can feel secure in knowing your little ones are safe!\r\n\r\nAll volunteers and church staff working with our young people are interviewed by the Children\'s Ministry Director and/or the Pastor personally and have background checks to ensure safety.\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Nursery</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Nursery is always available at TCB for all services for children under 3 years old by ladies with young child/infant experience. Parents are encouraged to bring their own food or drink if needed (in case of food allergies. We are a peanut/tree nut free facility). These precious ones enjoy Bible Songs and free-play with age appropriate toys.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Mornings</strong>\"]Content 2[/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Evenings</strong>\"]Content 3[/ap_tab]\r\n[ap_tab title=\"<strong>Wednesday Evenings</strong>\"]Content 4[/ap_tab]\r\n[/ap_tab_group]','City Kids','','inherit','open','open','','43-revision-v1','','','2015-09-03 20:32:07','2015-09-03 20:32:07','',43,'http://www.mytwincity.org/2015/09/03/43-revision-v1/',0,'revision','',0),(1581,1,'2015-09-03 20:34:50','2015-09-03 20:34:50','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>CITY KIDS: Children\'s Ministries</strong></h2>\r\nWhile your little ones are learning about Jesus, you can feel secure in knowing your little ones are safe!\r\n\r\nAll volunteers and church staff working with our young people are interviewed by the Children\'s Ministry Director and/or the Pastor personally and have background checks to ensure safety.\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Nursery</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Nursery is always available at TCB for all services for children under 3 years old by ladies with young child/infant experience. Parents are encouraged to bring their own food or drink if needed (in case of food allergies. We are a peanut/tree nut free facility). These precious ones enjoy Bible Songs and free-play with age appropriate toys.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Mornings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3>Children\'s Sunday School</h3>\r\nSunday Mornings 9:45 AM (Ages 4 through 12)\r\n\r\nSunday School is a time that children really get to learn the fundamentals of the Christian faith and walk through the various stories of the Bible geared to their age level. Curriculum provided by Joyful Life, a subsidiary of A Beka Publications.\r\n\r\n \r\n<h3><strong>Junior Church</strong></h3>\r\nSunday Worship Time 11:00 AM (Ages 4 through 12)\r\n\r\nThe Junior Church Hour is an extension of the Bible learning time where all the children get to continue to learn about the Lord with fun, hands-on, interactive Bible activities appropriate for their age level. Children can also win awards for bringing visitors, consistent attendance, and Bible memory.\r\n\r\n[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Enter you Tag Line text here[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Wednesday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Enter you Tag Line text here[/ap_tagline_box][/ap_tab]\r\n[/ap_tab_group]','City Kids','','inherit','open','open','','43-revision-v1','','','2015-09-03 20:34:50','2015-09-03 20:34:50','',43,'http://www.mytwincity.org/2015/09/03/43-revision-v1/',0,'revision','',0),(1582,1,'2015-09-03 20:35:22','2015-09-03 20:35:22','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>CITY KIDS: Children\'s Ministries</strong></h2>\r\nWhile your little ones are learning about Jesus, you can feel secure in knowing your little ones are safe!\r\n\r\nAll volunteers and church staff working with our young people are interviewed by the Children\'s Ministry Director and/or the Pastor personally and have background checks to ensure safety.\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Nursery</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Nursery is always available at TCB for all services for children under 3 years old by ladies with young child/infant experience. Parents are encouraged to bring their own food or drink if needed (in case of food allergies. We are a peanut/tree nut free facility). These precious ones enjoy Bible Songs and free-play with age appropriate toys.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Mornings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Children\'s Sunday School</strong></h3>\r\nSunday Mornings 9:45 AM (Ages 4 through 12)\r\n\r\nSunday School is a time that children really get to learn the fundamentals of the Christian faith and walk through the various stories of the Bible geared to their age level. Curriculum provided by Joyful Life, a subsidiary of A Beka Publications.\r\n\r\n \r\n<h3><strong>Junior Church</strong></h3>\r\nSunday Worship Time 11:00 AM (Ages 4 through 12)\r\n\r\nThe Junior Church Hour is an extension of the Bible learning time where all the children get to continue to learn about the Lord with fun, hands-on, interactive Bible activities appropriate for their age level. Children can also win awards for bringing visitors, consistent attendance, and Bible memory.\r\n\r\n[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Enter you Tag Line text here[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Wednesday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Enter you Tag Line text here[/ap_tagline_box][/ap_tab]\r\n[/ap_tab_group]','City Kids','','inherit','open','open','','43-revision-v1','','','2015-09-03 20:35:22','2015-09-03 20:35:22','',43,'http://www.mytwincity.org/2015/09/03/43-revision-v1/',0,'revision','',0),(1583,1,'2015-09-03 20:41:04','2015-09-03 20:41:04','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>CITY KIDS: Children\'s Ministries</strong></h2>\r\nWhile your little ones are learning about Jesus, you can feel secure in knowing your little ones are safe!\r\n\r\nAll volunteers and church staff working with our young people are interviewed by the Children\'s Ministry Director and/or the Pastor personally and have background checks to ensure safety.\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Nursery</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Nursery is always available at TCB for all services for children under 3 years old by ladies with young child/infant experience. Parents are encouraged to bring their own food or drink if needed (in case of food allergies. We are a peanut/tree nut free facility). These precious ones enjoy Bible Songs and free-play with age appropriate toys.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Mornings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Children\'s Sunday School</strong></h3>\r\nSunday Mornings 9:45 AM (Ages 4 through 12)\r\n\r\nSunday School is a time that children really get to learn the fundamentals of the Christian faith and walk through the various stories of the Bible geared to their age level. Curriculum provided by Joyful Life, a subsidiary of A Beka Publications.\r\n\r\n \r\n<h3><strong>Junior Church</strong></h3>\r\nSunday Worship Time 11:00 AM (Ages 4 through 12)\r\n\r\nThe Junior Church Hour is an extension of the Bible learning time where all the children get to continue to learn about the Lord with fun, hands-on, interactive Bible activities appropriate for their age level. Children can also win awards for bringing visitors, consistent attendance, and Bible memory.\r\n\r\n[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Word of Life Club: Olympians</strong></h3>\r\nSunday Nights 5:00 PM (Ages 4 through 12)\r\n\r\nThis program teaches children and their parents how to have a quiet time with God and learn the basics of what it means to spend quality time with the Lord. There is music, games, and creative ways to learn the Bible in a relevant way.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Wednesday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Olympians\' Club Check-in</strong></h3>\r\nWednesday Nights 6:30 PM (Ages 4 through 12)\r\n\r\nThis is simply a mid-week checkup time for children who are participating in the Sunday night Olympian Club from Word of Life. There is games, Bible memory, snacks, and fun!\r\n\r\n[/ap_tagline_box][/ap_tab]\r\n[/ap_tab_group]','City Kids','','inherit','open','open','','43-revision-v1','','','2015-09-03 20:41:04','2015-09-03 20:41:04','',43,'http://www.mytwincity.org/2015/09/03/43-revision-v1/',0,'revision','',0),(1584,1,'2015-09-03 20:41:58','2015-09-03 20:41:58','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>CITY KIDS: Children\'s Ministries</strong></h2>\r\nWhile your little ones are learning about Jesus, you can feel secure in knowing your little ones are safe!\r\n\r\nAll volunteers and church staff working with our young people are interviewed by the Children\'s Ministry Director and/or the Pastor personally and have background checks to ensure safety.\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Nursery</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Nursery is always available at TCB for all services for children under 3 years old by ladies with young child/infant experience. Parents are encouraged to bring their own food or drink if needed (in case of food allergies. We are a peanut/tree nut free facility). These precious ones enjoy Bible Songs and free-play with age appropriate toys.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Mornings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Children\'s Sunday School</strong></h3>\r\nSunday Mornings 9:45 AM (Ages 4 through 12)\r\n\r\nSunday School is a time that children really get to learn the fundamentals of the Christian faith and walk through the various stories of the Bible geared to their age level. Curriculum provided by Joyful Life, a subsidiary of A Beka Publications.\r\n\r\n \r\n<h3><strong>Junior Church</strong></h3>\r\nSunday Worship Time 11:00 AM (Ages 4 through 12)\r\n\r\nThe Junior Church Hour is an extension of the Bible learning time where all the children get to continue to learn about the Lord with fun, hands-on, interactive Bible activities appropriate for their age level. Children can also win awards for bringing visitors, consistent attendance, and Bible memory.\r\n\r\n[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Word of Life Club: Olympians</strong></h3>\r\nSunday Nights 5:00 PM (Ages 4 through 12)\r\n\r\nThis program teaches children and their parents how to have a quiet time with God and learn the basics of what it means to spend quality time with the Lord. There is music, games, and creative ways to learn the Bible in a relevant way.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Wednesday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Olympians\' Club Mid-week Checkup</strong></h3>\r\nWednesday Nights 6:30 PM (Ages 4 through 12)\r\n\r\nThis is simply a mid-week checkup time for children who are participating in the Sunday night Olympian Club from Word of Life. There is games, Bible memory, snacks, and fun!\r\n\r\n[/ap_tagline_box][/ap_tab]\r\n[/ap_tab_group]','City Kids','','inherit','open','open','','43-revision-v1','','','2015-09-03 20:41:58','2015-09-03 20:41:58','',43,'http://www.mytwincity.org/2015/09/03/43-revision-v1/',0,'revision','',0),(1585,1,'2015-09-03 20:43:44','2015-09-03 20:43:44','','CITY TEENS BANNER_wide','','inherit','open','open','','city-teens-banner_wide','','','2015-09-03 20:43:44','2015-09-03 20:43:44','',45,'http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg',0,'attachment','image/jpeg',0),(1586,1,'2015-09-03 20:44:07','2015-09-03 20:44:07','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\"><img class=\"aligncenter wp-image-1585 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\" alt=\"CITY TEENS BANNER_wide\" width=\"960\" height=\"480\" /></a>','City Teens','','inherit','open','open','','45-revision-v1','','','2015-09-03 20:44:07','2015-09-03 20:44:07','',45,'http://www.mytwincity.org/2015/09/03/45-revision-v1/',0,'revision','',0),(1587,1,'2015-09-03 20:55:23','2015-09-03 20:55:23','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\"><img class=\"aligncenter wp-image-1585 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\" alt=\"CITY TEENS BANNER_wide\" width=\"960\" height=\"480\" /></a>\n\n \n<h2><strong>Welcome To City Teens</strong></h2>\nCity Teens is a youth group for all teens in grades 7-12 who are seeking to grow in their walk with Jesus or maybe just wondering who Jesus is. We want our teens to have their own faith and not just follow Jesus because their friends or family follows Him. Our goal is that they will graduate from City Teens and continue serving Jesus for the rest of their lives.\n\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\n<h3><strong>Vision</strong></h3>\nPreparing students with the knowledge they need to have a growing relationship with Jesus and to be able to share that relationship with others.\n<h3><strong>About</strong></h3>\nCity Teens has 3 distinct programs throughout the week located in the Larson Center:\n\n[ap_toggle title=\"<strong>Rise-Up</strong>\" status=\"close\"]Our Sunday morning program from 10-11am where we have a time of prayer requests and teaching of God’s Word. This is our main teaching program.[/ap_toggle]\n\n[ap_toggle title=\"<strong>Refuel</strong>\" status=\"close\"]Our Sunday evening program from 5-6:30pm where we have snacks, games, and a short devotional geared towards topics that every teen can relate to.[/ap_toggle]\n\n[ap_toggle title=\"<strong>Revive</strong>\" status=\"close\"]Our Wednesday evening program from 6:30-8pm that includes games and a Bible study geared towards our teens having conversations about what they are learning.[/ap_toggle]\n\n[/ap_tagline_box]\n\n \n\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">We have done activities in the past including lock-ins, campfire and s’mores, Reverb Word of Life, AHL Hockey games, roller skating, concerts, and the list goes on. Check the calendar below for more details on upcoming events.</span> [/ap_tagline_box]\n<h4><strong>Like us on <a href=\"https://www.facebook.com/pages/City-Teens/135540556474196\">Facebook</a> </strong>and keep current with the latest events!</h4>\n<h4><strong>For more information on getting connected, <a href=\"mailto:twincityteens@gmail.com?subject=Get%20Connected%20with%20City%20Teens%20From%20Website\">Contact us here</a></strong></h4>\n \n\n[gcal id=\"1589\"]\n\n \n\n ','City Teens','','inherit','open','open','','45-autosave-v1','','','2015-09-03 20:55:23','2015-09-03 20:55:23','',45,'http://www.mytwincity.org/2015/09/03/45-autosave-v1/',0,'revision','',0),(1588,1,'2015-09-03 20:46:30','2015-09-03 20:46:30','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\"><img class=\"aligncenter wp-image-1585 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\" alt=\"CITY TEENS BANNER_wide\" width=\"960\" height=\"480\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','City Teens','','inherit','open','open','','45-revision-v1','','','2015-09-03 20:46:30','2015-09-03 20:46:30','',45,'http://www.mytwincity.org/2015/09/03/45-revision-v1/',0,'revision','',0),(1589,1,'2015-09-03 20:47:05','2015-09-03 20:47:05','<div class=\"gce-list-event gce-tooltip-event\">[event-title]</div>\r\n<div>Starts: [start-time]</div>\r\n<div>Ends: [end-date] - [end-time]</div>\r\n[if-location]\r\n<div>Location: [location]</div>\r\n[/if-location]\r\n[if-description]\r\n<div>Description: [description]</div>\r\n[/if-description]\r\n<div>[link newwindow=\"true\"]More details...[/link]</div>','TCB Teens','','publish','closed','closed','','tcb-teens','','','2015-09-03 20:47:34','2015-09-03 20:47:34','',0,'http://www.mytwincity.org/?post_type=gce_feed&p=1589',0,'gce_feed','',0),(1590,1,'2015-09-03 20:54:04','2015-09-03 20:54:04','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\"><img class=\"aligncenter wp-image-1585 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\" alt=\"CITY TEENS BANNER_wide\" width=\"960\" height=\"480\" /></a>\r\n\r\n \r\n<h2><strong>Welcome To City Teens</strong></h2>\r\nCity Teens is a youth group for all teens in grades 7-12 who are seeking to grow in their walk with Jesus or maybe just wondering who Jesus is. We want our teens to have their own faith and not just follow Jesus because their friends or family follows Him. Our goal is that they will graduate from City Teens and continue serving Jesus for the rest of their lives.\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Vision</strong></h3>\r\nPreparing students with the knowledge they need to have a growing relationship with Jesus and to be able to share that relationship with others.\r\n<h3><strong>About</strong></h3>\r\nCity Teens has 3 distinct programs throughout the week located in the Larson Center:\r\n\r\n[ap_toggle title=\"<strong>Rise-Up</strong>\" status=\"close\"]Our Sunday morning program from 10-11am where we have a time of prayer requests and teaching of God’s Word. This is our main teaching program.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Refuel</strong>\" status=\"close\"]Our Sunday evening program from 5-6:30pm where we have snacks, games, and a short devotional geared towards topics that every teen can relate to.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Revive</strong>\" status=\"close\"]Our Wednesday evening program from 6:30-8pm that includes games and a Bible study geared towards our teens having conversations about what they are learning.[/ap_toggle]\r\n\r\n \r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">We have done activities in the past including lock-ins, campfire and s’mores, Reverb Word of Life, AHL Hockey games, roller skating, concerts, and the list goes on. Check the calendar below for more details on upcoming events.</span> [/ap_tagline_box]\r\n<h4><strong>Like us on <a href=\"https://www.facebook.com/pages/City-Teens/135540556474196\">Facebook</a> </strong>and keep current with the latest events!</h4>\r\n<h4><strong>For more information on getting connected, <a href=\"mailto:twincityteens@gmail.com?subject=Get%20Connected%20with%20City%20Teens%20From%20Website\">Contact us here</a></strong></h4>\r\n \r\n\r\n[gcal id=\"1589\"]\r\n\r\n \r\n\r\n ','City Teens','','inherit','open','open','','45-revision-v1','','','2015-09-03 20:54:04','2015-09-03 20:54:04','',45,'http://www.mytwincity.org/2015/09/03/45-revision-v1/',0,'revision','',0),(1591,1,'2015-09-03 20:55:33','2015-09-03 20:55:33','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\"><img class=\"aligncenter wp-image-1585 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\" alt=\"CITY TEENS BANNER_wide\" width=\"960\" height=\"480\" /></a>\r\n\r\n \r\n<h2><strong>Welcome To City Teens</strong></h2>\r\nCity Teens is a youth group for all teens in grades 7-12 who are seeking to grow in their walk with Jesus or maybe just wondering who Jesus is. We want our teens to have their own faith and not just follow Jesus because their friends or family follows Him. Our goal is that they will graduate from City Teens and continue serving Jesus for the rest of their lives.\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Vision</strong></h3>\r\nPreparing students with the knowledge they need to have a growing relationship with Jesus and to be able to share that relationship with others.\r\n<h3><strong>About</strong></h3>\r\nCity Teens has 3 distinct programs throughout the week located in the Larson Center:\r\n\r\n[ap_toggle title=\"<strong>Rise-Up</strong>\" status=\"close\"]Our Sunday morning program from 10-11am where we have a time of prayer requests and teaching of God’s Word. This is our main teaching program.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Refuel</strong>\" status=\"close\"]Our Sunday evening program from 5-6:30pm where we have snacks, games, and a short devotional geared towards topics that every teen can relate to.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Revive</strong>\" status=\"close\"]Our Wednesday evening program from 6:30-8pm that includes games and a Bible study geared towards our teens having conversations about what they are learning.[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">We have done activities in the past including lock-ins, campfire and s’mores, Reverb Word of Life, AHL Hockey games, roller skating, concerts, and the list goes on. Check the calendar below for more details on upcoming events.</span> [/ap_tagline_box]\r\n\r\n \r\n<h4><strong>Like us on <a href=\"https://www.facebook.com/pages/City-Teens/135540556474196\">Facebook</a> </strong>and keep current with the latest events!</h4>\r\n<h4><strong>For more information on getting connected, <a href=\"mailto:twincityteens@gmail.com?subject=Get%20Connected%20with%20City%20Teens%20From%20Website\">Contact us here</a></strong></h4>\r\n \r\n\r\n[gcal id=\"1589\"]\r\n\r\n \r\n\r\n ','City Teens','','inherit','open','open','','45-revision-v1','','','2015-09-03 20:55:33','2015-09-03 20:55:33','',45,'http://www.mytwincity.org/2015/09/03/45-revision-v1/',0,'revision','',0),(1592,1,'2015-09-03 20:58:00','2015-09-03 20:58:00','Single living, single parenting, and single again all have their pros and their cons. However, if you want a great support in a local church come and check out our single adults and their passion in being the right person and not just finding the right person.\n<h3><strong>Check back for more updates to this page!</strong></h3>','City Life (Single Adults & Young Marrieds)','','inherit','open','open','','47-autosave-v1','','','2015-09-03 20:58:00','2015-09-03 20:58:00','',47,'http://www.mytwincity.org/2015/09/03/47-autosave-v1/',0,'revision','',0),(1593,1,'2015-09-03 20:58:03','2015-09-03 20:58:03','Single living, single parenting, and single again all have their pros and their cons. However, if you want a great support in a local church come and check out our single adults and their passion in being the right person and not just finding the right person.\r\n<h3><strong>Check back for more updates to this page!</strong></h3>','City Life (Single Adults & Young Married)','','inherit','open','open','','47-revision-v1','','','2015-09-03 20:58:03','2015-09-03 20:58:03','',47,'http://www.mytwincity.org/2015/09/03/47-revision-v1/',0,'revision','',0),(1594,1,'2015-09-03 21:00:47','2015-09-03 21:00:47','<img class=\"aligncenter wp-image-1291 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CU-wide_wide.jpg\" alt=\"CU wide_wide\" width=\"960\" height=\"480\" />\n\n \n\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Enter you Tag Line text here[/ap_tagline_box]','C-University','','inherit','open','open','','133-autosave-v1','','','2015-09-03 21:00:47','2015-09-03 21:00:47','',133,'http://www.mytwincity.org/2015/09/03/133-autosave-v1/',0,'revision','',0),(1595,1,'2015-09-03 21:01:41','2015-09-03 21:01:41','<img class=\"aligncenter wp-image-1291 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CU-wide_wide.jpg\" alt=\"CU wide_wide\" width=\"960\" height=\"480\" />\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>About the Semester Studies:</strong></h3>\r\nAt Twin City at 5 pm, we are continually giving you more opportunities to become fully developed followers for Jesus Christ by providing different ways to grow in the Lord. Sunday Nights are called <strong>City University</strong>, a place where you choose your class elective for 12 weeks and launch into a deeper walk with Christ through studies that are geared for conversation and getting your questions answered.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\"><strong><em>Check back soon for updates to the Fall Semester!</em></strong></span>[/ap_tagline_box]','C-University','','inherit','open','open','','133-revision-v1','','','2015-09-03 21:01:41','2015-09-03 21:01:41','',133,'http://www.mytwincity.org/2015/09/03/133-revision-v1/',0,'revision','',0),(1596,1,'2015-09-03 21:02:22','2015-09-03 21:02:22','<img class=\"aligncenter wp-image-1291 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CU-wide_wide.jpg\" alt=\"CU wide_wide\" width=\"960\" height=\"480\" />\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>About the Semester Studies:</strong></h3>\r\nAt Twin City at 5 pm, we are continually giving you more opportunities to become fully developed followers for Jesus Christ by providing different ways to grow in the Lord. Sunday Nights are called <strong>City University</strong>, a place where you choose your class elective for 12 weeks and launch into a deeper walk with Christ through studies that are geared for conversation and getting your questions answered.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\"><em>Check back soon for updates to the Fall Semester!</em></span>[/ap_tagline_box]','C-University','','inherit','open','open','','133-revision-v1','','','2015-09-03 21:02:22','2015-09-03 21:02:22','',133,'http://www.mytwincity.org/2015/09/03/133-revision-v1/',0,'revision','',0),(1597,1,'2015-09-03 21:09:51','2015-09-03 21:09:51','','man on wall','','inherit','open','open','','man-on-wall','','','2015-09-03 21:09:51','2015-09-03 21:09:51','',49,'http://www.mytwincity.org/wp-content/uploads/2015/07/man-on-wall.jpeg',0,'attachment','image/jpeg',0),(1598,1,'2015-09-03 21:10:16','2015-09-03 21:10:16','<img class=\"aligncenter wp-image-1597 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/man-on-wall.jpeg\" alt=\"man on wall\" width=\"2592\" height=\"1459\" />','Men\'s Ministry','','inherit','open','open','','49-revision-v1','','','2015-09-03 21:10:16','2015-09-03 21:10:16','',49,'http://www.mytwincity.org/2015/09/03/49-revision-v1/',0,'revision','',0),(1599,1,'2015-09-03 21:11:20','2015-09-03 21:11:20','<img class=\"aligncenter wp-image-1597 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/man-on-wall.jpeg\" alt=\"man on wall\" width=\"2592\" height=\"1459\" />\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\n<strong>Second Saturday\'s</strong>: Once a month the men of TCB gather to pray on Saturday\'s at 8:30 am. Sometimes we do breakfast and sometimes we do an AM Bible study. This is focused on an hour and a half on Saturday to ensure we pray for one another.\r\n\r\n<strong>Men\'s Conference:</strong> Once a year, we host a Men\'s Conference. This conference features special speakers, excellent praise and worship music, and fellowship for men, their sons, and teenage boys. Come join us at the next conference to fill up your spirit with the Word of God and preaching for men, to revive and refresh your spirit in Christ. Check it out here <a href=\"http://www.generatingleaders.com/\">GeneratingLeaders.com</a>\r\n\r\n<strong>Special Partnership Events:</strong> In New England, we partner with other men\'s organizations that will create a healthy atmosphere for the men in our church and community. Many men do not have to feel alone. Here they can engage in sports, events, or just one on one guy-time.\r\n\r\nFor All Men\'s Events Please Contact <a href=\"mailto:lashombc@yahoo.com\">Clem Lashomb</a>\r\n\r\n[/ap_tagline_box]','Men\'s Ministry','','inherit','open','open','','49-revision-v1','','','2015-09-03 21:11:20','2015-09-03 21:11:20','',49,'http://www.mytwincity.org/2015/09/03/49-revision-v1/',0,'revision','',0),(1600,1,'2015-09-04 15:45:47','2015-09-04 15:45:47','','womantablet','','inherit','open','open','','womantablet','','','2015-09-04 15:45:47','2015-09-04 15:45:47','',51,'http://www.mytwincity.org/wp-content/uploads/2015/07/womantablet.jpeg',0,'attachment','image/jpeg',0),(1601,1,'2015-09-04 15:46:13','2015-09-04 15:46:13','<img class=\"aligncenter size-full wp-image-1600\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/womantablet.jpeg\" alt=\"womantablet\" width=\"5000\" height=\"3333\" />','Women\'s Ministry','','inherit','open','open','','51-revision-v1','','','2015-09-04 15:46:13','2015-09-04 15:46:13','',51,'http://www.mytwincity.org/2015/09/04/51-revision-v1/',0,'revision','',0),(1602,1,'2015-09-04 15:47:18','2015-09-04 15:47:18','<img class=\"aligncenter size-full wp-image-1600\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/womantablet.jpeg\" alt=\"womantablet\" width=\"5000\" height=\"3333\" />\n\n \n\n ','Women\'s Ministry','','inherit','open','open','','51-autosave-v1','','','2015-09-04 15:47:18','2015-09-04 15:47:18','',51,'http://www.mytwincity.org/2015/09/04/51-autosave-v1/',0,'revision','',0),(1603,1,'2015-09-04 15:48:14','2015-09-04 15:48:14','<img class=\"aligncenter size-full wp-image-1600\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/womantablet.jpeg\" alt=\"womantablet\" width=\"5000\" height=\"3333\" />\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>What will you find in the TCB Women\'s Ministry?</strong></h2>\r\nYou will be inspired, rejuvenated, and experience growth through weekly Bible studies, Wednesday evening worship and prayer, retreats, luncheons, and more. No matter your life stage, all women are welcome!\r\n<h3><strong>Enjoy building relationships?</strong></h3>\r\nWe know how you feel. Relationships are integral and vital to our lives as women. Our ministry provides encouraging community to equip and challenge you to live out your God-given potential on a daily basis.\r\n<h3><strong>Want to grow in Christ at the same time?</strong></h3>\r\nEverything we do is built on a Biblical foundation. We offer Bible studies throughout the year to help you grow, connect, and learn more about the Lord.\r\n<h3><strong>Love serving others?</strong></h3>\r\nWe want to help you serve others in a greater fashion by giving you the tools you need to be a confident follower of Christ who proclaims Him boldly and loves others. Opportunities to serve are offered throughout the year.\r\n\r\n[/ap_tagline_box]','Women\'s Ministry','','inherit','open','open','','51-revision-v1','','','2015-09-04 15:48:14','2015-09-04 15:48:14','',51,'http://www.mytwincity.org/2015/09/04/51-revision-v1/',0,'revision','',0),(1604,1,'2015-09-04 15:56:47','2015-09-04 15:56:47','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Ladies\' Bible Study</strong></h3>\r\nSunday 9:45 AM\r\n\r\n“The aged women...that they may teach the young women\" Titus 2:3-4. This Bible study has easy main floor access to the church. The purpose of this Bible study was so the senior saints can meet to share wisdom and fellowship. However, younger women that wish to learn from these ladies\' life experiences often join the class to make it more diverse in age range.\r\n\r\n[/ap_tagline_box]','Senior Citizen\'s Ministry','','inherit','open','open','','53-revision-v1','','','2015-09-04 15:56:47','2015-09-04 15:56:47','',53,'http://www.mytwincity.org/2015/09/04/53-revision-v1/',0,'revision','',0),(1605,1,'2015-09-04 16:00:11','2015-09-04 16:00:11','<h2>[ap_column_wrap]\r\n[ap_column span=\"3\"]</h2>\r\n<h2><strong>Meet Our Founding Pastor</strong></h2>\r\n<img class=\"alignnone wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n<h2>[/ap_column]\r\n[ap_column span=\"3\"]</h2>\r\n<h3><strong>Co-Pastor</strong></h3>\r\n<img class=\"alignnone wp-image-1568 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/family-pic.jpg\" alt=\"family pic\" width=\"500\" height=\"327\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA. [/ap_tagline_box]\r\n<h2>[/ap_column]\r\n[/ap_column_wrap]</h2>\r\n<h2></h2>\r\n \r\n<h3></h3>\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','open','open','','33-revision-v1','','','2015-09-04 16:00:11','2015-09-04 16:00:11','',33,'http://www.mytwincity.org/2015/09/04/33-revision-v1/',0,'revision','',0),(1606,1,'2015-09-04 16:02:15','2015-09-04 16:02:15','<h2>[ap_column_wrap]\r\n[ap_column span=\"3\"]</h2>\r\n<h2><strong>Meet Our Founding Pastor</strong></h2>\r\n<img class=\"alignnone wp-image-1567 size-medium\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER-300x263.jpg\" alt=\"FOUNDER\" width=\"300\" height=\"263\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n<h2>[/ap_column]\r\n[ap_column span=\"3\"]</h2>\r\n<h3><strong>Co-Pastor</strong></h3>\r\n<img class=\"alignright wp-image-1568 size-medium\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/family-pic-300x196.jpg\" alt=\"family pic\" width=\"300\" height=\"196\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA. [/ap_tagline_box]\r\n<h2>[/ap_column]\r\n[/ap_column_wrap]</h2>\r\n<h2></h2>\r\n \r\n<h3></h3>\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','open','open','','33-revision-v1','','','2015-09-04 16:02:15','2015-09-04 16:02:15','',33,'http://www.mytwincity.org/2015/09/04/33-revision-v1/',0,'revision','',0),(1607,1,'2015-09-04 16:03:13','2015-09-04 16:03:13','<h2><strong>Meet Our Founding Pastor</strong></h2>\r\n<img class=\"alignnone wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n<h3><strong>Co-Pastor</strong></h3>\r\n<img class=\"alignnone wp-image-1568 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/family-pic.jpg\" alt=\"family pic\" width=\"500\" height=\"327\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA. [/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','open','open','','33-revision-v1','','','2015-09-04 16:03:13','2015-09-04 16:03:13','',33,'http://www.mytwincity.org/2015/09/04/33-revision-v1/',0,'revision','',0),(1610,1,'2015-09-25 12:59:23','2015-09-25 12:59:23',' \r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\n<strong>Second Saturday\'s</strong>: Once a month the men of TCB gather to pray on Saturday\'s at 8:30 am. Sometimes we do breakfast and sometimes we do an AM Bible study. This is focused on an hour and a half on Saturday to ensure we pray for one another.\r\n\r\n<strong>Special Partnership Events:</strong> In New England, we partner with other men\'s organizations that will create a healthy atmosphere for the men in our church and community. Many men do not have to feel alone. Here they can engage in sports, events, or just one on one guy-time.\r\n\r\nFor All Men\'s Events Please Contact <a href=\"mailto:lashombc@yahoo.com\">Clem Lashomb</a>\r\n\r\n[/ap_tagline_box]','Men\'s Ministry','','inherit','open','open','','49-revision-v1','','','2015-09-25 12:59:23','2015-09-25 12:59:23','',49,'http://www.mytwincity.org/2015/09/25/49-revision-v1/',0,'revision','',0),(1611,1,'2015-09-25 13:00:06','2015-09-25 13:00:06',' \r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>What will you find in the TCB Women\'s Ministry?</strong></h2>\r\nYou will be inspired, rejuvenated, and experience growth through weekly Bible studies, Wednesday evening worship and prayer, retreats, luncheons, and more. No matter your life stage, all women are welcome!\r\n<h3><strong>Enjoy building relationships?</strong></h3>\r\nWe know how you feel. Relationships are integral and vital to our lives as women. Our ministry provides encouraging community to equip and challenge you to live out your God-given potential on a daily basis.\r\n<h3><strong>Want to grow in Christ at the same time?</strong></h3>\r\nEverything we do is built on a Biblical foundation. We offer Bible studies throughout the year to help you grow, connect, and learn more about the Lord.\r\n<h3><strong>Love serving others?</strong></h3>\r\nWe want to help you serve others in a greater fashion by giving you the tools you need to be a confident follower of Christ who proclaims Him boldly and loves others. Opportunities to serve are offered throughout the year.\r\n\r\n[/ap_tagline_box]','Women\'s Ministry','','inherit','open','open','','51-revision-v1','','','2015-09-25 13:00:06','2015-09-25 13:00:06','',51,'http://www.mytwincity.org/2015/09/25/51-revision-v1/',0,'revision','',0),(1612,1,'2015-09-25 13:01:08','2015-09-25 13:01:08','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>What will you find in the TCB Women\'s Ministry?</strong></h2>\r\nYou will be inspired, rejuvenated, and experience growth through weekly Bible studies, Wednesday evening worship and prayer, retreats, luncheons, and more. No matter your life stage, all women are welcome!\r\n<h3><strong>Enjoy building relationships?</strong></h3>\r\nWe know how you feel. Relationships are integral and vital to our lives as women. Our ministry provides encouraging community to equip and challenge you to live out your God-given potential on a daily basis.\r\n<h3><strong>Want to grow in Christ at the same time?</strong></h3>\r\nEverything we do is built on a Biblical foundation. We offer Bible studies throughout the year to help you grow, connect, and learn more about the Lord.\r\n<h3><strong>Love serving others?</strong></h3>\r\nWe want to help you serve others in a greater fashion by giving you the tools you need to be a confident follower of Christ who proclaims Him boldly and loves others. Opportunities to serve are offered throughout the year.\r\n\r\n[/ap_tagline_box]','Women\'s Ministry','','inherit','open','open','','51-revision-v1','','','2015-09-25 13:01:08','2015-09-25 13:01:08','',51,'http://www.mytwincity.org/2015/09/25/51-revision-v1/',0,'revision','',0),(1613,1,'2015-09-25 13:01:47','2015-09-25 13:01:47','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\n<strong>Second Saturday\'s</strong>: Once a month the men of TCB gather to pray on Saturday\'s at 8:30 am. Sometimes we do breakfast and sometimes we do an AM Bible study. This is focused on an hour and a half on Saturday to ensure we pray for one another.\r\n\r\n<strong>Special Partnership Events:</strong> In New England, we partner with other men\'s organizations that will create a healthy atmosphere for the men in our church and community. Many men do not have to feel alone. Here they can engage in sports, events, or just one on one guy-time.\r\n\r\nFor All Men\'s Events Please Contact <a href=\"mailto:lashombc@yahoo.com\">Clem Lashomb</a>\r\n\r\n[/ap_tagline_box]','Men\'s Ministry','','inherit','open','open','','49-revision-v1','','','2015-09-25 13:01:47','2015-09-25 13:01:47','',49,'http://www.mytwincity.org/2015/09/25/49-revision-v1/',0,'revision','',0),(1614,1,'2015-09-29 15:49:45','2015-09-29 15:49:45',' \r\n<h1><strong>Welcome To City Teens</strong></h1>\r\nCity Teens is a youth group for all teens in grades 7-12 who are seeking to grow in their walk with Jesus or maybe just wondering who Jesus is. We want our teens to have their own faith and not just follow Jesus because their friends or family follows Him. Our goal is that they will graduate from City Teens and continue serving Jesus for the rest of their lives.\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Vision</strong></h3>\r\nPreparing students with the knowledge they need to have a growing relationship with Jesus and to be able to share that relationship with others.\r\n<h3><strong>About</strong></h3>\r\nCity Teens has 3 distinct programs throughout the week located in the Larson Center:\r\n\r\n[ap_toggle title=\"<strong>Rise-Up</strong>\" status=\"close\"]Our Sunday morning program from 10-11am where we have a time of prayer requests and teaching of God’s Word. This is our main teaching program.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Refuel</strong>\" status=\"close\"]Our Sunday evening program from 5-6:30pm where we have snacks, games, and a short devotional geared towards topics that every teen can relate to.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Revive</strong>\" status=\"close\"]Our Wednesday evening program from 6:30-8pm that includes games and a Bible study geared towards our teens having conversations about what they are learning.[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">We have done activities in the past including lock-ins, campfire and s’mores, Reverb Word of Life, AHL Hockey games, roller skating, concerts, and the list goes on. Check the calendar below for more details on upcoming events.</span> [/ap_tagline_box]\r\n\r\n \r\n<h4><strong>Like us on <a href=\"https://www.facebook.com/pages/City-Teens/135540556474196\">Facebook</a> </strong>and keep current with the latest events!</h4>\r\n<h4><strong>For more information on getting connected, <a href=\"mailto:twincityteens@gmail.com?subject=Get%20Connected%20with%20City%20Teens%20From%20Website\">Contact us here</a></strong></h4>\r\n \r\n\r\n[gcal id=\"1589\"]\r\n\r\n \r\n\r\n ','City Teens','','inherit','open','open','','45-revision-v1','','','2015-09-29 15:49:45','2015-09-29 15:49:45','',45,'http://www.mytwincity.org/2015/09/29/45-revision-v1/',0,'revision','',0),(1615,1,'2015-09-29 15:50:26','2015-09-29 15:50:26','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\"><img class=\"aligncenter wp-image-1585 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\" alt=\"CITY TEENS BANNER_wide\" width=\"960\" height=\"480\" /></a>\r\n\r\n \r\n<h2><strong>Welcome To City Teens</strong></h2>\r\nCity Teens is a youth group for all teens in grades 7-12 who are seeking to grow in their walk with Jesus or maybe just wondering who Jesus is. We want our teens to have their own faith and not just follow Jesus because their friends or family follows Him. Our goal is that they will graduate from City Teens and continue serving Jesus for the rest of their lives.\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Vision</strong></h3>\r\nPreparing students with the knowledge they need to have a growing relationship with Jesus and to be able to share that relationship with others.\r\n<h3><strong>About</strong></h3>\r\nCity Teens has 3 distinct programs throughout the week located in the Larson Center:\r\n\r\n[ap_toggle title=\"<strong>Rise-Up</strong>\" status=\"close\"]Our Sunday morning program from 10-11am where we have a time of prayer requests and teaching of God’s Word. This is our main teaching program.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Refuel</strong>\" status=\"close\"]Our Sunday evening program from 5-6:30pm where we have snacks, games, and a short devotional geared towards topics that every teen can relate to.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Revive</strong>\" status=\"close\"]Our Wednesday evening program from 6:30-8pm that includes games and a Bible study geared towards our teens having conversations about what they are learning.[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">We have done activities in the past including lock-ins, campfire and s’mores, Reverb Word of Life, AHL Hockey games, roller skating, concerts, and the list goes on. Check the calendar below for more details on upcoming events.</span> [/ap_tagline_box]\r\n\r\n \r\n<h4><strong>Like us on <a href=\"https://www.facebook.com/pages/City-Teens/135540556474196\">Facebook</a> </strong>and keep current with the latest events!</h4>\r\n<h4><strong>For more information on getting connected, <a href=\"mailto:twincityteens@gmail.com?subject=Get%20Connected%20with%20City%20Teens%20From%20Website\">Contact us here</a></strong></h4>\r\n \r\n\r\n[gcal id=\"1589\"]\r\n\r\n \r\n\r\n ','City Teens','','inherit','open','open','','45-revision-v1','','','2015-09-29 15:50:26','2015-09-29 15:50:26','',45,'http://www.mytwincity.org/2015/09/29/45-revision-v1/',0,'revision','',0),(1616,1,'2015-09-29 15:50:39','2015-09-29 15:50:39',' \r\n\r\n \r\n<h2><strong>Welcome To City Teens</strong></h2>\r\nCity Teens is a youth group for all teens in grades 7-12 who are seeking to grow in their walk with Jesus or maybe just wondering who Jesus is. We want our teens to have their own faith and not just follow Jesus because their friends or family follows Him. Our goal is that they will graduate from City Teens and continue serving Jesus for the rest of their lives.\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Vision</strong></h3>\r\nPreparing students with the knowledge they need to have a growing relationship with Jesus and to be able to share that relationship with others.\r\n<h3><strong>About</strong></h3>\r\nCity Teens has 3 distinct programs throughout the week located in the Larson Center:\r\n\r\n[ap_toggle title=\"<strong>Rise-Up</strong>\" status=\"close\"]Our Sunday morning program from 10-11am where we have a time of prayer requests and teaching of God’s Word. This is our main teaching program.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Refuel</strong>\" status=\"close\"]Our Sunday evening program from 5-6:30pm where we have snacks, games, and a short devotional geared towards topics that every teen can relate to.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Revive</strong>\" status=\"close\"]Our Wednesday evening program from 6:30-8pm that includes games and a Bible study geared towards our teens having conversations about what they are learning.[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">We have done activities in the past including lock-ins, campfire and s’mores, Reverb Word of Life, AHL Hockey games, roller skating, concerts, and the list goes on. Check the calendar below for more details on upcoming events.</span> [/ap_tagline_box]\r\n\r\n \r\n<h4><strong>Like us on <a href=\"https://www.facebook.com/pages/City-Teens/135540556474196\">Facebook</a> </strong>and keep current with the latest events!</h4>\r\n<h4><strong>For more information on getting connected, <a href=\"mailto:twincityteens@gmail.com?subject=Get%20Connected%20with%20City%20Teens%20From%20Website\">Contact us here</a></strong></h4>\r\n \r\n\r\n[gcal id=\"1589\"]\r\n\r\n \r\n\r\n ','City Teens','','inherit','open','open','','45-revision-v1','','','2015-09-29 15:50:39','2015-09-29 15:50:39','',45,'http://www.mytwincity.org/2015/09/29/45-revision-v1/',0,'revision','',0),(1617,1,'2015-09-29 15:50:58','2015-09-29 15:50:58',' \r\n<h2><strong>Welcome To City Teens</strong></h2>\r\nCity Teens is a youth group for all teens in grades 7-12 who are seeking to grow in their walk with Jesus or maybe just wondering who Jesus is. We want our teens to have their own faith and not just follow Jesus because their friends or family follows Him. Our goal is that they will graduate from City Teens and continue serving Jesus for the rest of their lives.\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Vision</strong></h3>\r\nPreparing students with the knowledge they need to have a growing relationship with Jesus and to be able to share that relationship with others.\r\n<h3><strong>About</strong></h3>\r\nCity Teens has 3 distinct programs throughout the week located in the Larson Center:\r\n\r\n[ap_toggle title=\"<strong>Rise-Up</strong>\" status=\"close\"]Our Sunday morning program from 10-11am where we have a time of prayer requests and teaching of God’s Word. This is our main teaching program.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Refuel</strong>\" status=\"close\"]Our Sunday evening program from 5-6:30pm where we have snacks, games, and a short devotional geared towards topics that every teen can relate to.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Revive</strong>\" status=\"close\"]Our Wednesday evening program from 6:30-8pm that includes games and a Bible study geared towards our teens having conversations about what they are learning.[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">We have done activities in the past including lock-ins, campfire and s’mores, Reverb Word of Life, AHL Hockey games, roller skating, concerts, and the list goes on. Check the calendar below for more details on upcoming events.</span> [/ap_tagline_box]\r\n\r\n \r\n<h4><strong>Like us on <a href=\"https://www.facebook.com/pages/City-Teens/135540556474196\">Facebook</a> </strong>and keep current with the latest events!</h4>\r\n<h4><strong>For more information on getting connected, <a href=\"mailto:twincityteens@gmail.com?subject=Get%20Connected%20with%20City%20Teens%20From%20Website\">Contact us here</a></strong></h4>\r\n \r\n\r\n[gcal id=\"1589\"]\r\n\r\n \r\n\r\n ','City Teens','','inherit','open','open','','45-revision-v1','','','2015-09-29 15:50:58','2015-09-29 15:50:58','',45,'http://www.mytwincity.org/2015/09/29/45-revision-v1/',0,'revision','',0),(1618,1,'2015-09-29 15:51:15','2015-09-29 15:51:15','<strong>Welcome To City Teens</strong>\r\n\r\nCity Teens is a youth group for all teens in grades 7-12 who are seeking to grow in their walk with Jesus or maybe just wondering who Jesus is. We want our teens to have their own faith and not just follow Jesus because their friends or family follows Him. Our goal is that they will graduate from City Teens and continue serving Jesus for the rest of their lives.\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Vision</strong></h3>\r\nPreparing students with the knowledge they need to have a growing relationship with Jesus and to be able to share that relationship with others.\r\n<h3><strong>About</strong></h3>\r\nCity Teens has 3 distinct programs throughout the week located in the Larson Center:\r\n\r\n[ap_toggle title=\"<strong>Rise-Up</strong>\" status=\"close\"]Our Sunday morning program from 10-11am where we have a time of prayer requests and teaching of God’s Word. This is our main teaching program.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Refuel</strong>\" status=\"close\"]Our Sunday evening program from 5-6:30pm where we have snacks, games, and a short devotional geared towards topics that every teen can relate to.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Revive</strong>\" status=\"close\"]Our Wednesday evening program from 6:30-8pm that includes games and a Bible study geared towards our teens having conversations about what they are learning.[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">We have done activities in the past including lock-ins, campfire and s’mores, Reverb Word of Life, AHL Hockey games, roller skating, concerts, and the list goes on. Check the calendar below for more details on upcoming events.</span> [/ap_tagline_box]\r\n\r\n \r\n<h4><strong>Like us on <a href=\"https://www.facebook.com/pages/City-Teens/135540556474196\">Facebook</a> </strong>and keep current with the latest events!</h4>\r\n<h4><strong>For more information on getting connected, <a href=\"mailto:twincityteens@gmail.com?subject=Get%20Connected%20with%20City%20Teens%20From%20Website\">Contact us here</a></strong></h4>\r\n \r\n\r\n[gcal id=\"1589\"]\r\n\r\n \r\n\r\n ','City Teens','','inherit','open','open','','45-revision-v1','','','2015-09-29 15:51:15','2015-09-29 15:51:15','',45,'http://www.mytwincity.org/2015/09/29/45-revision-v1/',0,'revision','',0),(1619,1,'2015-09-29 15:52:52','2015-09-29 15:52:52','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\"><img class=\"aligncenter wp-image-1585 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/CITY-TEENS-BANNER_wide.jpg\" alt=\"CITY TEENS BANNER_wide\" width=\"960\" height=\"480\" /></a>\r\n\r\n \r\n<h2><strong>Welcome To City Teens</strong></h2>\r\nCity Teens is a youth group for all teens in grades 7-12 who are seeking to grow in their walk with Jesus or maybe just wondering who Jesus is. We want our teens to have their own faith and not just follow Jesus because their friends or family follows Him. Our goal is that they will graduate from City Teens and continue serving Jesus for the rest of their lives.\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Vision</strong></h3>\r\nPreparing students with the knowledge they need to have a growing relationship with Jesus and to be able to share that relationship with others.\r\n<h3><strong>About</strong></h3>\r\nCity Teens has 3 distinct programs throughout the week located in the Larson Center:\r\n\r\n[ap_toggle title=\"<strong>Rise-Up</strong>\" status=\"close\"]Our Sunday morning program from 10-11am where we have a time of prayer requests and teaching of God’s Word. This is our main teaching program.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Refuel</strong>\" status=\"close\"]Our Sunday evening program from 5-6:30pm where we have snacks, games, and a short devotional geared towards topics that every teen can relate to.[/ap_toggle]\r\n\r\n[ap_toggle title=\"<strong>Revive</strong>\" status=\"close\"]Our Wednesday evening program from 6:30-8pm that includes games and a Bible study geared towards our teens having conversations about what they are learning.[/ap_toggle]\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]<span style=\"color: #ffffff;\">We have done activities in the past including lock-ins, campfire and s’mores, Reverb Word of Life, AHL Hockey games, roller skating, concerts, and the list goes on. Check the calendar below for more details on upcoming events.</span> [/ap_tagline_box]\r\n\r\n \r\n<h4><strong>Like us on <a href=\"https://www.facebook.com/pages/City-Teens/135540556474196\">Facebook</a> </strong>and keep current with the latest events!</h4>\r\n<h4><strong>For more information on getting connected, <a href=\"mailto:twincityteens@gmail.com?subject=Get%20Connected%20with%20City%20Teens%20From%20Website\">Contact us here</a></strong></h4>\r\n \r\n\r\n[gcal id=\"1589\"]\r\n\r\n \r\n\r\n ','City Teens','','inherit','open','open','','45-revision-v1','','','2015-09-29 15:52:52','2015-09-29 15:52:52','',45,'http://www.mytwincity.org/2015/09/29/45-revision-v1/',0,'revision','',0),(1620,1,'2015-09-29 15:58:38','2015-09-29 15:58:38',' ','','','publish','closed','closed','','1620','','','2015-09-30 15:43:41','2015-09-30 15:43:41','',15,'http://www.mytwincity.org/?p=1620',6,'nav_menu_item','',0),(1621,1,'2015-09-29 16:00:12','2015-09-29 16:00:12','<h2></h2>\r\n<h2><strong>Lead Pastor</strong></h2>\r\n<img class=\"alignnone wp-image-1568 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/family-pic.jpg\" alt=\"family pic\" width=\"500\" height=\"327\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA. [/ap_tagline_box]\r\n<h2><strong>Pastor Emeritus</strong></h2>\r\n<img class=\"alignnone wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','closed','closed','','33-revision-v1','','','2015-09-29 16:00:12','2015-09-29 16:00:12','',33,'http://www.mytwincity.org/2015/09/29/33-revision-v1/',0,'revision','',0),(1622,1,'2015-09-29 16:01:11','2015-09-29 16:01:11','<h2></h2>\r\n<h2><strong>Lead Pastor</strong></h2>\r\n<img class=\"aligncenter wp-image-1568 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/family-pic.jpg\" alt=\"family pic\" width=\"500\" height=\"327\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA. [/ap_tagline_box]\r\n<h2><strong>Pastor Emeritus</strong></h2>\r\n<img class=\"alignnone wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','closed','closed','','33-revision-v1','','','2015-09-29 16:01:11','2015-09-29 16:01:11','',33,'http://www.mytwincity.org/2015/09/29/33-revision-v1/',0,'revision','',0),(1623,1,'2015-09-29 16:08:07','2015-09-29 16:08:07','','moritzfam','','inherit','open','closed','','moritzfam','','','2015-09-29 16:08:07','2015-09-29 16:08:07','',33,'http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg',0,'attachment','image/jpeg',0),(1624,1,'2015-09-29 16:08:24','2015-09-29 16:08:24','<h2></h2>\r\n<h2><strong>Lead Pastor</strong></h2>\r\n<img class=\"aligncenter wp-image-1623 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"667\" height=\"1000\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA. [/ap_tagline_box]\r\n<h2><strong>Pastor Emeritus</strong></h2>\r\n<img class=\"alignnone wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','closed','closed','','33-revision-v1','','','2015-09-29 16:08:24','2015-09-29 16:08:24','',33,'http://www.mytwincity.org/2015/09/29/33-revision-v1/',0,'revision','',0),(1625,1,'2015-09-29 16:08:59','2015-09-29 16:08:59','<h2></h2>\r\n<h2><strong>Lead Pastor</strong></h2>\r\n<img class=\"wp-image-1623 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"667\" height=\"1000\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA. [/ap_tagline_box]\r\n<h2><strong>Pastor Emeritus</strong></h2>\r\n<img class=\"alignnone wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','closed','closed','','33-revision-v1','','','2015-09-29 16:08:59','2015-09-29 16:08:59','',33,'http://www.mytwincity.org/2015/09/29/33-revision-v1/',0,'revision','',0),(1626,1,'2015-09-29 16:11:19','2015-09-29 16:11:19','<h2 style=\"text-align: right;\"> <strong>Lead Pastor</strong></h2>\r\n<img class=\"wp-image-1623 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"667\" height=\"1000\" />\r\n<p style=\"text-align: left;\">[ap_tagline_box tag_box_style=\"ap-all-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA. [/ap_tagline_box]</p>\r\n\r\n<h2><strong>Pastor Emeritus</strong></h2>\r\n<img class=\"alignnone wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','closed','closed','','33-revision-v1','','','2015-09-29 16:11:19','2015-09-29 16:11:19','',33,'http://www.mytwincity.org/2015/09/29/33-revision-v1/',0,'revision','',0),(1627,1,'2015-09-29 16:17:41','2015-09-29 16:17:41','<h2 style=\"text-align: right;\"> <strong>Lead Pastor</strong></h2>\r\n<img class=\"wp-image-1623 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"667\" height=\"1000\" />\r\n<p style=\"text-align: left;\"></p>\r\n\r\n<h2><strong>Pastor Emeritus</strong></h2>\r\n<img class=\"alignnone wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','closed','closed','','33-revision-v1','','','2015-09-29 16:17:41','2015-09-29 16:17:41','',33,'http://www.mytwincity.org/2015/09/29/33-revision-v1/',0,'revision','',0),(1628,1,'2015-09-29 16:20:21','2015-09-29 16:20:21','<h2 style=\"text-align: left;\"> <strong>Lead Pastor</strong></h2>\r\n<img class=\"wp-image-1623 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"667\" height=\"1000\" />[ap_tagline_box tag_box_style=\"ap-left-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA.[/ap_tagline_box]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong>Pastor Emeritus</strong></h2>\r\n<img class=\"alignnone wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','closed','closed','','33-revision-v1','','','2015-09-29 16:20:21','2015-09-29 16:20:21','',33,'http://www.mytwincity.org/2015/09/29/33-revision-v1/',0,'revision','',0),(1629,1,'2015-09-29 16:22:04','2015-09-29 16:22:04','<h2 style=\"text-align: left;\"> <strong>Lead Pastor</strong></h2>\r\n<img class=\"wp-image-1623 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"667\" height=\"1000\" />[ap_tagline_box tag_box_style=\"ap-left-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA.[/ap_tagline_box]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2 style=\"text-align: right;\"> <strong>Pastor Emeritus</strong></h2>\r\n<img class=\"wp-image-1567 size-full alignleft\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\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[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','closed','closed','','33-revision-v1','','','2015-09-29 16:22:04','2015-09-29 16:22:04','',33,'http://www.mytwincity.org/2015/09/29/33-revision-v1/',0,'revision','',0),(1630,1,'2015-09-29 16:22:31','2015-09-29 16:22:31','<h2 style=\"text-align: left;\"> <strong>Lead Pastor</strong></h2>\r\n<img class=\"wp-image-1623 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"667\" height=\"1000\" />[ap_tagline_box tag_box_style=\"ap-left-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA.[/ap_tagline_box]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2 style=\"text-align: right;\"> <strong>Pastor Emeritus</strong></h2>\r\n<img class=\"wp-image-1567 size-full alignleft\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-right-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\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[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','closed','closed','','33-revision-v1','','','2015-09-29 16:22:31','2015-09-29 16:22:31','',33,'http://www.mytwincity.org/2015/09/29/33-revision-v1/',0,'revision','',0),(1631,1,'2015-09-29 16:22:59','2015-09-29 16:22:59','<h2 style=\"text-align: left;\"> <strong>Lead Pastor</strong></h2>\r\n<img class=\"wp-image-1623 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"667\" height=\"1000\" />[ap_tagline_box tag_box_style=\"ap-left-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA.[/ap_tagline_box]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2 style=\"text-align: right;\"></h2>\r\n<h2 style=\"text-align: right;\"><strong>Pastor Emeritus</strong></h2>\r\n<img class=\"wp-image-1567 size-full alignleft\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\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[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','closed','closed','','33-revision-v1','','','2015-09-29 16:22:59','2015-09-29 16:22:59','',33,'http://www.mytwincity.org/2015/09/29/33-revision-v1/',0,'revision','',0),(1632,1,'2015-09-29 16:23:33','2015-09-29 16:23:33','<h2 style=\"text-align: left;\"> <strong>Lead Pastor</strong></h2>\r\n<img class=\"wp-image-1623 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"667\" height=\"1000\" />[ap_tagline_box tag_box_style=\"ap-left-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA.[/ap_tagline_box]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2 style=\"text-align: right;\"></h2>\r\n<h2 style=\"text-align: right;\"><strong>Pastor Emeritus</strong></h2>\r\n<img class=\"wp-image-1567 size-full alignleft\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974. Both he and his wife, Sue, have faithfully served the Local Church for 40 Years. Read more <a href=\"http://www.mytwincity.org/new/founders/\">here</a>.\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-bg-box\"]\r\n\r\n<span style=\"color: #ffffff;\">If you have any questions about programs or for our pastors you can contact <strong>Lauren Ford, <a style=\"color: #ffffff;\" href=\"mailto:Pastor@twincitybaptist.com?subject=Email%20From%20Staff%20Page\">Email</a>, </strong><em>Administrative Assistant to the Pastors.</em></span>\r\n\r\n<span style=\"color: #ffffff;\"><em>Our Team is dedicated to excellence in bringing God glory in all that we say or do. If you have trouble contacting anyone, please call (978) 582-4901</em></span>\r\n\r\n[/ap_tagline_box]','Pastors','','inherit','closed','closed','','33-revision-v1','','','2015-09-29 16:23:33','2015-09-29 16:23:33','',33,'http://www.mytwincity.org/2015/09/29/33-revision-v1/',0,'revision','',0),(1633,1,'2015-09-29 16:28:01','2015-09-29 16:28:01','[su_heading size=\"30\"]2 WAYS THAT YOU BRING PEOPLE: INVEST & INVITE[/su_heading]\r\n\r\n[ap_column_wrap]\r\n[ap_column span=\"3\"][ap_tagline_box tag_box_style=\"ap-all-border-box\"]God wants people to invest into other people and invite people to grow in a relationship with Him.\r\n\r\nEveryone is a Bringer! You are our advertisement and the message of TCB. Everything that you do matters.\r\n\r\nPrayer is a huge factor at TCB. We pray about everything because we believe that God is Bigger than we are. We have established three key areas so that you can bring people to Jesus:[/ap_tagline_box][/ap_column]\r\n[ap_column span=\"3\"][su_list icon=\"icon: check-circle\"]\r\n<ul>\r\n <li>Pray about what and how you are giving: Your time, tresures and your talents. (see our Giving Page)/li></li>\r\n <li>Praying by investing and inviting people to come on Sunday morning and connection events.</li>\r\n <li>Prayer by reaching people through all methods available.</li>\r\n</ul>\r\n[/su_list]\r\n\r\n[su_button url=\"http://www.mytwincity.org/give\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: money\"]Online Giving at TCB[/su_button]\r\n\r\n[su_spacer]\r\n\r\n[su_button url=\"http://www.mytwincity.org/bring/current-teaching-series/\" target=\"blank\" style=\"glass\" background=\"#709dc4\" size=\"8\" center=\"yes\" icon=\"icon: th-list\"]Current Teaching Series[/su_button][/ap_column]\r\n[/ap_column_wrap]\r\n\r\n ','Bring','','inherit','closed','closed','','23-revision-v1','','','2015-09-29 16:28:01','2015-09-29 16:28:01','',23,'http://www.mytwincity.org/2015/09/29/23-revision-v1/',0,'revision','',0),(1634,1,'2015-09-29 16:47:19','2015-09-29 16:47:19','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>CITY KIDS: Children\'s Ministries</strong></h2>\r\nWhile your little ones are learning about Jesus, you can feel secure in knowing your little ones are safe!\r\n\r\nAll volunteers and church staff working with our young people are interviewed by the Children\'s Ministry Director and/or the Pastor personally and have background checks to ensure safety.\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Nursery</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Nursery is always available at TCB for all services for children under 3 years old by ladies with young child/infant experience. Parents are encouraged to bring their own food or drink if needed (in case of food allergies. We are a peanut/tree nut free facility). These precious ones enjoy Bible Songs and free-play with age appropriate toys.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Mornings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Children\'s Sunday School</strong></h3>\r\nSunday Mornings 9:45 AM (Ages 4 through 12)\r\n\r\nSunday School is a time that children really get to learn the fundamentals of the Christian faith and walk through the various stories of the Bible geared to their age level. Curriculum provided by Joyful Life, a subsidiary of A Beka Publications.\r\n\r\n \r\n<h3><strong>Junior Church</strong></h3>\r\nSunday Worship Time 11:00 AM (Ages 4 through 12)\r\n\r\nThe Junior Church Hour is an extension of the Bible learning time where all the children get to continue to learn about the Lord with fun, hands-on, interactive Bible activities appropriate for their age level. Children can also win awards for bringing visitors, consistent attendance, and Bible memory.\r\n\r\n[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Word of Life Club: Olympians</strong></h3>\r\nSunday Nights 5:00 PM (Ages 4 through 12)\r\n\r\nThis program teaches children and their parents how to have a quiet time with God and learn the basics of what it means to spend quality time with the Lord. There is music, games, and creative ways to learn the Bible in a relevant way.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Wednesday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Olympians\' Club Mid-week Meetup</strong></h3>\r\nWednesday Nights 6:30 PM (Ages 4 through 12)\r\n\r\nThis is simply a mid-week checkup time for children who are participating in the Sunday night Olympian Club from Word of Life. There is games, Bible memory, snacks, and fun!\r\n\r\n[/ap_tagline_box][/ap_tab]\r\n[/ap_tab_group]','City Kids','','inherit','closed','closed','','43-revision-v1','','','2015-09-29 16:47:19','2015-09-29 16:47:19','',43,'http://www.mytwincity.org/2015/09/29/43-revision-v1/',0,'revision','',0),(1635,1,'2015-09-29 16:47:31','2015-09-29 16:47:31','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h2><strong>CITY KIDS: Children\'s Ministries</strong></h2>\r\nWhile your little ones are learning about Jesus, you can feel secure in knowing your little ones are safe!\r\n\r\nAll volunteers and church staff working with our young people are interviewed by the Children\'s Ministry Director and/or the Pastor personally and have background checks to ensure safety.\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tab_group type=\"vertical\"]\r\n[ap_tab title=\"<strong>Nursery</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]Nursery is always available at TCB for all services for children under 3 years old by ladies with young child/infant experience. Parents are encouraged to bring their own food or drink if needed (in case of food allergies. We are a peanut/tree nut free facility). These precious ones enjoy Bible Songs and free-play with age appropriate toys.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Mornings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Children\'s Sunday School</strong></h3>\r\nSunday Mornings 9:45 AM (Ages 4 through 12)\r\n\r\nSunday School is a time that children really get to learn the fundamentals of the Christian faith and walk through the various stories of the Bible geared to their age level. Curriculum provided by Joyful Life, a subsidiary of A Beka Publications.\r\n\r\n \r\n<h3><strong>Children\'s Church</strong></h3>\r\nSunday Worship Time 11:00 AM (Ages 4 through 12)\r\n\r\nThe Junior Church Hour is an extension of the Bible learning time where all the children get to continue to learn about the Lord with fun, hands-on, interactive Bible activities appropriate for their age level. Children can also win awards for bringing visitors, consistent attendance, and Bible memory.\r\n\r\n[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Sunday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Word of Life Club: Olympians</strong></h3>\r\nSunday Nights 5:00 PM (Ages 4 through 12)\r\n\r\nThis program teaches children and their parents how to have a quiet time with God and learn the basics of what it means to spend quality time with the Lord. There is music, games, and creative ways to learn the Bible in a relevant way.[/ap_tagline_box][/ap_tab]\r\n[ap_tab title=\"<strong>Wednesday Evenings</strong>\"][ap_tagline_box tag_box_style=\"ap-left-border-box\"]\r\n<h3><strong>Olympians\' Club Mid-week Meetup</strong></h3>\r\nWednesday Nights 6:30 PM (Ages 4 through 12)\r\n\r\nThis is simply a mid-week checkup time for children who are participating in the Sunday night Olympian Club from Word of Life. There is games, Bible memory, snacks, and fun!\r\n\r\n[/ap_tagline_box][/ap_tab]\r\n[/ap_tab_group]','City Kids','','inherit','closed','closed','','43-revision-v1','','','2015-09-29 16:47:31','2015-09-29 16:47:31','',43,'http://www.mytwincity.org/2015/09/29/43-revision-v1/',0,'revision','',0),(1636,1,'2015-09-30 15:07:20','2015-09-30 15:07:20',' ','','','publish','closed','closed','','1636','','','2015-09-30 15:07:20','2015-09-30 15:07:20','',1307,'http://www.mytwincity.org/?p=1636',1,'nav_menu_item','',0),(1637,1,'2015-09-30 15:07:20','2015-09-30 15:07:20','','Learn More','','publish','closed','closed','','learn-more','','','2015-09-30 15:07:20','2015-09-30 15:07:20','',0,'http://www.mytwincity.org/?p=1637',2,'nav_menu_item','',0),(1638,1,'2015-09-30 15:07:20','2015-09-30 15:07:20','','Get Involved','','publish','closed','closed','','get-involved','','','2015-09-30 15:07:20','2015-09-30 15:07:20','',0,'http://www.mytwincity.org/?p=1638',3,'nav_menu_item','',0),(1639,1,'2015-09-30 15:07:20','2015-09-30 15:07:20',' ','','','publish','closed','closed','','1639','','','2015-09-30 15:07:20','2015-09-30 15:07:20','',763,'http://www.mytwincity.org/?p=1639',4,'nav_menu_item','',0),(1640,1,'2015-09-30 15:07:20','2015-09-30 15:07:20','','Give Online','','publish','closed','closed','','give-online','','','2015-09-30 15:07:20','2015-09-30 15:07:20','',0,'http://www.mytwincity.org/?p=1640',5,'nav_menu_item','',0),(1641,1,'2015-09-30 15:16:32','2015-09-30 15:16:32','','Our Beliefs','','publish','closed','closed','','our-beliefs','','','2015-09-30 15:57:07','2015-09-30 15:57:07','',0,'http://www.mytwincity.org/?p=1641',1,'nav_menu_item','',0),(1642,1,'2015-09-30 15:16:32','2015-09-30 15:16:32',' ','','','publish','closed','closed','','pastor-gary','','','2015-09-30 15:57:08','2015-09-30 15:57:08','',15,'http://www.mytwincity.org/?p=1642',2,'nav_menu_item','',0),(1646,1,'2015-09-30 15:17:45','2015-09-30 15:17:45','','City University','','publish','closed','closed','','1646','','','2015-09-30 15:57:08','2015-09-30 15:57:08','',19,'http://www.mytwincity.org/?p=1646',3,'nav_menu_item','',0),(1650,1,'2015-09-30 15:20:33','2015-09-30 15:20:33',' ','','','publish','closed','closed','','1650','','','2015-09-30 15:22:07','2015-09-30 15:22:07','',1307,'http://www.mytwincity.org/?p=1650',3,'nav_menu_item','',0),(1651,1,'2015-09-30 15:20:33','2015-09-30 15:20:33',' ','','','publish','closed','closed','','1651','','','2015-09-30 15:22:07','2015-09-30 15:22:07','',1307,'http://www.mytwincity.org/?p=1651',4,'nav_menu_item','',0),(1652,1,'2015-09-30 15:20:32','2015-09-30 15:20:32','','Sermon Archive','','publish','closed','closed','','sermon-archive','','','2015-09-30 15:22:07','2015-09-30 15:22:07','',1307,'http://www.mytwincity.org/?p=1652',2,'nav_menu_item','',0),(1653,1,'2015-09-30 15:20:32','2015-09-30 15:20:32',' ','','','publish','closed','closed','','1653','','','2015-09-30 15:22:07','2015-09-30 15:22:07','',1307,'http://www.mytwincity.org/?p=1653',1,'nav_menu_item','',0),(1654,1,'2015-09-30 15:22:07','2015-09-30 15:22:07','','Facebook','','publish','closed','closed','','facebook-2','','','2015-09-30 15:22:07','2015-09-30 15:22:07','',0,'http://www.mytwincity.org/?p=1654',5,'nav_menu_item','',0),(1655,1,'2015-09-30 15:22:07','2015-09-30 15:22:07','','Twitter','','publish','closed','closed','','twitter-2','','','2015-09-30 15:22:07','2015-09-30 15:22:07','',0,'http://www.mytwincity.org/?p=1655',6,'nav_menu_item','',0),(1656,1,'2015-09-30 15:24:02','2015-09-30 15:24:02','','Get Baptized','','publish','closed','closed','','1656','','','2015-09-30 15:26:28','2015-09-30 15:26:28','',17,'http://www.mytwincity.org/?p=1656',2,'nav_menu_item','',0),(1657,1,'2015-09-30 15:24:02','2015-09-30 15:24:02','','Accepting Jesus','','publish','closed','closed','','accepting-jesus','','','2015-09-30 15:26:28','2015-09-30 15:26:28','',17,'http://www.mytwincity.org/?p=1657',1,'nav_menu_item','',0),(1659,1,'2015-09-30 15:26:22','2015-09-30 15:26:22','','I have a question...','','publish','closed','closed','','i-have-a-question','','','2015-09-30 15:26:28','2015-09-30 15:26:28','',0,'http://www.mytwincity.org/?p=1659',4,'nav_menu_item','',0),(1660,1,'2015-09-30 15:26:22','2015-09-30 15:26:22','','Join TCB','','publish','closed','closed','','join-tcb','','','2015-09-30 15:26:28','2015-09-30 15:26:28','',0,'http://www.mytwincity.org/?p=1660',3,'nav_menu_item','',0),(1661,1,'2015-09-30 15:40:21','2015-09-30 15:40:21','<h2 style=\"text-align: left;\">Meet Pastor Gary</h2>\r\n<img class=\"wp-image-1623 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"667\" height=\"1000\" />[ap_tagline_box tag_box_style=\"ap-left-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA.[/ap_tagline_box]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2 style=\"text-align: right;\"></h2>\r\n<h2 style=\"text-align: right;\"></h2>','Pastor Gary','','inherit','closed','closed','','33-revision-v1','','','2015-09-30 15:40:21','2015-09-30 15:40:21','',33,'http://www.mytwincity.org/2015/09/30/33-revision-v1/',0,'revision','',0),(1662,1,'2015-09-30 15:41:22','2015-09-30 15:41:22','<h2 style=\"text-align: left;\">Meet Pastor Gary</h2>\r\n<img class=\"alignright wp-image-1623\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/moritzfam.jpg\" alt=\"\" width=\"500\" height=\"750\" />[ap_tagline_box tag_box_style=\"ap-left-border-box\"]Pastor Gary Moritz and his family came to TCB in July of 2013 by faith and a strong call of God to New England from serving faithfully in Washington, DC/Northern Virginia area. He is a graduate of Liberty University and Liberty Baptist Theological Seminary in Lynchburg, VA.[/ap_tagline_box]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2 style=\"text-align: right;\"></h2>\r\n<h2 style=\"text-align: right;\"></h2>','Pastor Gary','','inherit','closed','closed','','33-revision-v1','','','2015-09-30 15:41:22','2015-09-30 15:41:22','',33,'http://www.mytwincity.org/2015/09/30/33-revision-v1/',0,'revision','',0),(1663,1,'2015-09-30 15:42:10','2015-09-30 15:42:10','[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h4><strong>OUR BELIEFS</strong></h4>\r\n<strong>Don\'t have a lot of time to read...Just need to know the basics...</strong>\r\n\r\nWe believe the Bible to be without error. The Bible reveals God, the spiritual separation of man from God, the way of salvation, and how to have a personal relationship with God. (II Tim. 3:15-16; II Peter 1:20-21)\r\n\r\nWe believe the one, true God reveals Himself in three distinct persons: God the Father, God the Son, and God the Holy Spirit. All three are co-eternal, co-powerful, and co-equal. (I John 5:7)\r\n\r\nWe believe that Jesus Christ is the Son of God, born of the virgin Mary. He lived a life without sin and is our example. (I Peter 2:21-25)\r\n\r\nWe believe salvation (a personal relationship with God) is by \"grace,\" plus nothing and minus nothing. This salvation is found only by receiving Jesus Christ into your life. Salvation is by repentance and faith (truly being sorrowful for your sins, confessing that Jesus Christ died for your sins, and inviting Him into your life). (Eph.2:8-9; Titus 3:5-7)\r\n\r\nWe believe in the visible and personal return of Jesus Christ. (I Thess. 4:16-17)\r\n\r\nWe believe that those who receive Jesus Christ will go to Heaven and those who reject Him will be separated from the Lord forever. (Rev. 20:10-15)\r\n\r\n[/ap_tagline_box]','Our Beliefs','','inherit','closed','closed','','31-revision-v1','','','2015-09-30 15:42:10','2015-09-30 15:42:10','',31,'http://www.mytwincity.org/2015/09/30/31-revision-v1/',0,'revision','',0),(1664,1,'2015-09-30 16:06:14','2015-09-30 16:06:14','<h2></h2>\r\n<img class=\"alignleft wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Meet Our Founding Pastor and His Wife</strong></h3>\r\n<div>\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\nTwin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.\r\n\r\nIn 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.\r\n\r\nOn February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.\r\n\r\nIn 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.\r\n\r\nOctober 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at <a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a>\r\n\r\n[/ap_tagline_box]','Emeritus','','inherit','closed','closed','','35-revision-v1','','','2015-09-30 16:06:14','2015-09-30 16:06:14','',35,'http://www.mytwincity.org/2015/09/30/35-revision-v1/',0,'revision','',0),(1665,1,'2015-09-30 16:10:26','2015-09-30 16:10:26','<h2></h2>\r\n<img class=\"alignleft wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-all-border-box\"]\r\n<h3><strong>Meet Our Founding Pastor and His Wife</strong></h3>\r\n<div>\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\nTwin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.\r\n\r\nIn 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.\r\n\r\nOn February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.\r\n\r\nIn 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.\r\n\r\nOctober 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at <a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a>\r\n\r\n[/ap_tagline_box]','Emeritus','','inherit','closed','closed','','35-revision-v1','','','2015-09-30 16:10:26','2015-09-30 16:10:26','',35,'http://www.mytwincity.org/2015/09/30/35-revision-v1/',0,'revision','',0),(1666,1,'2015-09-30 16:11:08','2015-09-30 16:11:08','<h2></h2>\r\n<img class=\"alignleft wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]\r\n<h3><strong>Meet Our Founding Pastor and His Wife</strong></h3>\r\n<div>\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\nTwin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.\r\n\r\nIn 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.\r\n\r\nOn February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.\r\n\r\nIn 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.\r\n\r\nOctober 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at <a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a>\r\n\r\n[/ap_tagline_box]','Emeritus','','inherit','closed','closed','','35-revision-v1','','','2015-09-30 16:11:08','2015-09-30 16:11:08','',35,'http://www.mytwincity.org/2015/09/30/35-revision-v1/',0,'revision','',0),(1667,1,'2015-09-30 16:11:42','2015-09-30 16:11:42','<h2></h2>\r\n<img class=\"alignleft wp-image-1567 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]\r\n<h3 style=\"text-align: right;\"><strong>Meet Our Founding Pastor and His Wife</strong></h3>\r\n<div style=\"text-align: right;\">\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\n<p style=\"text-align: right;\">Twin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.</p>\r\n<p style=\"text-align: right;\">In 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.</p>\r\n<p style=\"text-align: right;\">On February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.</p>\r\n<p style=\"text-align: right;\">In 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.</p>\r\n<p style=\"text-align: right;\">October 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at <a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a></p>\r\n[/ap_tagline_box]','Emeritus','','inherit','closed','closed','','35-revision-v1','','','2015-09-30 16:11:42','2015-09-30 16:11:42','',35,'http://www.mytwincity.org/2015/09/30/35-revision-v1/',0,'revision','',0),(1668,1,'2015-09-30 16:12:29','2015-09-30 16:12:29','<h2></h2>\r\n<img class=\"wp-image-1567 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />[ap_tagline_box tag_box_style=\"ap-top-border-box\"]\r\n<h3 style=\"text-align: left;\"><strong>Meet Our Founding Pastor and His Wife</strong></h3>\r\n<div style=\"text-align: left;\">\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\n<p style=\"text-align: left;\">Twin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.</p>\r\n<p style=\"text-align: left;\">In 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.</p>\r\n<p style=\"text-align: left;\">On February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.</p>\r\n<p style=\"text-align: left;\">In 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.</p>\r\n<p style=\"text-align: left;\">October 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at <a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a></p>\r\n[/ap_tagline_box]','Emeritus','','inherit','closed','closed','','35-revision-v1','','','2015-09-30 16:12:29','2015-09-30 16:12:29','',35,'http://www.mytwincity.org/2015/09/30/35-revision-v1/',0,'revision','',0),(1669,1,'2015-09-30 16:13:11','2015-09-30 16:13:11','<h2></h2>\r\n<img class=\"wp-image-1567 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>Meet Our Founding Pastor and His Wife</strong>\r\n<div style=\"text-align: left;\">\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\n<p style=\"text-align: left;\">Twin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.</p>\r\n<p style=\"text-align: left;\">In 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.</p>\r\n<p style=\"text-align: left;\">On February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.</p>\r\n<p style=\"text-align: left;\">In 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.</p>\r\n<p style=\"text-align: left;\">October 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at <a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a></p>\r\n[/ap_tagline_box]','Emeritus','','inherit','closed','closed','','35-revision-v1','','','2015-09-30 16:13:11','2015-09-30 16:13:11','',35,'http://www.mytwincity.org/2015/09/30/35-revision-v1/',0,'revision','',0),(1670,1,'2015-09-30 16:13:39','2015-09-30 16:13:39','<h2></h2>\r\n<h2><img class=\"wp-image-1567 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>Meet Our Founding Pastor and His Wife</strong></h2>\r\n<div style=\"text-align: left;\">\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\n<p style=\"text-align: left;\">Twin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.</p>\r\n<p style=\"text-align: left;\">In 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.</p>\r\n<p style=\"text-align: left;\">On February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.</p>\r\n<p style=\"text-align: left;\">In 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.</p>\r\n<p style=\"text-align: left;\">October 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at <a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a></p>\r\n[/ap_tagline_box]','Emeritus','','inherit','closed','closed','','35-revision-v1','','','2015-09-30 16:13:39','2015-09-30 16:13:39','',35,'http://www.mytwincity.org/2015/09/30/35-revision-v1/',0,'revision','',0),(1671,1,'2015-09-30 16:15:52','2015-09-30 16:15:52','<h2></h2>\r\n<img class=\"wp-image-1567 size-full alignright\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/07/FOUNDER.jpg\" alt=\"FOUNDER\" width=\"432\" height=\"379\" />[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<span style=\"font-size: 18px;\"><strong>Meet Our Founding Pastor and His Wife</strong></span>\r\n<div style=\"text-align: left;\">\r\n\r\nDr. Erven Burke is the Founding Pastor of Twin City. He planted TCB in 1974 after serving in Maine for many years as a driven youth Pastor. His wife Sue (High School sweethearts) serves by his side and supporting him in ministry. She serves as a veteran and skilled Choir Director for the Twin City Baptist Choir, which features weekly music, special solos, and seasonal special performances with the purpose to win more for Christ through music. They have faithfully served the Local Church for 40 Years.\r\n\r\n</div>\r\n<p style=\"text-align: left;\">Twin City Baptist (TCB) of Lunenburg, MA began in 1974 with four people when Pastor A. Erven Burke, his wife, Carolyn Sue and their two sons, Craig and Nathan, moved to Leominster from Bangor, Maine. Services began in the Leominster Odd Fellows Hall and continued there until the purchase of 27.5 acres in Lunenburg when a 19,000 square foot building was erected. An additional 188 acres of land was purchased in 1988.</p>\r\n<p style=\"text-align: left;\">In 1977, the church began Twin City Christian School with 85 students. The school provides an alternative for parents who want their children educated in a Christian environment, being taught by God-fearing Christian teachers. Today the school is fully accredited by the American Association of Christian Schools and enrolls approximately 200 students in preschool through grade twelve. On November 11, 1984, the church officially opened their second building, a 1,000 seat auditorium.</p>\r\n<p style=\"text-align: left;\">On February 26, 1996, the church began WCMX radio, AM 1000, \"Where Christ\'s Majesty is eXalted\" or \"Hope 1000\". Christian programming can be proclaimed within a 40 mile radius of the Leominster/Lunenburg area (including 1.3 million people). Later that same year, a daycare opened on the property to allow working parents the peace of mind of having Christian people caring for their little ones.</p>\r\n<p style=\"text-align: left;\">In 2004, a third building, the Larson Family Life Center was completed. This building houses a full gymnasium enjoyed by all for both school and church activities. The building is also home to the Twin City Christian Early Education Center (infant through Pre-school). These buildings help the church fulfill the goal of reaching more for Christ and enable the ministries of the church to thrive. Ministries in the church are designed to reach all ages and include Life group classes for all ages.</p>\r\n<p style=\"text-align: left;\">October 4th, 2015, Pastor Burke will become Pastor Emeritus at Twin City and remain busy speaking and teaching the word of God. If you would like to book Dr. Burke to speak on succession planning, leading or planting a church, Finishing well and or a Missions conference you can do so by emailing him at <a href=\"mailto:Pastor@twincitybaptist.com?subject=Speaking%20Engagment%3A%20Pastor%20Burke\">Pastor@TwinCitybaptist.com</a></p>\r\n[/ap_tagline_box]','Emeritus','','inherit','closed','closed','','35-revision-v1','','','2015-09-30 16:15:52','2015-09-30 16:15:52','',35,'http://www.mytwincity.org/2015/09/30/35-revision-v1/',0,'revision','',0),(1672,1,'2015-09-30 19:10:18','2015-09-30 19:10:18','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Stay in the Know</strong></span></h1>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#709dc4\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n ','Stay Connected','','inherit','closed','closed','','11-revision-v1','','','2015-09-30 19:10:18','2015-09-30 19:10:18','',11,'http://www.mytwincity.org/2015/09/30/11-revision-v1/',0,'revision','',0),(1673,1,'2015-09-30 19:12:48','2015-09-30 19:12:48','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Stay Connected</strong></span></h1>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#709dc4\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n ','Stay Connected','','inherit','closed','closed','','11-revision-v1','','','2015-09-30 19:12:48','2015-09-30 19:12:48','',11,'http://www.mytwincity.org/2015/09/30/11-revision-v1/',0,'revision','',0),(1674,1,'2015-09-30 19:19:06','2015-09-30 19:19:06','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Give Online Safely and Anytime</strong></span></h1>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#709dc4\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n<p style=\"text-align: center;\">[ap_button button_size=\"ap-large-bttn\" button_url=\"http://www.mytwincity.org/give/\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]<strong>Give Now</strong>[/ap_button]</p>','Can\'t Make it Sunday?','','publish','closed','closed','','online-giving-action-section','','','2015-09-30 19:36:49','2015-09-30 19:36:49','',763,'http://www.mytwincity.org/?page_id=1674',0,'page','',0),(1675,1,'2015-09-30 19:19:06','2015-09-30 19:19:06','','Online Giving Action Section','','inherit','closed','closed','','1674-revision-v1','','','2015-09-30 19:19:06','2015-09-30 19:19:06','',1674,'http://www.mytwincity.org/2015/09/30/1674-revision-v1/',0,'revision','',0),(1676,1,'2015-09-30 19:20:26','2015-09-30 19:20:26','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Stay Connected</strong></span></h1>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#709dc4\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n ','Online Giving Action Section','','inherit','closed','closed','','1674-revision-v1','','','2015-09-30 19:20:26','2015-09-30 19:20:26','',1674,'http://www.mytwincity.org/2015/09/30/1674-revision-v1/',0,'revision','',0),(1677,1,'2015-09-30 19:22:11','2015-09-30 19:22:11','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Give Online Safely</strong></span></h1>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#709dc4\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n ','Online Giving Action Section','','inherit','closed','closed','','1674-revision-v1','','','2015-09-30 19:22:11','2015-09-30 19:22:11','',1674,'http://www.mytwincity.org/2015/09/30/1674-revision-v1/',0,'revision','',0),(1678,1,'2015-09-30 19:31:24','2015-09-30 19:31:24','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Give Online Safely and Anytime</strong></span></h1>\n<h4 style=\"text-align: center;\"></h4>\n<p style=\"text-align: center;\">[ap_divider color=\"#709dc4\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\"></p>\n ','Online Giving Action Section','','inherit','closed','closed','','1674-autosave-v1','','','2015-09-30 19:31:24','2015-09-30 19:31:24','',1674,'http://www.mytwincity.org/2015/09/30/1674-autosave-v1/',0,'revision','',0),(1679,1,'2015-09-30 19:32:07','2015-09-30 19:32:07','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Give Online Safely and Anytime</strong></span></h1>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#709dc4\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">[ap_button button_size=\"ap-large-bttn\" button_url=\"http://www.mytwincity.org/give/\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]<strong>Give Now</strong>[/ap_button]</p>\r\n ','Online Giving Action Section','','inherit','closed','closed','','1674-revision-v1','','','2015-09-30 19:32:07','2015-09-30 19:32:07','',1674,'http://www.mytwincity.org/2015/09/30/1674-revision-v1/',0,'revision','',0),(1680,1,'2015-09-30 19:33:02','2015-09-30 19:33:02','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Give Online Safely and Anytime</strong></span></h1>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#709dc4\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n<p style=\"text-align: center;\">[ap_button button_size=\"ap-large-bttn\" button_url=\"http://www.mytwincity.org/give/\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]<strong>Give Now</strong>[/ap_button]</p>\r\n ','Can\'t Make it Sunday?','','inherit','closed','closed','','1674-revision-v1','','','2015-09-30 19:33:02','2015-09-30 19:33:02','',1674,'http://www.mytwincity.org/2015/09/30/1674-revision-v1/',0,'revision','',0),(1681,1,'2015-09-30 19:36:49','2015-09-30 19:36:49','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Give Online Safely and Anytime</strong></span></h1>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#709dc4\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n<p style=\"text-align: center;\">[ap_button button_size=\"ap-large-bttn\" button_url=\"http://www.mytwincity.org/give/\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]<strong>Give Now</strong>[/ap_button]</p>','Can\'t Make it Sunday?','','inherit','closed','closed','','1674-revision-v1','','','2015-09-30 19:36:49','2015-09-30 19:36:49','',1674,'http://www.mytwincity.org/2015/09/30/1674-revision-v1/',0,'revision','',0),(1682,1,'2015-09-30 20:59:18','2015-09-30 20:59:18','<div id=\"churchonline_counter\">\r\n <div class=\"live\">Live Now</div>\r\n <ul class=\"time\">\r\n <span class=\"days\"></span> <br /> <span class=\"label\">days</span> <span class=\"hours\"></span> <br />\r\n<span class=\"label\">hrs</span>\r\n <li><span class=\"minutes\"></span> <br /><span class=\"label\">mins</span></li>\r\n <li><span class=\"seconds\"></span> <br /><span class=\"label\">secs</span></li>\r\n </ul>\r\n</div>','Next Online Service Starts In:','','draft','closed','closed','','next-online-service-starts-in','','','2015-10-03 17:44:44','2015-10-03 17:44:44','',763,'http://www.mytwincity.org/?page_id=1682',0,'page','',0),(1683,1,'2015-09-30 20:59:18','2015-09-30 20:59:18','<p style=\"text-align: center;\"><div id=\"churchonline_counter\">\r\n<div class=\"live\">Live Now</div>\r\n<ul class=\"time\">\r\n<li><span class=\"days\"></span> <br /><span class=\"label\">days</span></li>\r\n<li><span class=\"hours\"></span> <br /><span class=\"label\">hrs</span></li>\r\n<li><span class=\"minutes\"></span> <br /><span class=\"label\">mins</span></li>\r\n<li><span class=\"seconds\"></span> <br /><span class=\"label\">secs</span></li>\r\n</ul>\r\n</div></p>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-09-30 20:59:18','2015-09-30 20:59:18','',1682,'http://www.mytwincity.org/2015/09/30/1682-revision-v1/',0,'revision','',0),(1684,1,'2015-09-30 21:03:21','2015-09-30 21:03:21','<p style=\"text-align: left;\"><div id=\"churchonline_counter\">\r\n<div class=\"live\">Live Now</div>\r\n<ul class=\"time\">\r\n<li><span class=\"days\"></span> <br /><span class=\"label\">days</span></li>\r\n<li><span class=\"hours\"></span> <br /><span class=\"label\">hrs</span></li>\r\n<li><span class=\"minutes\"></span> <br /><span class=\"label\">mins</span></li>\r\n<li><span class=\"seconds\"></span> <br /><span class=\"label\">secs</span></li>\r\n</ul>\r\n</div></p>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-09-30 21:03:21','2015-09-30 21:03:21','',1682,'http://www.mytwincity.org/2015/09/30/1682-revision-v1/',0,'revision','',0),(1685,1,'2015-09-30 21:04:50','2015-09-30 21:04:50','<div id=\"churchonline_counter\">\r\n<div class=\"live\">Live Now</div>\r\n<ul class=\"time\">\r\n<li><span class=\"days\"></span> <br /><span class=\"label\">days</span></li>\r\n<li><span class=\"hours\"></span> <br /><span class=\"label\">hrs</span></li>\r\n<li><span class=\"minutes\"></span> <br /><span class=\"label\">mins</span></li>\r\n<li><span class=\"seconds\"></span> <br /><span class=\"label\">secs</span></li>\r\n</ul>\r\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-09-30 21:04:50','2015-09-30 21:04:50','',1682,'http://www.mytwincity.org/2015/09/30/1682-revision-v1/',0,'revision','',0),(1686,1,'2015-09-30 21:09:44','2015-09-30 21:09:44','<div id=\"churchonline_counter\">\r\n <div class=\"live\">Live Now</div>\r\n <ul class=\"time\">\r\n <li><span class=\"days\"></span> <br /><span class=\"label\">days</span></li>\r\n <li><span class=\"hours\"></span> <br /><span class=\"label\">hrs</span></li>\r\n <li><span class=\"minutes\"></span> <br /><span class=\"label\">mins</span></li>\r\n <li><span class=\"seconds\"></span> <br /><span class=\"label\">secs</span></li>\r\n </ul>\r\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-09-30 21:09:44','2015-09-30 21:09:44','',1682,'http://www.mytwincity.org/2015/09/30/1682-revision-v1/',0,'revision','',0),(1687,1,'2015-09-30 21:16:29','2015-09-30 21:16:29','','BE HAPPY_MAIN','','inherit','open','closed','','be-happy_main','','','2015-09-30 21:16:29','2015-09-30 21:16:29','',0,'http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg',0,'attachment','image/jpeg',0),(1688,1,'2015-09-30 21:16:33','2015-09-30 21:16:33','','Trunk O\' Treat Full Blue','','inherit','open','closed','','trunk-o-treat-full-blue','','','2015-09-30 21:16:33','2015-09-30 21:16:33','',0,'http://www.mytwincity.org/wp-content/uploads/2015/09/Trunk-O-Treat-Full-Blue.jpg',0,'attachment','image/jpeg',0),(1689,1,'2015-10-01 16:17:31','2015-10-01 16:17:31','<div id=\"churchonline_counter\">\n <div class=\"live\">Live Now</div>\n <ul class=\"time\">\n <span class=\"days\"></span> <br /> <span class=\"label\">days</span> <span class=\"hours\"></span> <br />\n<span class=\"label\">hrs</span>\n <li><span class=\"minutes\"></span> <br /><span class=\"label\">mins</span></li>\n <li><span class=\"seconds\"></span> <br /><span class=\"label\">secs</span></li>\n </ul>\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-autosave-v1','','','2015-10-01 16:17:31','2015-10-01 16:17:31','',1682,'http://www.mytwincity.org/2015/10/01/1682-autosave-v1/',0,'revision','',0),(1690,1,'2015-10-01 14:18:31','2015-10-01 14:18:31','<div id=\"churchonline_counter\">\r\n<div class=\"live\" style=\"text-align: center;\">Live Now</div>\r\n<div class=\"live\" style=\"text-align: center;\"></div>\r\n<div class=\"live\" style=\"text-align: center;\"><span class=\"label\">days </span><span class=\"label\">hrs </span><span class=\"label\">mins </span><span class=\"label\">secs</span></div>\r\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-10-01 14:18:31','2015-10-01 14:18:31','',1682,'http://www.mytwincity.org/2015/10/01/1682-revision-v1/',0,'revision','',0),(1691,1,'2015-10-01 14:20:07','2015-10-01 14:20:07','<div id=\"churchonline_counter\">\r\n <div class=\"live\">Live Now</div>\r\n <ul class=\"time\">\r\n <li><span class=\"days\"></span> <br /><span class=\"label\">days</span></li>\r\n <li><span class=\"hours\"></span> <br /><span class=\"label\">hrs</span></li>\r\n <li><span class=\"minutes\"></span> <br /><span class=\"label\">mins</span></li>\r\n <li><span class=\"seconds\"></span> <br /><span class=\"label\">secs</span></li>\r\n </ul>\r\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-10-01 14:20:07','2015-10-01 14:20:07','',1682,'http://www.mytwincity.org/2015/10/01/1682-revision-v1/',0,'revision','',0),(1692,1,'2015-10-01 14:20:24','2015-10-01 14:20:24','<div id=\"churchonline_counter\">\r\n<div class=\"live\" style=\"text-align: center;\">Live Now</div>\r\n<ul class=\"time\">\r\n <li style=\"text-align: center;\">\r\n<span class=\"label\">days</span></li>\r\n <li style=\"text-align: center;\">\r\n<span class=\"label\">hrs</span></li>\r\n <li style=\"text-align: center;\">\r\n<span class=\"label\">mins</span></li>\r\n <li style=\"text-align: center;\">\r\n<span class=\"label\">secs</span></li>\r\n</ul>\r\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-10-01 14:20:24','2015-10-01 14:20:24','',1682,'http://www.mytwincity.org/2015/10/01/1682-revision-v1/',0,'revision','',0),(1693,1,'2015-10-01 14:21:14','2015-10-01 14:21:14','<div id=\"churchonline_counter\">\r\n<div class=\"live\" style=\"text-align: left;\">Live Now</div>\r\n<ul class=\"time\">\r\n <li style=\"text-align: left;\"><span class=\"label\">days</span></li>\r\n <li style=\"text-align: left;\"><span class=\"label\">hrs</span></li>\r\n <li style=\"text-align: left;\"><span class=\"label\">mins</span></li>\r\n <li style=\"text-align: left;\"><span class=\"label\">secs</span></li>\r\n</ul>\r\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-10-01 14:21:14','2015-10-01 14:21:14','',1682,'http://www.mytwincity.org/2015/10/01/1682-revision-v1/',0,'revision','',0),(1694,1,'2015-10-01 14:25:53','2015-10-01 14:25:53','','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-10-01 14:25:53','2015-10-01 14:25:53','',1682,'http://www.mytwincity.org/2015/10/01/1682-revision-v1/',0,'revision','',0),(1695,1,'2015-10-01 14:27:17','2015-10-01 14:27:17','<div id=\"churchonline_counter\">\r\n <div class=\"live\">Live Now</div>\r\n <ul class=\"time\">\r\n <li><span class=\"days\"></span> <br /><span class=\"label\">days</span></li>\r\n <li><span class=\"hours\"></span> <br /><span class=\"label\">hrs</span></li>\r\n <li><span class=\"minutes\"></span> <br /><span class=\"label\">mins</span></li>\r\n <li><span class=\"seconds\"></span> <br /><span class=\"label\">secs</span></li>\r\n </ul>\r\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-10-01 14:27:17','2015-10-01 14:27:17','',1682,'http://www.mytwincity.org/2015/10/01/1682-revision-v1/',0,'revision','',0),(1696,1,'2015-10-01 15:54:31','2015-10-01 15:54:31','<div id=\"churchonline_counter\">\r\n <div class=\"live\">Live Now</div>\r\n <ul class=\"time\">\r\n <li><span class=\"days\"></span> <span class=\"label\">days</span></li>\r\n <li><span class=\"hours\"></span> <br /><span class=\"label\">hrs</span></li>\r\n <li><span class=\"minutes\"></span> <br /><span class=\"label\">mins</span></li>\r\n <li><span class=\"seconds\"></span> <br /><span class=\"label\">secs</span></li>\r\n </ul>\r\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-10-01 15:54:31','2015-10-01 15:54:31','',1682,'http://www.mytwincity.org/2015/10/01/1682-revision-v1/',0,'revision','',0),(1697,1,'2015-10-01 15:55:24','2015-10-01 15:55:24','<div id=\"churchonline_counter\">\r\n <div class=\"live\">Live Now</div>\r\n <ul class=\"time\">\r\n <li><span class=\"days\"></span> <span class=\"label\">days</span></li>\r\n <li><span class=\"hours\"></span> <span class=\"label\">hrs</span></li>\r\n <li><span class=\"minutes\"></span> <span class=\"label\">mins</span></li>\r\n <li><span class=\"seconds\"></span> <span class=\"label\">secs</span></li>\r\n </ul>\r\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-10-01 15:55:24','2015-10-01 15:55:24','',1682,'http://www.mytwincity.org/2015/10/01/1682-revision-v1/',0,'revision','',0),(1698,1,'2015-10-01 16:15:37','2015-10-01 16:15:37','<div id=\"churchonline_counter\">\r\n <div class=\"live\">Live Now</div>\r\n <ul class=\"time\">\r\n <li><span class=\"days\"></span> <br /> <span class=\"label\">days</span></li>\r\n <li><span class=\"hours\"></span> <br /><span class=\"label\">hrs</span></li>\r\n <li><span class=\"minutes\"></span> <br /><span class=\"label\">mins</span></li>\r\n <li><span class=\"seconds\"></span> <br /><span class=\"label\">secs</span></li>\r\n </ul>\r\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-10-01 16:15:37','2015-10-01 16:15:37','',1682,'http://www.mytwincity.org/2015/10/01/1682-revision-v1/',0,'revision','',0),(1699,1,'2015-10-01 16:16:25','2015-10-01 16:16:25','<div id=\"churchonline_counter\">\r\n <div class=\"live\">Live Now</div>\r\n <ul class=\"time\">\r\n <span class=\"days\"></span> <br /> <span class=\"label\">days</span>\r\n <span class=\"hours\"></span> <br /><span class=\"label\">hrs</span>\r\n <li><span class=\"minutes\"></span> <br /><span class=\"label\">mins</span></li>\r\n <li><span class=\"seconds\"></span> <br /><span class=\"label\">secs</span></li>\r\n </ul>\r\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-10-01 16:16:25','2015-10-01 16:16:25','',1682,'http://www.mytwincity.org/2015/10/01/1682-revision-v1/',0,'revision','',0),(1700,1,'2015-10-03 17:44:44','2015-10-03 17:44:44','<div id=\"churchonline_counter\">\r\n <div class=\"live\">Live Now</div>\r\n <ul class=\"time\">\r\n <span class=\"days\"></span> <br /> <span class=\"label\">days</span> <span class=\"hours\"></span> <br />\r\n<span class=\"label\">hrs</span>\r\n <li><span class=\"minutes\"></span> <br /><span class=\"label\">mins</span></li>\r\n <li><span class=\"seconds\"></span> <br /><span class=\"label\">secs</span></li>\r\n </ul>\r\n</div>','Next Online Service Starts In:','','inherit','closed','closed','','1682-revision-v1','','','2015-10-03 17:44:44','2015-10-03 17:44:44','',1682,'http://www.mytwincity.org/2015/10/03/1682-revision-v1/',0,'revision','',0),(1701,1,'2015-10-03 18:19:20','2015-10-03 18:19:20','','Plain_Wood','','inherit','open','closed','','plain_wood','','','2015-10-03 18:19:20','2015-10-03 18:19:20','',0,'http://www.mytwincity.org/wp-content/uploads/2015/10/Plain_Wood.jpg',0,'attachment','image/jpeg',0),(1702,1,'2015-10-03 19:47:26','2015-10-03 19:47:26','','TC_LOGO_ICON_small','','inherit','open','closed','','tc_logo_icon_small','','','2015-10-03 19:47:26','2015-10-03 19:47:26','',0,'http://www.mytwincity.org/wp-content/uploads/2015/10/TC_LOGO_ICON_small.tiff',0,'attachment','image/tiff',0),(1703,1,'2015-10-03 20:35:42','2015-10-03 20:35:42','','TC_LOGO_ICON_small','','inherit','open','closed','','tc_logo_icon_small-2','','','2015-10-03 20:35:42','2015-10-03 20:35:42','',0,'http://www.mytwincity.org/wp-content/uploads/2015/10/TC_LOGO_ICON_small.png',0,'attachment','image/png',0),(1704,1,'2015-10-03 20:37:09','2015-10-03 20:37:09','','TC_LOGO_ICON_small','','inherit','open','closed','','tc_logo_icon_small-3','','','2015-10-03 20:37:09','2015-10-03 20:37:09','',0,'http://www.mytwincity.org/wp-content/uploads/2015/10/TC_LOGO_ICON_small1.png',0,'attachment','image/png',0),(1705,1,'2015-10-04 01:44:31','2015-10-04 01:44:31',' \r\n \r\n <i class=\"fa fa-thumb-tack\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Belong </h5>\r\n \r\n \r\n Saved, Baptized, Added to the Church \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/belong/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-wifi\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Connect </h5>\r\n \r\n \r\n With People near you and like you \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-coffee\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Serve </h5>\r\n \r\n \r\n Loving God by Serving People \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/serve/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-bus\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Bring </h5>\r\n \r\n \r\n Invest in and Invite others on your Journey \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/bring/\">Read More</a>\r\n \r\n \r\n \r\n \r\n ','Our Core Values','','publish','closed','closed','','core-values-home-section','','','2015-10-04 02:38:10','2015-10-04 02:38:10','',763,'http://www.mytwincity.org/?page_id=1705',0,'page','',0),(1706,1,'2015-10-04 01:44:31','2015-10-04 01:44:31',' \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Belong </h5>\r\n \r\n \r\n Saved, Baptized, and Added to the Church \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/belong/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Belong </h5>\r\n \r\n \r\n Saved, Baptized, and Added to the Church \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/belong/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Belong </h5>\r\n \r\n \r\n Saved, Baptized, and Added to the Church \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/belong/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Belong </h5>\r\n \r\n \r\n Saved, Baptized, and Added to the Church \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/belong/\">Read More</a>\r\n \r\n \r\n \r\n \r\n ','Core Values - Home section','','inherit','closed','closed','','1705-revision-v1','','','2015-10-04 01:44:31','2015-10-04 01:44:31','',1705,'http://www.mytwincity.org/2015/10/04/1705-revision-v1/',0,'revision','',0),(1707,1,'2015-10-04 02:15:47','2015-10-04 02:15:47',' \n \n <i class=\"fa fa-thumb-tack\"></i>\n \n \n \n \n <h5 class=\"ap-icon-text-title\">\n Belong </h5>\n \n \n Saved, Baptized, Added to the Church \n \n \n <a class=\"bttn\" href=\"http://www.mytwincity.org/belong/\">Read More</a>\n \n \n \n \n \n \n <i class=\"fa fa-wifi\"></i>\n \n \n \n \n <h5 class=\"ap-icon-text-title\">\n Connect </h5>\n \n \n With People near you and like you \n \n \n <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/\">Read More</a>\n \n \n \n \n \n \n <i class=\"fa fa-coffee\"></i>\n \n \n \n \n <h5 class=\"ap-icon-text-title\">\n Serve </h5>\n \n \n Loving God by Serving People \n \n \n <a class=\"bttn\" href=\"http://www.mytwincity.org/serve/\">Read More</a>\n \n \n \n \n \n \n <i class=\"fa fa-bus\"></i>\n \n \n \n \n <h5 class=\"ap-icon-text-title\">\n Bring </h5>\n \n \n Invest in and Invite others on your Journey \n \n \n <a class=\"bttn\" href=\"http://www.mytwincity.org/bring/\">Read More</a>\n \n \n \n \n ','Core Values - Home section','','inherit','closed','closed','','1705-autosave-v1','','','2015-10-04 02:15:47','2015-10-04 02:15:47','',1705,'http://www.mytwincity.org/2015/10/04/1705-autosave-v1/',0,'revision','',0),(1708,1,'2015-10-04 02:01:05','2015-10-04 02:01:05',' \r\n \r\n <i class=\"fa fa-thumb-tack\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Belong </h5>\r\n \r\n \r\n Saved, Baptized, and Added to the Church \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/belong/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-wifi\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Connect </h5>\r\n \r\n \r\n With People near you and like you \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-coffee\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Serve </h5>\r\n \r\n \r\n Loving God by Serving People \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/belong/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-bus\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Bring </h5>\r\n \r\n \r\n Invest in and Invite others on your Journey \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/bring/\">Read More</a>\r\n \r\n \r\n \r\n \r\n ','Core Values - Home section','','inherit','closed','closed','','1705-revision-v1','','','2015-10-04 02:01:05','2015-10-04 02:01:05','',1705,'http://www.mytwincity.org/2015/10/04/1705-revision-v1/',0,'revision','',0),(1709,1,'2015-10-04 02:14:38','2015-10-04 02:14:38',' \r\n \r\n <i class=\"fa fa-thumb-tack\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Belong </h5>\r\n \r\n \r\n Saved, Baptized, Added to the Church \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/belong/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-wifi\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Connect </h5>\r\n \r\n \r\n With People near you and like you \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-coffee\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Serve </h5>\r\n \r\n \r\n Loving God by Serving People \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/belong/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-bus\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Bring </h5>\r\n \r\n \r\n Invest in and Invite others on your Journey \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/bring/\">Read More</a>\r\n \r\n \r\n \r\n \r\n ','Core Values - Home section','','inherit','closed','closed','','1705-revision-v1','','','2015-10-04 02:14:38','2015-10-04 02:14:38','',1705,'http://www.mytwincity.org/2015/10/04/1705-revision-v1/',0,'revision','',0),(1710,1,'2015-10-04 02:16:44','2015-10-04 02:16:44',' \r\n \r\n <i class=\"fa fa-thumb-tack\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Belong </h5>\r\n \r\n \r\n Saved, Baptized, Added to the Church \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/belong/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-wifi\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Connect </h5>\r\n \r\n \r\n With People near you and like you \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-coffee\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Serve </h5>\r\n \r\n \r\n Loving God by Serving People \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/serve/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-bus\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Bring </h5>\r\n \r\n \r\n Invest in and Invite others on your Journey \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/bring/\">Read More</a>\r\n \r\n \r\n \r\n \r\n ','Core Values - Home section','','inherit','closed','closed','','1705-revision-v1','','','2015-10-04 02:16:44','2015-10-04 02:16:44','',1705,'http://www.mytwincity.org/2015/10/04/1705-revision-v1/',0,'revision','',0),(1711,1,'2015-10-04 02:29:00','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2015-10-04 02:29:00','0000-00-00 00:00:00','',0,'http://www.mytwincity.org/?page_id=1711',0,'page','',0),(1712,1,'2015-10-04 02:37:02','2015-10-04 02:37:02',' \r\n \r\n <i class=\"fa fa-thumb-tack\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Belong </h5>\r\n \r\n \r\n Saved, Baptized, Added to the Church \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/belong/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-wifi\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Connect </h5>\r\n \r\n \r\n With People near you and like you \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/connect/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-coffee\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Serve </h5>\r\n \r\n \r\n Loving God by Serving People \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/serve/\">Read More</a>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <i class=\"fa fa-bus\"></i>\r\n \r\n \r\n \r\n \r\n <h5 class=\"ap-icon-text-title\">\r\n Bring </h5>\r\n \r\n \r\n Invest in and Invite others on your Journey \r\n \r\n \r\n <a class=\"bttn\" href=\"http://www.mytwincity.org/bring/\">Read More</a>\r\n \r\n \r\n \r\n \r\n ','Our Core Values','','inherit','closed','closed','','1705-revision-v1','','','2015-10-04 02:37:02','2015-10-04 02:37:02','',1705,'http://www.mytwincity.org/2015/10/04/1705-revision-v1/',0,'revision','',0),(1713,1,'2015-10-04 02:52:21','2015-10-04 02:52:21','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\"><img class=\"aligncenter wp-image-1687 size-full\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\" alt=\"\" width=\"1890\" height=\"1181\" /></a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>CURRENT TEACHING SERIES: STRONGER: BUILDING YOUR LIFE IN JESUS</strong>\r\n\r\nBusyness and weariness dominate our lives today. We are doing more, working harder, and going faster than ever before, and yet many are physically and spiritually growing weaker. As a result, we lose our strength in Jesus. Let’s regain our strength in the Lord and get stronger in His Word. When we create space for Jesus He will build our lives.\r\n\r\n<em>“He giveth power to the faint; and to them that have no might he increaseth strength.</em>\r\n\r\n<em>30 Even the youths shall faint and be weary, and the young men shall utterly fall:</em>\r\n\r\n<em>31 But they that wait upon the Lord shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; and they shall walk, and not faint.” Isaiah 40:29-31</em>\r\n\r\n<em>“The way of the LORD is strength to the upright: but destruction shall be to the workers of iniquity.” Proverbs 10:29</em>\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"THESE SERIES OF MESSAGES WILL INCLUDE:\" status=\"close\"]\r\n<ul>\r\n <li>Sept 6 Stronger to Know Jesus</li>\r\n <li>Sept 13 Stronger to Obey Jesus</li>\r\n <li>Sept 20 Stronger to Serve Jesus</li>\r\n <li>Sept 27 Stronger to Worship Jesus<span style=\"line-height: 1.5;\">[/ap_toggle][/ap_tagline_box]</span></li>\r\n</ul>\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Come and discover how to get stronger and build your life in Jesus.[/su_heading]','Current Teaching Series','','inherit','closed','closed','','1443-revision-v1','','','2015-10-04 02:52:21','2015-10-04 02:52:21','',1443,'http://www.mytwincity.org/2015/10/04/1443-revision-v1/',0,'revision','',0),(1714,1,'2015-10-04 02:52:39','2015-10-04 02:52:39','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\"><img class=\"alignright wp-image-1687 size-large\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN-1024x640.jpg\" alt=\"\" width=\"640\" height=\"400\" /></a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-top-border-box\"]<strong>CURRENT TEACHING SERIES: STRONGER: BUILDING YOUR LIFE IN JESUS</strong>\r\n\r\nBusyness and weariness dominate our lives today. We are doing more, working harder, and going faster than ever before, and yet many are physically and spiritually growing weaker. As a result, we lose our strength in Jesus. Let’s regain our strength in the Lord and get stronger in His Word. When we create space for Jesus He will build our lives.\r\n\r\n<em>“He giveth power to the faint; and to them that have no might he increaseth strength.</em>\r\n\r\n<em>30 Even the youths shall faint and be weary, and the young men shall utterly fall:</em>\r\n\r\n<em>31 But they that wait upon the Lord shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; and they shall walk, and not faint.” Isaiah 40:29-31</em>\r\n\r\n<em>“The way of the LORD is strength to the upright: but destruction shall be to the workers of iniquity.” Proverbs 10:29</em>\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"THESE SERIES OF MESSAGES WILL INCLUDE:\" status=\"close\"]\r\n<ul>\r\n <li>Sept 6 Stronger to Know Jesus</li>\r\n <li>Sept 13 Stronger to Obey Jesus</li>\r\n <li>Sept 20 Stronger to Serve Jesus</li>\r\n <li>Sept 27 Stronger to Worship Jesus<span style=\"line-height: 1.5;\">[/ap_toggle][/ap_tagline_box]</span></li>\r\n</ul>\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Come and discover how to get stronger and build your life in Jesus.[/su_heading]','Current Teaching Series','','inherit','closed','closed','','1443-revision-v1','','','2015-10-04 02:52:39','2015-10-04 02:52:39','',1443,'http://www.mytwincity.org/2015/10/04/1443-revision-v1/',0,'revision','',0),(1715,1,'2015-10-04 02:53:13','2015-10-04 02:53:13','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\"><img class=\"alignright wp-image-1687 size-large\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN-1024x640.jpg\" alt=\"\" width=\"640\" height=\"400\" /></a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>CURRENT TEACHING SERIES: STRONGER: BUILDING YOUR LIFE IN JESUS</strong>\r\n\r\nBusyness and weariness dominate our lives today. We are doing more, working harder, and going faster than ever before, and yet many are physically and spiritually growing weaker. As a result, we lose our strength in Jesus. Let’s regain our strength in the Lord and get stronger in His Word. When we create space for Jesus He will build our lives.\r\n\r\n<em>“He giveth power to the faint; and to them that have no might he increaseth strength.</em>\r\n\r\n<em>30 Even the youths shall faint and be weary, and the young men shall utterly fall:</em>\r\n\r\n<em>31 But they that wait upon the Lord shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; and they shall walk, and not faint.” Isaiah 40:29-31</em>\r\n\r\n<em>“The way of the LORD is strength to the upright: but destruction shall be to the workers of iniquity.” Proverbs 10:29</em>\r\n\r\n[/ap_tagline_box]\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"][ap_toggle title=\"THESE SERIES OF MESSAGES WILL INCLUDE:\" status=\"close\"]\r\n<ul>\r\n <li>Sept 6 Stronger to Know Jesus</li>\r\n <li>Sept 13 Stronger to Obey Jesus</li>\r\n <li>Sept 20 Stronger to Serve Jesus</li>\r\n <li>Sept 27 Stronger to Worship Jesus<span style=\"line-height: 1.5;\">[/ap_toggle][/ap_tagline_box]</span></li>\r\n</ul>\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Come and discover how to get stronger and build your life in Jesus.[/su_heading]','Current Teaching Series','','inherit','closed','closed','','1443-revision-v1','','','2015-10-04 02:53:13','2015-10-04 02:53:13','',1443,'http://www.mytwincity.org/2015/10/04/1443-revision-v1/',0,'revision','',0),(1716,1,'2015-10-04 02:55:31','2015-10-04 02:55:31','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\"><img class=\"alignright wp-image-1687 size-large\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN-1024x640.jpg\" alt=\"\" width=\"640\" height=\"400\" /></a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>CURRENT TEACHING SERIES: BE HAPPY-The me God made me to be</strong>\r\n\r\nIsn’t everyone searching for true happiness? People feel like they are not the “Me” God made them to be. We all know life has difficult times, but people can forget what true happiness is. People are searching and wanting to know how they can find real happiness in a sad world. Does this sound like you? Are you unfulfilled and unhappy?\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Join us in this nine-week series as we learn how to Be Happy and discover the ME God made you to be! [/su_heading]','Current Teaching Series','','inherit','closed','closed','','1443-revision-v1','','','2015-10-04 02:55:31','2015-10-04 02:55:31','',1443,'http://www.mytwincity.org/2015/10/04/1443-revision-v1/',0,'revision','',0),(1717,1,'2015-10-04 02:56:04','2015-10-04 02:56:04','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\"><img class=\"alignright wp-image-1687 size-large\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN-1024x640.jpg\" alt=\"\" width=\"640\" height=\"400\" /></a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>CURRENT TEACHING SERIES: <br />BE HAPPY-The me God made me to be</strong>\r\n\r\nIsn’t everyone searching for true happiness? People feel like they are not the “Me” God made them to be. We all know life has difficult times, but people can forget what true happiness is. People are searching and wanting to know how they can find real happiness in a sad world. Does this sound like you? Are you unfulfilled and unhappy?\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Join us in this nine-week series as we learn how to Be Happy and discover the ME God made you to be! [/su_heading]','Current Teaching Series','','inherit','closed','closed','','1443-revision-v1','','','2015-10-04 02:56:04','2015-10-04 02:56:04','',1443,'http://www.mytwincity.org/2015/10/04/1443-revision-v1/',0,'revision','',0),(1718,1,'2015-10-04 02:56:26','2015-10-04 02:56:26','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\"><img class=\"alignright wp-image-1687 size-large\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN-1024x640.jpg\" alt=\"\" width=\"640\" height=\"400\" /></a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>CURRENT TEACHING SERIES: </br>BE HAPPY-The me God made me to be</strong>\r\n\r\nIsn’t everyone searching for true happiness? People feel like they are not the “Me” God made them to be. We all know life has difficult times, but people can forget what true happiness is. People are searching and wanting to know how they can find real happiness in a sad world. Does this sound like you? Are you unfulfilled and unhappy?\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Join us in this nine-week series as we learn how to Be Happy and discover the ME God made you to be! [/su_heading]','Current Teaching Series','','inherit','closed','closed','','1443-revision-v1','','','2015-10-04 02:56:26','2015-10-04 02:56:26','',1443,'http://www.mytwincity.org/2015/10/04/1443-revision-v1/',0,'revision','',0),(1719,1,'2015-10-04 02:56:59','2015-10-04 02:56:59','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\"><img class=\"alignright wp-image-1687 size-large\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN-1024x640.jpg\" alt=\"\" width=\"640\" height=\"400\" /></a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>CURRENT TEACHING SERIES: <br />BE HAPPY-The me God made me to be</strong>\r\n\r\nIsn’t everyone searching for true happiness? People feel like they are not the “Me” God made them to be. We all know life has difficult times, but people can forget what true happiness is. People are searching and wanting to know how they can find real happiness in a sad world. Does this sound like you? Are you unfulfilled and unhappy?\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Join us in this nine-week series as we learn how to Be Happy and discover the ME God made you to be! [/su_heading]','Current Teaching Series','','inherit','closed','closed','','1443-revision-v1','','','2015-10-04 02:56:59','2015-10-04 02:56:59','',1443,'http://www.mytwincity.org/2015/10/04/1443-revision-v1/',0,'revision','',0),(1720,1,'2015-10-04 02:57:21','2015-10-04 02:57:21','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\"><img class=\"alignright wp-image-1687 size-large\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN-1024x640.jpg\" alt=\"\" width=\"640\" height=\"400\" /></a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>CURRENT TEACHING SERIES: </br>BE HAPPY-The me God made me to be</strong>\r\n\r\nIsn’t everyone searching for true happiness? People feel like they are not the “Me” God made them to be. We all know life has difficult times, but people can forget what true happiness is. People are searching and wanting to know how they can find real happiness in a sad world. Does this sound like you? Are you unfulfilled and unhappy?\r\n\r\n[/ap_tagline_box]\r\n\r\n \r\n\r\n[su_spacer]\r\n\r\n[su_heading size=\"25\"]Join us in this nine-week series as we learn how to Be Happy and discover the ME God made you to be! [/su_heading]','Current Teaching Series','','inherit','closed','closed','','1443-revision-v1','','','2015-10-04 02:57:21','2015-10-04 02:57:21','',1443,'http://www.mytwincity.org/2015/10/04/1443-revision-v1/',0,'revision','',0),(1721,1,'2015-10-04 02:57:55','2015-10-04 02:57:55','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\"><img class=\"alignright wp-image-1687 size-large\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN-1024x640.jpg\" alt=\"\" width=\"640\" height=\"400\" /></a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>CURRENT TEACHING SERIES: BE HAPPY-The me God made me to be</strong>\r\n\r\nIsn’t everyone searching for true happiness? People feel like they are not the “Me” God made them to be. We all know life has difficult times, but people can forget what true happiness is. People are searching and wanting to know how they can find real happiness in a sad world. Does this sound like you? Are you unfulfilled and unhappy?\r\n\r\n[/ap_tagline_box][su_spacer]\r\n\r\n[su_heading size=\"25\"]Join us in this nine-week series as we learn how to Be Happy and discover the ME God made you to be! [/su_heading]','Current Teaching Series','','inherit','closed','closed','','1443-revision-v1','','','2015-10-04 02:57:55','2015-10-04 02:57:55','',1443,'http://www.mytwincity.org/2015/10/04/1443-revision-v1/',0,'revision','',0),(1722,1,'2015-10-04 03:03:09','2015-10-04 03:03:09','<a href=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN.jpg\"><img class=\"alignright wp-image-1687 size-large\" src=\"http://www.mytwincity.org/wp-content/uploads/2015/09/BE-HAPPY_MAIN-1024x640.jpg\" alt=\"\" width=\"640\" height=\"400\" /></a>\r\n\r\n[ap_tagline_box tag_box_style=\"ap-left-border-box\"]<strong>CURRENT TEACHING SERIES: </br>BE HAPPY-The me God made me to be</strong>\r\n\r\nIsn’t everyone searching for true happiness? People feel like they are not the “Me” God made them to be. We all know life has difficult times, but people can forget what true happiness is. People are searching and wanting to know how they can find real happiness in a sad world. Does this sound like you? Are you unfulfilled and unhappy?\r\n\r\n[/ap_tagline_box][su_spacer]\r\n\r\n[su_heading size=\"25\"]Join us in this nine-week series as we learn how to Be Happy and discover the ME God made you to be! [/su_heading]','Current Teaching Series','','inherit','closed','closed','','1443-revision-v1','','','2015-10-04 03:03:09','2015-10-04 03:03:09','',1443,'http://www.mytwincity.org/2015/10/04/1443-revision-v1/',0,'revision','',0),(1723,1,'2015-10-04 03:16:06','2015-10-04 03:16:06','','DeathtoStock_Medium6','','inherit','open','closed','','deathtostock_medium6-2','','','2015-10-04 03:16:06','2015-10-04 03:16:06','',0,'http://www.mytwincity.org/wp-content/uploads/2015/10/DeathtoStock_Medium6.jpg',0,'attachment','image/jpeg',0),(1724,1,'2015-10-04 03:16:45','2015-10-04 03:16:45','','desk','','inherit','open','closed','','desk','','','2015-10-04 03:16:45','2015-10-04 03:16:45','',0,'http://www.mytwincity.org/wp-content/uploads/2015/10/desk.jpeg',0,'attachment','image/jpeg',0),(1725,1,'2015-10-04 03:16:54','2015-10-04 03:16:54','','tower-820001_1920','','inherit','open','closed','','tower-820001_1920','','','2015-10-04 03:16:54','2015-10-04 03:16:54','',0,'http://www.mytwincity.org/wp-content/uploads/2015/10/tower-820001_1920.jpg',0,'attachment','image/jpeg',0),(1726,1,'2015-10-04 03:16:58','2015-10-04 03:16:58','','DeathtoStock_Medium1','','inherit','open','closed','','deathtostock_medium1','','','2015-10-04 03:16:58','2015-10-04 03:16:58','',0,'http://www.mytwincity.org/wp-content/uploads/2015/10/DeathtoStock_Medium1.jpg',0,'attachment','image/jpeg',0),(1727,1,'2015-10-04 03:17:19','2015-10-04 03:17:19','','DeathtoStock_Medium10','','inherit','open','closed','','deathtostock_medium10','','','2015-10-04 03:17:19','2015-10-04 03:17:19','',0,'http://www.mytwincity.org/wp-content/uploads/2015/10/DeathtoStock_Medium10.jpg',0,'attachment','image/jpeg',0),(1728,1,'2015-10-04 03:20:20','2015-10-04 03:20:20','','coffeebeans','','inherit','open','closed','','coffeebeans','','','2015-10-04 03:20:20','2015-10-04 03:20:20','',0,'http://www.mytwincity.org/wp-content/uploads/2015/10/coffeebeans.jpg',0,'attachment','image/jpeg',0),(1729,1,'2015-10-04 03:31:33','2015-10-04 03:31:33','<h2 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #ffffff;\"><strong>Watch Live at our Online Church</strong></span></h2>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"> </span>[ap_divider color=\"#ffffff\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</h4>\r\n<p style=\"text-align: center;\">[ap_button button_size=\"ap-large-bttn\" button_url=\"http://mytcbonline.churchonline.org/#\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]<b>GO THERE NOW</b>[/ap_button]</p>','Wanna See For Yourself?','','publish','closed','closed','','going-to-miss-a-service','','','2015-10-04 03:47:44','2015-10-04 03:47:44','',763,'http://www.mytwincity.org/?page_id=1729',0,'page','',0),(1730,1,'2015-10-04 03:29:10','2015-10-04 03:29:10','','Going to Miss a Service?','','inherit','closed','closed','','1729-revision-v1','','','2015-10-04 03:29:10','2015-10-04 03:29:10','',1729,'http://www.mytwincity.org/2015/10/04/1729-revision-v1/',0,'revision','',0),(1731,1,'2015-10-04 03:31:33','2015-10-04 03:31:33','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #709dc4;\"><strong>Watch Live at our Online Church</strong></span></h1>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#709dc4\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n<p style=\"text-align: center;\">[ap_button button_size=\"ap-large-bttn\" button_url=\"http://www.mytwincity.org/give/\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]<b>GO THERE NOW</b>[/ap_button]</p>','Going to Miss a Service?','','inherit','closed','closed','','1729-revision-v1','','','2015-10-04 03:31:33','2015-10-04 03:31:33','',1729,'http://www.mytwincity.org/2015/10/04/1729-revision-v1/',0,'revision','',0),(1732,1,'2015-10-04 03:33:57','2015-10-04 03:33:57','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #ffffff;\"><strong>Watch Live at our Online Church</strong></span></h1>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"> </span></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#ffffff\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n<p style=\"text-align: center;\">[ap_button button_size=\"ap-large-bttn\" button_url=\"http://www.mytwincity.org/give/\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]<b>GO THERE NOW</b>[/ap_button]</p>','Going to Miss a Service?','','inherit','closed','closed','','1729-revision-v1','','','2015-10-04 03:33:57','2015-10-04 03:33:57','',1729,'http://www.mytwincity.org/2015/10/04/1729-revision-v1/',0,'revision','',0),(1733,1,'2015-10-04 03:35:46','2015-10-04 03:35:46','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #ffffff;\"><strong>Watch Live at our Online Church</strong></span></h1>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"> </span></h4>\n<p style=\"text-align: center;\">[ap_divider color=\"#ffffff\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\n<p style=\"text-align: center;\">[ap_button button_size=\"ap-large-bttn\" button_url=\"http://www.mytwincity.org/give/\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]<b>GO THERE NOW</b>[/ap_button]</p>','Wanna','','inherit','closed','closed','','1729-autosave-v1','','','2015-10-04 03:35:46','2015-10-04 03:35:46','',1729,'http://www.mytwincity.org/2015/10/04/1729-autosave-v1/',0,'revision','',0),(1734,1,'2015-10-04 03:35:54','2015-10-04 03:35:54','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #ffffff;\"><strong>Watch Live at our Online Church</strong></span></h1>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"> </span></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#ffffff\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n<p style=\"text-align: center;\">[ap_button button_size=\"ap-large-bttn\" button_url=\"http://www.mytwincity.org/give/\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]<b>GO THERE NOW</b>[/ap_button]</p>','Wanna See For Yourself?','','inherit','closed','closed','','1729-revision-v1','','','2015-10-04 03:35:54','2015-10-04 03:35:54','',1729,'http://www.mytwincity.org/2015/10/04/1729-revision-v1/',0,'revision','',0),(1735,1,'2015-10-04 03:37:54','2015-10-04 03:37:54','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #ffffff;\"><strong>Watch Live at our Online Church</strong></span></h1>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"> </span></h4>\r\n<p style=\"text-align: center;\">[ap_divider color=\"#ffffff\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</p>\r\n<p style=\"text-align: center;\">[ap_button button_size=\"ap-large-bttn\" button_url=\"http://mytcbonline.churchonline.org/#\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]<b>GO THERE NOW</b>[/ap_button]</p>','Wanna See For Yourself?','','inherit','closed','closed','','1729-revision-v1','','','2015-10-04 03:37:54','2015-10-04 03:37:54','',1729,'http://www.mytwincity.org/2015/10/04/1729-revision-v1/',0,'revision','',0),(1736,1,'2015-10-04 03:47:04','2015-10-04 03:47:04','<h1 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #ffffff;\"><strong>Watch Live at our Online Church</strong></span></h1>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"> </span>[ap_divider color=\"#ffffff\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</h4>\r\n<p style=\"text-align: center;\">[ap_button button_size=\"ap-large-bttn\" button_url=\"http://mytcbonline.churchonline.org/#\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]<b>GO THERE NOW</b>[/ap_button]</p>','Wanna See For Yourself?','','inherit','closed','closed','','1729-revision-v1','','','2015-10-04 03:47:04','2015-10-04 03:47:04','',1729,'http://www.mytwincity.org/2015/10/04/1729-revision-v1/',0,'revision','',0),(1737,1,'2015-10-04 03:47:44','2015-10-04 03:47:44','<h2 style=\"text-align: center;\"><span style=\"font-size: 46px; color: #ffffff;\"><strong>Watch Live at our Online Church</strong></span></h2>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"> </span>[ap_divider color=\"#ffffff\" style=\"solid\" thickness=\"3px\" width=\"50%\" mar_top=\"0px\" mar_bot=\"20px\"]</h4>\r\n<p style=\"text-align: center;\">[ap_button button_size=\"ap-large-bttn\" button_url=\"http://mytcbonline.churchonline.org/#\" button_type=\"ap-bg-bttn\" button_color=\"ap-default-bttn\" button_align=\"ap-align-none\"]<b>GO THERE NOW</b>[/ap_button]</p>','Wanna See For Yourself?','','inherit','closed','closed','','1729-revision-v1','','','2015-10-04 03:47:44','2015-10-04 03:47:44','',1729,'http://www.mytwincity.org/2015/10/04/1729-revision-v1/',0,'revision','',0),(1738,1,'2015-10-04 04:00:17','2015-10-04 04:00:17','','What to Expect on our Campus','','publish','closed','closed','','what-to-expect-on-our-campus','','','2015-10-04 04:00:17','2015-10-04 04:00:17','',763,'http://www.mytwincity.org/?page_id=1738',0,'page','',0),(1739,1,'2015-10-04 04:00:17','2015-10-04 04:00:17','','What to Expect on our Campus','','inherit','closed','closed','','1738-revision-v1','','','2015-10-04 04:00:17','2015-10-04 04:00:17','',1738,'http://www.mytwincity.org/2015/10/04/1738-revision-v1/',0,'revision','',0),(1740,1,'2015-10-04 04:01:05','2015-10-04 04:01:05','','Uplifting Music','','publish','open','open','','uplifting-music','','','2015-10-04 04:17:04','2015-10-04 04:17:04','',0,'http://www.mytwincity.org/?p=1740',0,'post','',0),(1741,1,'2015-10-04 04:01:05','2015-10-04 04:01:05','','Uplifting Music','','inherit','closed','closed','','1740-revision-v1','','','2015-10-04 04:01:05','2015-10-04 04:01:05','',1740,'http://www.mytwincity.org/2015/10/04/1740-revision-v1/',0,'revision','',0),(1742,1,'2015-10-04 04:01:32','2015-10-04 04:01:32','','Practical Messages','','publish','open','open','','practical-messages','','','2015-10-04 04:01:32','2015-10-04 04:01:32','',0,'http://www.mytwincity.org/?p=1742',0,'post','',0),(1743,1,'2015-10-04 04:01:32','2015-10-04 04:01:32','','Practical Messages','','inherit','closed','closed','','1742-revision-v1','','','2015-10-04 04:01:32','2015-10-04 04:01:32','',1742,'http://www.mytwincity.org/2015/10/04/1742-revision-v1/',0,'revision','',0),(1744,1,'2015-10-04 04:01:58','2015-10-04 04:01:58','','Clean + Caring Nursery','','publish','open','open','','clean-caring-nursery','','','2015-10-04 04:01:58','2015-10-04 04:01:58','',0,'http://www.mytwincity.org/?p=1744',0,'post','',0),(1745,1,'2015-10-04 04:01:58','2015-10-04 04:01:58','','Clean + Caring Nursery','','inherit','closed','closed','','1744-revision-v1','','','2015-10-04 04:01:58','2015-10-04 04:01:58','',1744,'http://www.mytwincity.org/2015/10/04/1744-revision-v1/',0,'revision','',0),(1746,1,'2015-10-04 04:02:17','2015-10-04 04:02:17','','Programs for Kids and Teens','','publish','open','open','','programs-for-kids-and-teens','','','2015-10-04 04:02:17','2015-10-04 04:02:17','',0,'http://www.mytwincity.org/?p=1746',0,'post','',0),(1747,1,'2015-10-04 04:02:17','2015-10-04 04:02:17','','Programs for Kids and Teens','','inherit','closed','closed','','1746-revision-v1','','','2015-10-04 04:02:17','2015-10-04 04:02:17','',1746,'http://www.mytwincity.org/2015/10/04/1746-revision-v1/',0,'revision','',0),(1748,1,'2015-10-04 04:02:39','2015-10-04 04:02:39','','Great Coffee','','publish','open','open','','great-coffee','','','2015-10-04 04:02:39','2015-10-04 04:02:39','',0,'http://www.mytwincity.org/?p=1748',0,'post','',0),(1749,1,'2015-10-04 04:02:39','2015-10-04 04:02:39','','Great Coffee','','inherit','closed','closed','','1748-revision-v1','','','2015-10-04 04:02:39','2015-10-04 04:02:39','',1748,'http://www.mytwincity.org/2015/10/04/1748-revision-v1/',0,'revision','',0),(1750,1,'2015-10-04 04:03:09','2015-10-04 04:03:09','','Classes to Advance your Spiritual Growth','','publish','open','open','','classes-to-advance-your-spiritual-growth','','','2015-10-04 04:03:09','2015-10-04 04:03:09','',0,'http://www.mytwincity.org/?p=1750',0,'post','',0),(1751,1,'2015-10-04 04:03:09','2015-10-04 04:03:09','','Classes to Advance your Spiritual Growth','','inherit','closed','closed','','1750-revision-v1','','','2015-10-04 04:03:09','2015-10-04 04:03:09','',1750,'http://www.mytwincity.org/2015/10/04/1750-revision-v1/',0,'revision','',0),(1752,1,'2015-10-04 04:16:49','2015-10-04 04:16:49','','001','','inherit','open','closed','','001','','','2015-10-04 04:16:49','2015-10-04 04:16:49','',1740,'http://www.mytwincity.org/wp-content/uploads/2015/10/001.png',0,'attachment','image/png',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_qb_bars` -- DROP TABLE IF EXISTS `wp_qb_bars`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_qb_bars` ( `id` int(9) NOT NULL AUTO_INCREMENT, `created_date` datetime NOT NULL, `status` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'paused', `color_bar_background` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `color_button_background` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `color_bar_text` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `color_button_text` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `bar_height` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'regular', `bar_text` varchar(4095) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `button_text` varchar(1019) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `destination` varchar(1019) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `new_tab` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'enabled', `placement` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'top', `devices` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all', `alignment` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'leftright', `sticky` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'enabled', `animation` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'slidein', `button_style` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'rounded', `close_button_visibility` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'onhover', `bar_uuid` varchar(13) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `bar_uuid` (`bar_uuid`), UNIQUE KEY `bar_uuid_2` (`bar_uuid`), UNIQUE KEY `bar_uuid_3` (`bar_uuid`), UNIQUE KEY `bar_uuid_4` (`bar_uuid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_qb_bars` -- LOCK TABLES `wp_qb_bars` WRITE; /*!40000 ALTER TABLE `wp_qb_bars` DISABLE KEYS */; INSERT INTO `wp_qb_bars` VALUES (1,'2015-07-23 21:11:53','live','#709dc4','#28557A','#FFFFFF','#FFFFFF','skinny','Like%20us%20on%20Facebook','Like%20%7B%7Bfacebook%7D%7D','https://www.facebook.com/TwinCityBaptist','enabled','bottom','all','centered','enabled','slidein','rounded','onhover','55b1589956fd9'); /*!40000 ALTER TABLE `wp_qb_bars` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_qb_conversions` -- DROP TABLE IF EXISTS `wp_qb_conversions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_qb_conversions` ( `id` int(9) NOT NULL AUTO_INCREMENT, `created_date` datetime NOT NULL, `user_uuid` varchar(13) COLLATE utf8mb4_unicode_ci NOT NULL, `bar_uuid` varchar(13) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `user_uuid` (`user_uuid`,`bar_uuid`), KEY `user_uuid_2` (`user_uuid`,`bar_uuid`), KEY `user_uuid_3` (`user_uuid`,`bar_uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_qb_conversions` -- LOCK TABLES `wp_qb_conversions` WRITE; /*!40000 ALTER TABLE `wp_qb_conversions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_qb_conversions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_qb_views` -- DROP TABLE IF EXISTS `wp_qb_views`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_qb_views` ( `id` int(9) NOT NULL AUTO_INCREMENT, `created_date` datetime NOT NULL, `user_uuid` varchar(13) COLLATE utf8mb4_unicode_ci NOT NULL, `bar_uuid` varchar(13) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `user_uuid` (`user_uuid`,`bar_uuid`), KEY `user_uuid_2` (`user_uuid`,`bar_uuid`), KEY `user_uuid_3` (`user_uuid`,`bar_uuid`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_qb_views` -- LOCK TABLES `wp_qb_views` WRITE; /*!40000 ALTER TABLE `wp_qb_views` DISABLE KEYS */; INSERT INTO `wp_qb_views` VALUES (1,'2015-07-23 21:12:05','f9c00170e1706','55b1589956fd9'),(2,'2015-08-04 12:41:49','8997a88a4dbb8','55b1589956fd9'),(3,'2015-09-02 15:51:14','73b8f6dfcc041','55b1589956fd9'),(4,'2015-09-21 15:59:52','52b491335222d','55b1589956fd9'),(5,'2015-09-25 12:05:15','eb0772e76442e','55b1589956fd9'); /*!40000 ALTER TABLE `wp_qb_views` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_css` -- DROP TABLE IF EXISTS `wp_revslider_css`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_css` ( `id` int(9) NOT NULL AUTO_INCREMENT, `handle` text COLLATE utf8mb4_unicode_ci NOT NULL, `settings` text COLLATE utf8mb4_unicode_ci, `hover` text COLLATE utf8mb4_unicode_ci, `params` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_css` -- LOCK TABLES `wp_revslider_css` WRITE; /*!40000 ALTER TABLE `wp_revslider_css` DISABLE KEYS */; INSERT INTO `wp_revslider_css` VALUES (1,'.tp-caption.medium_grey',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}'),(2,'.tp-caption.small_text',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(3,'.tp-caption.medium_text',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(4,'.tp-caption.large_text',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(5,'.tp-caption.very_large_text',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),(6,'.tp-caption.very_big_white',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(9,'.tp-caption.modern_medium_fat_white',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(10,'.tp-caption.modern_medium_light',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(11,'.tp-caption.modern_big_bluebg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}'),(12,'.tp-caption.modern_big_redbg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),(13,'.tp-caption.modern_small_text_dark',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(14,'.tp-caption.boxshadow',NULL,NULL,'{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}'),(15,'.tp-caption.black',NULL,NULL,'{\"color\":\"#000\",\"text-shadow\":\"none\"}'),(16,'.tp-caption.noshadow',NULL,NULL,'{\"text-shadow\":\"none\"}'),(17,'.tp-caption.thinheadline_dark',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt',NULL,NULL,'{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey',NULL,NULL,'{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey',NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey',NULL,NULL,'{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider',NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue',NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue',NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red',NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red',NULL,NULL,'{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red',NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange',NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange',NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor',NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white',NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white',NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white',NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center',NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos',NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black',NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black',NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue',NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white',NULL,NULL,'{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage',NULL,NULL,'{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black',NULL,NULL,'{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg',NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),(48,'.tp-caption.heading_clean_small',NULL,NULL,'{\"font-size\":\"16px\",\"font-weight\":\"600\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(163, 163, 163)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(49,'.tp-caption.heading_clean_big',NULL,NULL,'{\"font-size\":\"72px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(51, 51, 51)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(50,'.tp-caption.heading_clean_white',NULL,NULL,'{\"font-size\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(51,'.tp-caption.handwriting_clean',NULL,NULL,'{\"font-size\":\"16px\",\"line-height\":\"18px\",\"font-weight\":\"500\",\"font-family\":\"\\\"Dancing Script\\\"\",\"color\":\"rgb(51, 51, 51)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(52,'.tp-caption.heading_black',NULL,NULL,'{\"font-size\":\"100px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 52, 52)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(52, 52, 52)\",\"border-style\":\"none\"}'),(53,'.tp-caption.heading5',NULL,NULL,'{\"font-size\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"padding\":\"15px 25px\",\"background-color\":\"rgba(0, 0, 0, 0)\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(54,'.tp-caption.heading6_black',NULL,NULL,'{\"font-size\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 52, 52)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(52, 52, 52)\",\"border-style\":\"none\"}'),(55,'.tp-caption.heading_big_white',NULL,NULL,'{\"font-size\":\"80px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(56,'.tp-caption.verylargetext','{\"hover\":\"false\"}','\"\"','{\"font-size\":\"79px\",\"line-height\":\"60px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"text-shadow\":\"rgba(0, 0, 0, 0.498039) 0px 2px 5px\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(57,'.tp-caption.verylargetextxl','{\"hover\":\"false\"}','\"\"','{\"font-size\":\"102px\",\"line-height\":\"69px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"text-shadow\":\"rgba(0, 0, 0, 0.498039) 0px 2px 5px\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(58,'.tp-caption.heading5arial','{\"hover\":\"false\"}','\"\"','{\"font-size\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"padding\":\"15px 25px\",\"background-color\":\"rgba(0, 0, 0, 0)\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(59,'.tp-caption.mediumlightwhitearial','{\"hover\":\"false\"}','\"\"','{\"font-size\":\"44px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"padding\":\"0px\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'); /*!40000 ALTER TABLE `wp_revslider_css` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_layer_animations` -- DROP TABLE IF EXISTS `wp_revslider_layer_animations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_layer_animations` ( `id` int(9) NOT NULL AUTO_INCREMENT, `handle` text COLLATE utf8mb4_unicode_ci NOT NULL, `params` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_layer_animations` -- LOCK TABLES `wp_revslider_layer_animations` WRITE; /*!40000 ALTER TABLE `wp_revslider_layer_animations` DISABLE KEYS */; INSERT INTO `wp_revslider_layer_animations` VALUES (1,'PopUp','{\"movex\":\"0\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"0\",\"scaley\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"captionperspective\":\"600\",\"originx\":\"50\",\"originy\":\"50\"}'); /*!40000 ALTER TABLE `wp_revslider_layer_animations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_settings` -- DROP TABLE IF EXISTS `wp_revslider_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_settings` ( `id` int(9) NOT NULL AUTO_INCREMENT, `general` text COLLATE utf8mb4_unicode_ci NOT NULL, `params` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_settings` -- LOCK TABLES `wp_revslider_settings` WRITE; /*!40000 ALTER TABLE `wp_revslider_settings` DISABLE KEYS */; INSERT INTO `wp_revslider_settings` VALUES (1,'a:6:{s:4:\"role\";s:5:\"admin\";s:17:\"includes_globally\";s:2:\"on\";s:18:\"pages_for_includes\";s:0:\"\";s:12:\"js_to_footer\";s:3:\"off\";s:15:\"show_dev_export\";s:3:\"off\";s:11:\"enable_logs\";s:3:\"off\";}',''); /*!40000 ALTER TABLE `wp_revslider_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_sliders` -- DROP TABLE IF EXISTS `wp_revslider_sliders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_sliders` ( `id` int(9) NOT NULL AUTO_INCREMENT, `title` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `alias` tinytext COLLATE utf8mb4_unicode_ci, `params` text COLLATE utf8mb4_unicode_ci NOT NULL, 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_revslider_sliders` -- LOCK TABLES `wp_revslider_sliders` WRITE; /*!40000 ALTER TABLE `wp_revslider_sliders` DISABLE KEYS */; INSERT INTO `wp_revslider_sliders` VALUES (2,'Home Slider','homeslider','{\"title\":\"Home Slider\",\"alias\":\"homeslider\",\"shortcode\":\"[rev_slider homeslider]\",\"source_type\":\"gallery\",\"post_types\":\"post\",\"post_category\":\"category_5\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"slider_template_id\":\"\",\"posts_list\":\"\",\"slider_type\":\"fullscreen\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"full_screen_align_force\":\"off\",\"auto_height\":\"on\",\"force_full_width\":\"off\",\"min_height\":\"0\",\"width\":\"960\",\"height\":\"500\",\"responsitive_w1\":\"940\",\"responsitive_sw1\":\"770\",\"responsitive_w2\":\"780\",\"responsitive_sw2\":\"500\",\"responsitive_w3\":\"510\",\"responsitive_sw3\":\"310\",\"responsitive_w4\":\"0\",\"responsitive_sw4\":\"0\",\"responsitive_w5\":\"0\",\"responsitive_sw5\":\"0\",\"responsitive_w6\":\"0\",\"responsitive_sw6\":\"0\",\"delay\":\"9000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"use_wpml\":\"off\",\"enable_static_layers\":\"on\",\"next_slide_on_window_focus\":\"off\",\"start_js_after_delay\":0,\"stop_slider\":\"off\",\"stop_after_loops\":0,\"stop_at_slide\":2,\"show_timerbar\":\"hide\",\"loop_slide\":\"noloop\",\"position\":\"center\",\"margin_top\":0,\"margin_bottom\":0,\"margin_left\":0,\"margin_right\":0,\"shadow_type\":\"0\",\"padding\":0,\"background_color\":\"#E9E9E9\",\"background_dotted_overlay\":\"none\",\"show_background_image\":\"false\",\"background_image\":\"\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"stop_on_hover\":\"off\",\"keyboard_navigation\":\"on\",\"navigation_style\":\"round\",\"navigaion_type\":\"none\",\"navigation_arrows\":\"solo\",\"navigaion_always_on\":\"true\",\"hide_thumbs\":200,\"navigaion_align_hor\":\"center\",\"navigaion_align_vert\":\"bottom\",\"navigaion_offset_hor\":\"0\",\"navigaion_offset_vert\":20,\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":20,\"leftarrow_offset_vert\":0,\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":20,\"rightarrow_offset_vert\":0,\"thumb_width\":100,\"thumb_height\":50,\"thumb_amount\":5,\"use_spinner\":\"3\",\"spinner_color\":\"#FFFFFF\",\"use_parallax\":\"on\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_bg_freeze\":\"off\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"touchenabled\":\"on\",\"swipe_velocity\":75,\"swipe_min_touches\":1,\"drag_block_vertical\":\"false\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":0,\"hide_defined_layers_under\":0,\"hide_all_layers_under\":0,\"hide_arrows_on_mobile\":\"on\",\"hide_bullets_on_mobile\":\"on\",\"hide_thumbs_on_mobile\":\"on\",\"hide_thumbs_under_resolution\":0,\"hide_thumbs_delay_mobile\":1500,\"start_with_slide\":\"1\",\"first_transition_active\":\"false\",\"first_transition_type\":\"fade\",\"first_transition_duration\":300,\"first_transition_slot_amount\":7,\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"reset_transitions\":\"\",\"reset_transition_duration\":0,\"0\":\"Execute settings on all slides\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"true\",\"output_type\":\"none\",\"custom_css\":\"\",\"custom_javascript\":\"\",\"template\":\"false\"}'); /*!40000 ALTER TABLE `wp_revslider_sliders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_slides` -- DROP TABLE IF EXISTS `wp_revslider_slides`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_slides` ( `id` int(9) NOT NULL AUTO_INCREMENT, `slider_id` int(9) NOT NULL, `slide_order` int(11) NOT NULL, `params` text COLLATE utf8mb4_unicode_ci NOT NULL, `layers` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_slides` -- LOCK TABLES `wp_revslider_slides` WRITE; /*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */; INSERT INTO `wp_revslider_slides` VALUES (4,2,3,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/localhost\\/tcbsite\\/wp-content\\/uploads\\/2015\\/09\\/BE-HAPPY_MAIN.jpg\",\"image_id\":\"1687\",\"title\":\"Current Series\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade,fadefromright,fadefromleft,fadefromtop,fadefrombottom,fadetoleftfadefromright,fadetorightfadefromleft,fadetotopfadefrombottom,fadetobottomfadefromtop\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"true\",\"link_type\":\"regular\",\"link\":\"http:\\/\\/localhost\\/tcbsite\\/bring\\/current-teaching-series\\/\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/localhost\\/tcbsite\\/wp-content\\/uploads\\/2015\\/09\\/BE-HAPPY_MAIN.jpg\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}','[]'),(5,2,6,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/localhost\\/tcbsite\\/wp-content\\/uploads\\/2015\\/07\\/CU-wide_wide.jpg\",\"image_id\":\"1291\",\"title\":\"C-University\",\"state\":\"unpublished\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade,fadefromright,fadefromleft,fadefromtop,fadefrombottom,fadetoleftfadefromright,fadetorightfadefromleft,fadetotopfadefrombottom,fadetobottomfadefromtop\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"true\",\"link_type\":\"regular\",\"link\":\"http:\\/\\/localhost\\/tcbsite\\/connect\\/c-university\\/\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/localhost\\/tcbsite\\/wp-content\\/uploads\\/2015\\/07\\/CU-wide_wide.jpg\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"120\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}','[]'),(6,2,4,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/localhost\\/tcbsite\\/wp-content\\/uploads\\/2015\\/07\\/TCCS-WEB-SLIDER_wide.jpg\",\"image_id\":\"1297\",\"title\":\"School\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade,fadefromright,fadefromleft,fadefromtop,fadefrombottom,fadetoleftfadefromright,fadetorightfadefromleft,fadetotopfadefrombottom,fadetobottomfadefromtop\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"true\",\"link_type\":\"regular\",\"link\":\"http:\\/\\/www.twincitychristian.com\",\"link_open_in\":\"new\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/localhost\\/tcbsite\\/wp-content\\/uploads\\/2015\\/07\\/TCCS-WEB-SLIDER_wide.jpg\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}','[]'),(7,2,5,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/localhost\\/tcbsite\\/wp-content\\/uploads\\/2015\\/09\\/WCMX-WEB_wide.jpg\",\"image_id\":\"1525\",\"title\":\"WCMX Radio\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade,boxfade,fadefromright,fadefromleft,fadefromtop,fadefrombottom,fadetoleftfadefromright,fadetorightfadefromleft,fadetotopfadefrombottom,fadetobottomfadefromtop\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/localhost\\/tcbsite\\/wp-content\\/uploads\\/2015\\/09\\/WCMX-WEB_wide.jpg\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}','[]'),(8,2,1,'{\"background_type\":\"image\",\"title\":\"Welcome\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"random\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":4000,\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"1701\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"http:\\/\\/localhost\\/tcbsite\\/wp-content\\/uploads\\/2015\\/10\\/Plain_Wood.jpg\",\"0\":\"Remove\"}','[{\"text\":\"TWIN CITY BAPTIST\",\"type\":\"text\",\"left\":0,\"top\":-50,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfb\",\"easing\":\"Power2.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":800,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"verylargetextxl\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"0\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"},{\"text\":\"FOR PEOPLE LIKE YOU\",\"type\":\"text\",\"left\":0,\"top\":50,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sft\",\"easing\":\"Power0.easeIn\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":600,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"mediumlightwhitearial\",\"time\":1700,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"1\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"}]'),(9,2,2,'{\"background_type\":\"image\",\"title\":\"Vision\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"random\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"1701\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"http:\\/\\/localhost\\/tcbsite\\/wp-content\\/uploads\\/2015\\/10\\/Plain_Wood.jpg\",\"0\":\"Remove\"}','[{\"text\":\"DISCOVER CHRIST\",\"type\":\"text\",\"left\":0,\"top\":-275,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfl\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":800,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"verylargetextxl\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"0\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"},{\"text\":\"UNCOVER TRUTH\",\"type\":\"text\",\"left\":0,\"top\":-50,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfl\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":800,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"verylargetextxl\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"1\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"},{\"text\":\"RECOVER LIFE\",\"type\":\"text\",\"left\":0,\"top\":175,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfl\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":800,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"verylargetextxl\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"2\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"},{\"text\":\"I AM THE WAY\",\"type\":\"text\",\"left\":0,\"top\":-200,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sft\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":1000,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"mediumlightwhitearial\",\"time\":1500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"3\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"},{\"text\":\"I AM THE TRUTH\",\"type\":\"text\",\"left\":0,\"top\":25,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sft\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":1000,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"mediumlightwhitearial\",\"time\":1500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"4\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"},{\"text\":\"I AM THE LIFE\",\"type\":\"text\",\"left\":0,\"top\":250,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sft\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":1000,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"mediumlightwhitearial\",\"time\":1500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":-1,\"height\":-1,\"serial\":\"5\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"}]'); /*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_static_slides` -- DROP TABLE IF EXISTS `wp_revslider_static_slides`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_static_slides` ( `id` int(9) NOT NULL AUTO_INCREMENT, `slider_id` int(9) NOT NULL, `params` text COLLATE utf8mb4_unicode_ci NOT NULL, `layers` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_static_slides` -- LOCK TABLES `wp_revslider_static_slides` WRITE; /*!40000 ALTER TABLE `wp_revslider_static_slides` DISABLE KEYS */; INSERT INTO `wp_revslider_static_slides` VALUES (1,2,'{\"background_type\":\"trans\"}','[{\"style\":\"\",\"text\":\"Church Logo\",\"type\":\"image\",\"image_url\":\"http:\\/\\/localhost\\/tcbsite\\/wp-content\\/uploads\\/2015\\/10\\/TC_LOGO_ICON_small1.png\",\"special_type\":\"static\",\"left\":-190,\"top\":-100,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"6\",\"speed\":300,\"align_hor\":\"right\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":74,\"height\":74,\"serial\":\"2\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"\",\"max_width\":\"\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"75\",\"scaleY\":\"75\",\"scaleProportional\":true,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"}]'); /*!40000 ALTER TABLE `wp_revslider_static_slides` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_signups` -- DROP TABLE IF EXISTS `wp_signups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_signups` ( `signup_id` bigint(20) NOT NULL AUTO_INCREMENT, `domain` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `path` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `active` tinyint(1) NOT NULL DEFAULT '0', `activation_key` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `meta` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`signup_id`), KEY `activation_key` (`activation_key`), KEY `user_email` (`user_email`), KEY `user_login_email` (`user_login`,`user_email`), KEY `domain_path` (`domain`(140),`path`(51)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_signups` -- LOCK TABLES `wp_signups` WRITE; /*!40000 ALTER TABLE `wp_signups` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_signups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 (97,2,0),(98,2,0),(99,2,0),(101,2,0),(103,2,0),(104,2,0),(105,2,0),(106,2,0),(108,2,0),(111,2,0),(112,2,0),(114,2,0),(115,2,0),(118,2,0),(119,2,0),(121,2,0),(122,2,0),(124,2,0),(135,2,0),(162,2,0),(574,25,0),(574,27,0),(574,30,0),(575,24,0),(575,26,0),(575,28,0),(575,31,0),(625,24,0),(625,26,0),(625,27,0),(625,29,0),(625,30,0),(625,31,0),(626,24,0),(626,26,0),(626,28,0),(626,30,0),(626,32,0),(709,24,0),(709,25,0),(709,26,0),(709,27,0),(709,28,0),(709,29,0),(709,30,0),(710,24,0),(710,26,0),(710,28,0),(710,30,0),(1210,33,0),(1220,26,0),(1221,24,0),(1221,26,0),(1221,28,0),(1221,30,0),(1221,32,0),(1240,34,0),(1290,5,0),(1293,5,0),(1296,5,0),(1303,2,0),(1317,2,0),(1322,2,0),(1323,2,0),(1374,35,0),(1394,2,0),(1395,2,0),(1410,36,0),(1445,2,0),(1511,38,0),(1520,2,0),(1524,5,0),(1533,2,0),(1534,2,0),(1560,2,0),(1620,2,0),(1636,40,0),(1637,40,0),(1638,40,0),(1639,40,0),(1640,40,0),(1641,41,0),(1642,41,0),(1646,41,0),(1650,42,0),(1651,42,0),(1652,42,0),(1653,42,0),(1654,42,0),(1655,42,0),(1656,43,0),(1657,43,0),(1659,43,0),(1660,43,0),(1740,4,0),(1742,4,0),(1744,4,0),(1746,4,0),(1748,4,0),(1750,4,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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,32),(3,3,'category','',0,0),(4,4,'category','',0,6),(5,5,'category','',0,4),(6,6,'category','',0,0),(7,7,'category','',0,0),(8,8,'post_tag','',0,0),(9,9,'post_tag','',0,0),(10,10,'post_tag','',0,0),(11,11,'post_tag','',0,0),(12,12,'post_tag','',0,0),(13,13,'post_tag','',0,0),(14,14,'post_tag','',0,0),(15,15,'post_tag','',0,0),(16,16,'post_tag','',0,0),(17,17,'post_tag','',0,0),(18,18,'post_tag','',0,0),(19,19,'post_tag','',0,0),(20,20,'post_tag','',0,0),(21,21,'post_tag','',0,0),(22,22,'post_tag','',0,0),(23,23,'post_tag','',0,0),(24,24,'portfolio-category','',0,6),(25,25,'portfolio-category','',0,2),(26,26,'portfolio-category','',0,7),(27,27,'portfolio-category','',0,3),(28,28,'portfolio-category','',0,5),(29,29,'portfolio-category','',0,2),(30,30,'portfolio-category','',0,6),(31,31,'portfolio-category','',0,2),(32,32,'portfolio-category','',0,2),(33,33,'nav_menu','',0,1),(34,34,'nav_menu','',0,1),(35,35,'nav_menu','',0,1),(36,36,'tribe_events_cat','Events that occur on campus',0,1),(37,37,'tribe_events_cat','Events that occur off-campus',0,0),(38,38,'ecwd_event_category','',0,1),(39,39,'ecwd_event_category','',0,0),(40,40,'nav_menu','',0,5),(41,41,'nav_menu','',0,3),(42,42,'nav_menu','',0,6),(43,43,'nav_menu','',0,4); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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,'Home Menu','home-menu',0),(3,'Blog','blog',0),(4,'Service','service',0),(5,'Slider','slider',0),(6,'Team','team',0),(7,'Testimonial','testimonial',0),(8,'Blogs','blogs',0),(9,'Company','company',0),(10,'Design','design',0),(11,'Image','image',0),(12,'Links','links',0),(13,'Motivation','motivation',0),(14,'news','news',0),(15,'Playlists','playlists',0),(16,'Playstation','playstation',0),(17,'Public','public',0),(18,'Relation','relation',0),(19,'Responsive','responsive',0),(20,'Services','services',0),(21,'Slider','slider-2',0),(22,'Theme Option panel','theme-option-panel',0),(23,'Website','website',0),(24,'Apartments','apartments',0),(25,'Buildings','buildings',0),(26,'Bungalow','bungalow',0),(27,'Colonies','colonies',0),(28,'Farmhouse','farmhouse',0),(29,'Log House','log-house',0),(30,'Modern Homes','modern-homes',0),(31,'SkyScrapers','skyscrapers',0),(32,'Villa','villa',0),(33,'Main Menu','main-menu',0),(34,'Top Menu','top-menu',0),(35,'Top Header Menu','top-header-menu',0),(36,'On-Campus Events','on-campus-events',0),(37,'Off-Campus Events','off-campus-events',0),(38,'On Campus Events','on-campus-events',0),(39,'Off Campus Events','off-campus-events',0),(40,'Footer Menu 1','footer-menu-1',0),(41,'Footer Menu 2','footer-menu-2',0),(42,'Footer Menu 3','footer-menu-3',0),(43,'Footer Menu 4','footer-menu-4',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 (1,1,'nickname','Matt Eaton'),(2,1,'first_name','Matt'),(3,1,'last_name','Eaton'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp360_locks,wp390_widgets,wp410_dfw,black_studio_tinymce_widget'),(13,1,'show_welcome_panel','1'),(15,1,'wp_user-settings','libraryContent=browse&hidetb=1&wplink=1&post_dfw=off&siteorigin_panels_setting_tab=content&advImgDetails=show&imgsize=full&urlbutton=none&align=center&editor=tinymce'),(16,1,'wp_user-settings-time','1443929401'),(17,1,'wp_dashboard_quick_press_last_post_id','1609'),(18,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(19,1,'metaboxhidden_nav-menus','a:4:{i:0;s:8:\"add-post\";i:1;s:13:\"add-portfolio\";i:2;s:12:\"add-post_tag\";i:3;s:22:\"add-portfolio-category\";}'),(20,1,'nav_menu_recently_edited','2'),(21,1,'last_activity','2015-08-04 16:12:55'),(22,1,'bp_xprofile_visibility_levels','a:1:{i:1;s:6:\"public\";}'),(23,1,'bp_latest_update','a:2:{s:2:\"id\";i:4;s:7:\"content\";s:108:\"I\'m so excited about this new feature of logging in as a member so I can keep up with other church members! \";}'),(27,1,'session_tokens','a:4:{s:64:\"50366fefac77c8c0d0aa3b3828e8875c3a65461ccb487738a57e799675bf5fe4\";a:4:{s:10:\"expiration\";i:1444147646;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36\";s:5:\"login\";i:1443974846;}s:64:\"94a5c41ab823cefa654b1b6287c0905f06d51302b8699d3d2e020d8981ad5d38\";a:4:{s:10:\"expiration\";i:1444225753;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36\";s:5:\"login\";i:1444052953;}s:64:\"605dc8d5ab798c0921ba48b2e4c26b49098eae4d889c57d068d83c2e7bfffaac\";a:4:{s:10:\"expiration\";i:1444225770;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36\";s:5:\"login\";i:1444052970;}s:64:\"d0c372c9c2d5553f9fd289b0c833bf5b0fe6bdbf15b8178365b1f21a7bbe4931\";a:4:{s:10:\"expiration\";i:1444243634;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36\";s:5:\"login\";i:1444070834;}}'),(28,2,'nickname','aeaton21'),(29,2,'first_name','Alyssa'),(30,2,'last_name','Eaton'),(31,2,'description',''),(32,2,'rich_editing','true'),(33,2,'comment_shortcuts','false'),(34,2,'admin_color','fresh'),(35,2,'use_ssl','0'),(36,2,'show_admin_bar_front','true'),(37,2,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(38,2,'wp_user_level','0'),(39,2,'dismissed_wp_pointers','wp360_locks,wp390_widgets'),(40,1,'tribe_setDefaultNavMenuBoxes','1'),(41,1,'closedpostboxes_page','a:0:{}'),(42,1,'metaboxhidden_page','a:7:{i:0;s:16:\"so-panels-panels\";i:1;s:12:\"revisionsdiv\";i:2;s:10:\"postcustom\";i:3;s:16:\"commentstatusdiv\";i:4;s:11:\"commentsdiv\";i:5;s:7:\"slugdiv\";i:6;s:9:\"authordiv\";}'),(43,1,'cjtgp-dismiss-803-notice','1'),(44,1,'meta-box-order_cjtoolbox','a:1:{s:6:\"normal\";s:12:\"cjtoolbox-15\";}'),(45,1,'closedpostboxes_cjtoolbox','a:0:{}'),(46,1,'metaboxhidden_cjtoolbox','a:0:{}'),(47,3,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(48,3,'wp_user_level','10'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_pass` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 (1,'mr.eaton14','$P$BcLduTznm5M0p3lMXwHv/h99Q7skxb.','mr-eaton14','mr.eaton14@gmail.com','','2015-07-20 18:03:46','',0,'Matt Eaton'),(2,'aeaton21','$P$B3Y/Gr35MGiu5NrLXQWuHuV77Xc8tu1','aeaton21','mrs.eaton21@gmail.com','','2015-08-04 16:15:05','',0,'Alyssa Eaton'),(3,'jonathanm3skz','f9428a2100898ae3b933d729dfa0e9c8','jonathanm3skz','jonathanm3skz@jonathanm3skz.com','','2013-06-07 00:00:00','',0,'jonathanm3skz'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza` -- DROP TABLE IF EXISTS `wp_wpgmza`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map_id` int(11) NOT NULL, `address` varchar(700) NOT NULL, `description` mediumtext NOT NULL, `pic` varchar(700) NOT NULL, `link` varchar(700) NOT NULL, `icon` varchar(700) NOT NULL, `lat` varchar(100) NOT NULL, `lng` varchar(100) NOT NULL, `anim` varchar(3) NOT NULL, `title` varchar(700) NOT NULL, `infoopen` varchar(3) NOT NULL, `category` varchar(500) NOT NULL, `approved` tinyint(1) DEFAULT '1', `retina` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza` -- LOCK TABLES `wp_wpgmza` WRITE; /*!40000 ALTER TABLE `wp_wpgmza` DISABLE KEYS */; INSERT INTO `wp_wpgmza` VALUES (1,1,'California','','','','','36.778261','-119.4179323999','','','','0',1,0),(2,1,'194 Electric Ave, Lunenburg, MA, United States','','','','','42.5855941','-71.75338039999997','0','','0','',1,0); /*!40000 ALTER TABLE `wp_wpgmza` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_categories` -- DROP TABLE IF EXISTS `wp_wpgmza_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `active` tinyint(1) NOT NULL, `category_name` varchar(50) NOT NULL, `category_icon` varchar(700) NOT NULL, `retina` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_categories` -- LOCK TABLES `wp_wpgmza_categories` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpgmza_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_category_maps` -- DROP TABLE IF EXISTS `wp_wpgmza_category_maps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_category_maps` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cat_id` int(11) NOT NULL, `map_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_category_maps` -- LOCK TABLES `wp_wpgmza_category_maps` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_category_maps` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpgmza_category_maps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_maps` -- DROP TABLE IF EXISTS `wp_wpgmza_maps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_maps` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map_title` varchar(50) NOT NULL, `map_width` varchar(6) NOT NULL, `map_height` varchar(6) NOT NULL, `map_start_lat` varchar(700) NOT NULL, `map_start_lng` varchar(700) NOT NULL, `map_start_location` varchar(700) NOT NULL, `map_start_zoom` int(10) NOT NULL, `default_marker` varchar(700) NOT NULL, `type` int(10) NOT NULL, `alignment` int(10) NOT NULL, `directions_enabled` int(10) NOT NULL, `styling_enabled` int(10) NOT NULL, `styling_json` mediumtext NOT NULL, `active` int(1) NOT NULL, `kml` varchar(700) NOT NULL, `bicycle` int(10) NOT NULL, `traffic` int(10) NOT NULL, `dbox` int(10) NOT NULL, `dbox_width` varchar(10) NOT NULL, `listmarkers` int(10) NOT NULL, `listmarkers_advanced` int(10) NOT NULL, `filterbycat` tinyint(1) NOT NULL, `ugm_enabled` int(10) NOT NULL, `ugm_category_enabled` tinyint(1) NOT NULL, `fusion` varchar(100) NOT NULL, `map_width_type` varchar(3) NOT NULL, `map_height_type` varchar(3) NOT NULL, `mass_marker_support` int(10) NOT NULL, `ugm_access` int(10) NOT NULL, `order_markers_by` int(10) NOT NULL, `order_markers_choice` int(10) NOT NULL, `show_user_location` int(3) NOT NULL, `default_to` varchar(700) NOT NULL, `other_settings` longtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_maps` -- LOCK TABLES `wp_wpgmza_maps` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_maps` DISABLE KEYS */; INSERT INTO `wp_wpgmza_maps` VALUES (1,'My first map','100','400','45.950464398418106','-109.81550500000003','45.950464398418106,-109.81550500000003',2,'0',1,0,1,0,'',0,'',2,2,1,'250',0,0,0,0,0,'','%','px',1,0,1,2,0,'',''); /*!40000 ALTER TABLE `wp_wpgmza_maps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_polygon` -- DROP TABLE IF EXISTS `wp_wpgmza_polygon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_polygon` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map_id` int(11) NOT NULL, `polydata` longtext NOT NULL, `linecolor` varchar(7) NOT NULL, `lineopacity` varchar(7) NOT NULL, `fillcolor` varchar(7) NOT NULL, `opacity` varchar(3) NOT NULL, `title` varchar(250) NOT NULL, `link` varchar(700) NOT NULL, `ohfillcolor` varchar(7) NOT NULL, `ohlinecolor` varchar(7) NOT NULL, `ohopacity` varchar(3) NOT NULL, `polyname` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_polygon` -- LOCK TABLES `wp_wpgmza_polygon` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_polygon` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpgmza_polygon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_polylines` -- DROP TABLE IF EXISTS `wp_wpgmza_polylines`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_polylines` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map_id` int(11) NOT NULL, `polydata` longtext NOT NULL, `linecolor` varchar(7) NOT NULL, `linethickness` varchar(3) NOT NULL, `opacity` varchar(3) NOT NULL, `polyname` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_polylines` -- LOCK TABLES `wp_wpgmza_polylines` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_polylines` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpgmza_polylines` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database 'tcbwpdb' -- /*!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 2023-02-23 6:04:47
© 2017 -
ZeroByte.ID
.